diff --git a/SmartFritz/.classpath b/SmartFritz/.classpath new file mode 100644 index 0000000000000000000000000000000000000000..eb010981fa3d34caeb627e89ffa3c6a14e6d29d6 --- /dev/null +++ b/SmartFritz/.classpath @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/SmartFritz/.gitkeep b/SmartFritz/.gitkeep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/SmartFritz/.project b/SmartFritz/.project new file mode 100644 index 0000000000000000000000000000000000000000..572dda5e0640aefcb7743a47f0916b2f0308af0b --- /dev/null +++ b/SmartFritz/.project @@ -0,0 +1,32 @@ + + SmartFritz + + + + + + org.eclipse.andmore.ResourceManagerBuilder + + + + + org.eclipse.andmore.PreCompilerBuilder + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.andmore.ApkBuilder + + + + + + org.eclipse.andmore.AndroidNature + org.eclipse.jdt.core.javanature + + diff --git a/SmartFritz/.settings/org.eclipse.jdt.core.prefs b/SmartFritz/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000000000000000000000000000000000000..64cef5023a43ffd6ee10523675ff317bc1157151 --- /dev/null +++ b/SmartFritz/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,4 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 +org.eclipse.jdt.core.compiler.compliance=1.7 +org.eclipse.jdt.core.compiler.source=1.7 diff --git a/SmartFritz/AndroidManifest.xml b/SmartFritz/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..f5a6a0b2b825e0857af25926d3c57595d334fd4c --- /dev/null +++ b/SmartFritz/AndroidManifest.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SmartFritz/How_To_Get_Your_Signed_Release_Apk.txt b/SmartFritz/How_To_Get_Your_Signed_Release_Apk.txt new file mode 100644 index 0000000000000000000000000000000000000000..95ee6fd49c73fd97ae8bc02a17b7c54806d97a7e --- /dev/null +++ b/SmartFritz/How_To_Get_Your_Signed_Release_Apk.txt @@ -0,0 +1,47 @@ +Tutorial: How to get your signed release Apk + warning: you need a google developer account! + +1)Edit/change the project file "keytool_input.txt" to representative information:" + +.Your google account keystore password: 123456 +.Re-enter/confirm the keystore password: 123456 + +.Your first and last name: MyFirstName MyLastName + +.Your Organizational unit: MyDevelopmentUnit + +.Your Organization name: MyCompany + +.Your City or Locality: MyCity + +.Your State or Province: MT + +.The two-letter country code: BR + +.All correct: y + +.Your key password for this Apk alias-key: 123456 + + +2)If you are using "Ant" then edit/change "ant.properties" according, too! + + +3) Execute the [project] command "release-keystore.bat" or "release-keystore.sh" or "release-keystore-macos.sh" to get the "smartfritz-release.keystore" + warning: the file "smartfritz-release.keystore" should be created only once [per application] otherwise it will fail! + + +4 [Gradle]: execute the [project] command "gradle-local-apksigner.bat" [or .sh] to get the [release] signed Apk! (thanks to TR3E!) + or execute "gradle-local-universal-apksigner.bat" if your are supporting multi-architecture (ex.: armeabi-v7a + arm64-v8a + ...) + hint: look for your generated apk in [project] folder "...\build\outputs\apk\release" + + +4 [Ant]: execute the [project] command "ant-build-release.bat" [.sh] to get the [release] signed Apk!" + hint: look for your generated apk in [project] folder "...\bin" + + +Success! You can now upload your nice "SmartFritz-release.apk" to "Google Play" store! + +.... Thanks to All! +.... Special thanks to TR3E! + +.... by jmpessoa_hotmail_com diff --git a/SmartFritz/adb-install-debug.bat b/SmartFritz/adb-install-debug.bat new file mode 100644 index 0000000000000000000000000000000000000000..24dd40ed6ce48d6ad0427a26196539213fddac4b --- /dev/null +++ b/SmartFritz/adb-install-debug.bat @@ -0,0 +1,4 @@ +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/bin +/home/te/Android/Sdk/platform-tools/adb install -r SmartFritz-debug.apk +cd .. +pause diff --git a/SmartFritz/adb-install-debug.sh b/SmartFritz/adb-install-debug.sh new file mode 100755 index 0000000000000000000000000000000000000000..8822893ca3bf5a849a2a091817c4a9baf9d5ee33 --- /dev/null +++ b/SmartFritz/adb-install-debug.sh @@ -0,0 +1,2 @@ +/home/te/Android/Sdk/platform-tools/adb uninstall org.muctec.smartfritz +/home/te/Android/Sdk/platform-tools/adb install -r /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/bin/SmartFritz-debug.apk diff --git a/SmartFritz/adb-install.bat b/SmartFritz/adb-install.bat new file mode 100644 index 0000000000000000000000000000000000000000..24dd40ed6ce48d6ad0427a26196539213fddac4b --- /dev/null +++ b/SmartFritz/adb-install.bat @@ -0,0 +1,4 @@ +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/bin +/home/te/Android/Sdk/platform-tools/adb install -r SmartFritz-debug.apk +cd .. +pause diff --git a/SmartFritz/adb-install.sh b/SmartFritz/adb-install.sh new file mode 100755 index 0000000000000000000000000000000000000000..8822893ca3bf5a849a2a091817c4a9baf9d5ee33 --- /dev/null +++ b/SmartFritz/adb-install.sh @@ -0,0 +1,2 @@ +/home/te/Android/Sdk/platform-tools/adb uninstall org.muctec.smartfritz +/home/te/Android/Sdk/platform-tools/adb install -r /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/bin/SmartFritz-debug.apk diff --git a/SmartFritz/adb-uninstall.bat b/SmartFritz/adb-uninstall.bat new file mode 100644 index 0000000000000000000000000000000000000000..7eb32bb4f27a4a950bc9e3beb1112449c0e490ab --- /dev/null +++ b/SmartFritz/adb-uninstall.bat @@ -0,0 +1,2 @@ +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/bin +/home/te/Android/Sdk/platform-tools/adb uninstall org.muctec.smartfritz diff --git a/SmartFritz/adb-uninstall.sh b/SmartFritz/adb-uninstall.sh new file mode 100755 index 0000000000000000000000000000000000000000..fab27153cd288f6515319d5388cd607a7c0452a6 --- /dev/null +++ b/SmartFritz/adb-uninstall.sh @@ -0,0 +1 @@ +/home/te/Android/Sdk/platform-tools/adb uninstall org.muctec.smartfritz diff --git a/SmartFritz/ant-build-debug-macos.sh b/SmartFritz/ant-build-debug-macos.sh new file mode 100755 index 0000000000000000000000000000000000000000..02503d84a442a512a7cb05fd184a2a8c94304b60 --- /dev/null +++ b/SmartFritz/ant-build-debug-macos.sh @@ -0,0 +1,5 @@ +export PATH=/home/te/fpcupdeluxe/ccr/lamw-ant/apache-ant-1.10.8/bin:$PATH +export JAVA_HOME=${/usr/libexec/java_home} +export PATH=${JAVA_HOME}/bin:$PATH +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/ +ant -Dtouchtest.enabled=true debug diff --git a/SmartFritz/ant-build-debug.bat b/SmartFritz/ant-build-debug.bat new file mode 100644 index 0000000000000000000000000000000000000000..731c6641c99db13e4de0b16dd21b7b940cb8b5f6 --- /dev/null +++ b/SmartFritz/ant-build-debug.bat @@ -0,0 +1,5 @@ +set Path=%PATH%;/home/te/fpcupdeluxe/ccr/lamw-ant/apache-ant-1.10.8/bin +set JAVA_HOME=/home/te/android-studio/jre +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/ +call ant clean -Dtouchtest.enabled=true debug +if errorlevel 1 pause diff --git a/SmartFritz/ant-build-debug.sh b/SmartFritz/ant-build-debug.sh new file mode 100755 index 0000000000000000000000000000000000000000..39787e1fd9b169f5b4fef344b9a8523b97770888 --- /dev/null +++ b/SmartFritz/ant-build-debug.sh @@ -0,0 +1,4 @@ +export PATH=/home/te/fpcupdeluxe/ccr/lamw-ant/apache-ant-1.10.8/bin:$PATH +export JAVA_HOME=/home/te/android-studio/jre +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/ +ant -Dtouchtest.enabled=true debug diff --git a/SmartFritz/ant-build-release-macos.sh b/SmartFritz/ant-build-release-macos.sh new file mode 100755 index 0000000000000000000000000000000000000000..d66c602aa5ab7d7534d710286bf02aff1005b07d --- /dev/null +++ b/SmartFritz/ant-build-release-macos.sh @@ -0,0 +1,5 @@ +export PATH=/usr/bin:$PATH +export JAVA_HOME=${/usr/libexec/java_home} +export PATH=${JAVA_HOME}/bin:$PATH +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz +ant clean release diff --git a/SmartFritz/ant-build-release.bat b/SmartFritz/ant-build-release.bat new file mode 100644 index 0000000000000000000000000000000000000000..f5ce59bf01575f49c0d76960e70d99c67c3fde45 --- /dev/null +++ b/SmartFritz/ant-build-release.bat @@ -0,0 +1,5 @@ +set Path=%PATH%;/home/te/fpcupdeluxe/ccr/lamw-ant/apache-ant-1.10.8/bin +set JAVA_HOME=/home/te/android-studio/jre +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/ +call ant clean release +if errorlevel 1 pause diff --git a/SmartFritz/ant-build-release.sh b/SmartFritz/ant-build-release.sh new file mode 100755 index 0000000000000000000000000000000000000000..2a30a44406fbe8015ca20cf3f567ee98b994bb8f --- /dev/null +++ b/SmartFritz/ant-build-release.sh @@ -0,0 +1,4 @@ +export PATH=/home/te/fpcupdeluxe/ccr/lamw-ant/apache-ant-1.10.8/bin:$PATH +export JAVA_HOME=/home/te/android-studio/jre +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/ +ant clean release diff --git a/SmartFritz/ant.properties b/SmartFritz/ant.properties new file mode 100644 index 0000000000000000000000000000000000000000..d93b65e3c791085a7426055377996b5184fcc495 --- /dev/null +++ b/SmartFritz/ant.properties @@ -0,0 +1,4 @@ +key.store=smartfritz-release.keystore +key.alias=smartfritz.keyalias +key.store.password=123456 +key.alias.password=123456 diff --git a/SmartFritz/build.gradle b/SmartFritz/build.gradle new file mode 100644 index 0000000000000000000000000000000000000000..fe00ec84e231458300a059572d50855eb4966604 --- /dev/null +++ b/SmartFritz/build.gradle @@ -0,0 +1,74 @@ +buildscript { + repositories { + jcenter() + //android plugin version >= 3.0.0 [in classpath] need gradle version >= 4.1 and google() method + google() + } + dependencies { + classpath 'com.android.tools.build:gradle:3.4.1' + } +} +allprojects { + repositories { + google() + jcenter() + maven { url 'https://jitpack.io' } + } +} +apply plugin: 'com.android.application' +android { + lintOptions { + abortOnError false + } + splits { + abi { + enable true + reset() + include 'armeabi-v7a' + universalApk false + } + } + compileSdkVersion 28 + defaultConfig { + minSdkVersion 14 + targetSdkVersion 28 + versionCode 1 + versionName "1.0" + } + sourceSets { + main { + manifest.srcFile 'AndroidManifest.xml' + java.srcDirs = ['src'] + resources.srcDirs = ['src'] + aidl.srcDirs = ['src'] + renderscript.srcDirs = ['src'] + res.srcDirs = ['res'] + assets.srcDirs = ['assets'] + jni.srcDirs = [] + jniLibs.srcDirs = ['libs'] + } + debug.setRoot('build-types/debug') + release.setRoot('build-types/release') + } +} +dependencies { + implementation fileTree(include: ['*.jar'], dir: 'libs') + implementation 'com.android.support:support-v4:28.+' + implementation 'com.android.support:appcompat-v7:28.+' + implementation 'com.android.support:design:28.+' + implementation 'com.android.support:cardview-v7:28.+' + implementation 'com.android.support:recyclerview-v7:28.+' +} + +task run(type: Exec, dependsOn: ':installDebug') { + if (System.properties['os.name'].toLowerCase().contains('windows')) { + commandLine 'cmd', '/c', 'adb', 'shell', 'am', 'start', '-n', "org.muctec.smartfritz/.App" + } else { + commandLine 'adb', 'shell', 'am', 'start', '-n', "org.muctec.smartfritz/.App" + } +} + +wrapper { + gradleVersion = '6.2.1' +} +//how to use: look for "gradle_readme.txt" diff --git a/SmartFritz/build.xml b/SmartFritz/build.xml new file mode 100644 index 0000000000000000000000000000000000000000..5205ebd03f12ab146ae25f72dfe900d8c96adf23 --- /dev/null +++ b/SmartFritz/build.xml @@ -0,0 +1,256 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/core/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/core/R.java new file mode 100644 index 0000000000000000000000000000000000000000..872d786c26c1973f7d498187a8824c300cad676e --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/core/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.arch.core; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/lifecycle/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/lifecycle/R.java new file mode 100644 index 0000000000000000000000000000000000000000..b0c852ec52ffeffd6fe0a4f0ff54e9c8fc9358cb --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/lifecycle/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.arch.lifecycle; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/lifecycle/livedata/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/lifecycle/livedata/R.java new file mode 100644 index 0000000000000000000000000000000000000000..12c2646438a85bde47818785183e07283e120b2e --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/lifecycle/livedata/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.arch.lifecycle.livedata; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/lifecycle/livedata/core/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/lifecycle/livedata/core/R.java new file mode 100644 index 0000000000000000000000000000000000000000..2c19ff7cd726c490a5a6bfd98ed161ba50756f6a --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/lifecycle/livedata/core/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.arch.lifecycle.livedata.core; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/lifecycle/viewmodel/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/lifecycle/viewmodel/R.java new file mode 100644 index 0000000000000000000000000000000000000000..a66555ad8686738901db3139ee85ccf21f5b3e23 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/arch/lifecycle/viewmodel/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.arch.lifecycle.viewmodel; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/asynclayoutinflater/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/asynclayoutinflater/R.java new file mode 100644 index 0000000000000000000000000000000000000000..3fd6653f6dc9d62a3aae38cf67c9b5cebc9046a1 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/asynclayoutinflater/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.asynclayoutinflater; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/compat/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/compat/R.java new file mode 100644 index 0000000000000000000000000000000000000000..ed6b9764d6b5e54ff8d29425d4b32523ddb0aedc --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/compat/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.compat; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coordinatorlayout/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coordinatorlayout/R.java new file mode 100644 index 0000000000000000000000000000000000000000..3a183b8d9650a288d00d1e4ac870ed9c8e6e6cf7 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coordinatorlayout/R.java @@ -0,0 +1,211 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.coordinatorlayout; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int keylines = 0x7f030106; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int statusBarBackground = 0x7f03016d; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int chronometer = 0x7f080029; + public static final int end = 0x7f08003c; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int start = 0x7f080098; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int top = 0x7f0800ae; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coreui/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coreui/R.java new file mode 100644 index 0000000000000000000000000000000000000000..f371f89a1e12ca66ce011d7e5fe4c6fe206d75ff --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coreui/R.java @@ -0,0 +1,211 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.coreui; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int keylines = 0x7f030106; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int statusBarBackground = 0x7f03016d; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int chronometer = 0x7f080029; + public static final int end = 0x7f08003c; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int start = 0x7f080098; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int top = 0x7f0800ae; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coreutils/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coreutils/R.java new file mode 100644 index 0000000000000000000000000000000000000000..e71f5abc749dd9ef4878b9f4678ec8b0b2d62fc8 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coreutils/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.coreutils; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/cursoradapter/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/cursoradapter/R.java new file mode 100644 index 0000000000000000000000000000000000000000..eeba21161dfadbde9cb6f4287d3a530428dd4e33 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/cursoradapter/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.cursoradapter; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/customview/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/customview/R.java new file mode 100644 index 0000000000000000000000000000000000000000..ed5959c29fead46cefb05bb31ef0e8a30db05645 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/customview/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.customview; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/design/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/design/R.java new file mode 100644 index 0000000000000000000000000000000000000000..08907b9935b2f6557c7c1f32bbe41a0a94faba05 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/design/R.java @@ -0,0 +1,2513 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.design; + +public final class R { + private R() {} + + public static final class anim { + private anim() {} + + public static final int abc_fade_in = 0x7f010000; + public static final int abc_fade_out = 0x7f010001; + public static final int abc_grow_fade_in_from_bottom = 0x7f010002; + public static final int abc_popup_enter = 0x7f010003; + public static final int abc_popup_exit = 0x7f010004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; + public static final int abc_slide_in_bottom = 0x7f010006; + public static final int abc_slide_in_top = 0x7f010007; + public static final int abc_slide_out_bottom = 0x7f010008; + public static final int abc_slide_out_top = 0x7f010009; + public static final int abc_tooltip_enter = 0x7f01000a; + public static final int abc_tooltip_exit = 0x7f01000b; + public static final int design_bottom_sheet_slide_in = 0x7f01000c; + public static final int design_bottom_sheet_slide_out = 0x7f01000d; + public static final int design_snackbar_in = 0x7f01000e; + public static final int design_snackbar_out = 0x7f01000f; + } + public static final class animator { + private animator() {} + + public static final int design_appbar_state_list_animator = 0x7f020000; + public static final int design_fab_hide_motion_spec = 0x7f020001; + public static final int design_fab_show_motion_spec = 0x7f020002; + public static final int mtrl_btn_state_list_anim = 0x7f020003; + public static final int mtrl_btn_unelevated_state_list_anim = 0x7f020004; + public static final int mtrl_chip_state_list_anim = 0x7f020005; + public static final int mtrl_fab_hide_motion_spec = 0x7f020006; + public static final int mtrl_fab_show_motion_spec = 0x7f020007; + public static final int mtrl_fab_transformation_sheet_collapse_spec = 0x7f020008; + public static final int mtrl_fab_transformation_sheet_expand_spec = 0x7f020009; + } + public static final class attr { + private attr() {} + + public static final int actionBarDivider = 0x7f030000; + public static final int actionBarItemBackground = 0x7f030001; + public static final int actionBarPopupTheme = 0x7f030002; + public static final int actionBarSize = 0x7f030003; + public static final int actionBarSplitStyle = 0x7f030004; + public static final int actionBarStyle = 0x7f030005; + public static final int actionBarTabBarStyle = 0x7f030006; + public static final int actionBarTabStyle = 0x7f030007; + public static final int actionBarTabTextStyle = 0x7f030008; + public static final int actionBarTheme = 0x7f030009; + public static final int actionBarWidgetTheme = 0x7f03000a; + public static final int actionButtonStyle = 0x7f03000b; + public static final int actionDropDownStyle = 0x7f03000c; + public static final int actionLayout = 0x7f03000d; + public static final int actionMenuTextAppearance = 0x7f03000e; + public static final int actionMenuTextColor = 0x7f03000f; + public static final int actionModeBackground = 0x7f030010; + public static final int actionModeCloseButtonStyle = 0x7f030011; + public static final int actionModeCloseDrawable = 0x7f030012; + public static final int actionModeCopyDrawable = 0x7f030013; + public static final int actionModeCutDrawable = 0x7f030014; + public static final int actionModeFindDrawable = 0x7f030015; + public static final int actionModePasteDrawable = 0x7f030016; + public static final int actionModePopupWindowStyle = 0x7f030017; + public static final int actionModeSelectAllDrawable = 0x7f030018; + public static final int actionModeShareDrawable = 0x7f030019; + public static final int actionModeSplitBackground = 0x7f03001a; + public static final int actionModeStyle = 0x7f03001b; + public static final int actionModeWebSearchDrawable = 0x7f03001c; + public static final int actionOverflowButtonStyle = 0x7f03001d; + public static final int actionOverflowMenuStyle = 0x7f03001e; + public static final int actionProviderClass = 0x7f03001f; + public static final int actionViewClass = 0x7f030020; + public static final int activityChooserViewStyle = 0x7f030021; + public static final int alertDialogButtonGroupStyle = 0x7f030022; + public static final int alertDialogCenterButtons = 0x7f030023; + public static final int alertDialogStyle = 0x7f030024; + public static final int alertDialogTheme = 0x7f030025; + public static final int allowStacking = 0x7f030026; + public static final int alpha = 0x7f030027; + public static final int alphabeticModifiers = 0x7f030028; + public static final int arrowHeadLength = 0x7f030029; + public static final int arrowShaftLength = 0x7f03002a; + public static final int autoCompleteTextViewStyle = 0x7f03002b; + public static final int autoSizeMaxTextSize = 0x7f03002c; + public static final int autoSizeMinTextSize = 0x7f03002d; + public static final int autoSizePresetSizes = 0x7f03002e; + public static final int autoSizeStepGranularity = 0x7f03002f; + public static final int autoSizeTextType = 0x7f030030; + public static final int background = 0x7f030031; + public static final int backgroundSplit = 0x7f030032; + public static final int backgroundStacked = 0x7f030033; + public static final int backgroundTint = 0x7f030034; + public static final int backgroundTintMode = 0x7f030035; + public static final int barLength = 0x7f030036; + public static final int behavior_autoHide = 0x7f030037; + public static final int behavior_fitToContents = 0x7f030038; + public static final int behavior_hideable = 0x7f030039; + public static final int behavior_overlapTop = 0x7f03003a; + public static final int behavior_peekHeight = 0x7f03003b; + public static final int behavior_skipCollapsed = 0x7f03003c; + public static final int borderWidth = 0x7f03003d; + public static final int borderlessButtonStyle = 0x7f03003e; + public static final int bottomAppBarStyle = 0x7f03003f; + public static final int bottomNavigationStyle = 0x7f030040; + public static final int bottomSheetDialogTheme = 0x7f030041; + public static final int bottomSheetStyle = 0x7f030042; + public static final int boxBackgroundColor = 0x7f030043; + public static final int boxBackgroundMode = 0x7f030044; + public static final int boxCollapsedPaddingTop = 0x7f030045; + public static final int boxCornerRadiusBottomEnd = 0x7f030046; + public static final int boxCornerRadiusBottomStart = 0x7f030047; + public static final int boxCornerRadiusTopEnd = 0x7f030048; + public static final int boxCornerRadiusTopStart = 0x7f030049; + public static final int boxStrokeColor = 0x7f03004a; + public static final int boxStrokeWidth = 0x7f03004b; + public static final int buttonBarButtonStyle = 0x7f03004c; + public static final int buttonBarNegativeButtonStyle = 0x7f03004d; + public static final int buttonBarNeutralButtonStyle = 0x7f03004e; + public static final int buttonBarPositiveButtonStyle = 0x7f03004f; + public static final int buttonBarStyle = 0x7f030050; + public static final int buttonGravity = 0x7f030051; + public static final int buttonIconDimen = 0x7f030052; + public static final int buttonPanelSideLayout = 0x7f030053; + public static final int buttonStyle = 0x7f030054; + public static final int buttonStyleSmall = 0x7f030055; + public static final int buttonTint = 0x7f030056; + public static final int buttonTintMode = 0x7f030057; + public static final int cardBackgroundColor = 0x7f030058; + public static final int cardCornerRadius = 0x7f030059; + public static final int cardElevation = 0x7f03005a; + public static final int cardMaxElevation = 0x7f03005b; + public static final int cardPreventCornerOverlap = 0x7f03005c; + public static final int cardUseCompatPadding = 0x7f03005d; + public static final int cardViewStyle = 0x7f03005e; + public static final int checkboxStyle = 0x7f03005f; + public static final int checkedChip = 0x7f030060; + public static final int checkedIcon = 0x7f030061; + public static final int checkedIconEnabled = 0x7f030062; + public static final int checkedIconVisible = 0x7f030063; + public static final int checkedTextViewStyle = 0x7f030064; + public static final int chipBackgroundColor = 0x7f030065; + public static final int chipCornerRadius = 0x7f030066; + public static final int chipEndPadding = 0x7f030067; + public static final int chipGroupStyle = 0x7f030068; + public static final int chipIcon = 0x7f030069; + public static final int chipIconEnabled = 0x7f03006a; + public static final int chipIconSize = 0x7f03006b; + public static final int chipIconTint = 0x7f03006c; + public static final int chipIconVisible = 0x7f03006d; + public static final int chipMinHeight = 0x7f03006e; + public static final int chipSpacing = 0x7f03006f; + public static final int chipSpacingHorizontal = 0x7f030070; + public static final int chipSpacingVertical = 0x7f030071; + public static final int chipStandaloneStyle = 0x7f030072; + public static final int chipStartPadding = 0x7f030073; + public static final int chipStrokeColor = 0x7f030074; + public static final int chipStrokeWidth = 0x7f030075; + public static final int chipStyle = 0x7f030076; + public static final int closeIcon = 0x7f030077; + public static final int closeIconEnabled = 0x7f030078; + public static final int closeIconEndPadding = 0x7f030079; + public static final int closeIconSize = 0x7f03007a; + public static final int closeIconStartPadding = 0x7f03007b; + public static final int closeIconTint = 0x7f03007c; + public static final int closeIconVisible = 0x7f03007d; + public static final int closeItemLayout = 0x7f03007e; + public static final int collapseContentDescription = 0x7f03007f; + public static final int collapseIcon = 0x7f030080; + public static final int collapsedTitleGravity = 0x7f030081; + public static final int collapsedTitleTextAppearance = 0x7f030082; + public static final int color = 0x7f030083; + public static final int colorAccent = 0x7f030084; + public static final int colorBackgroundFloating = 0x7f030085; + public static final int colorButtonNormal = 0x7f030086; + public static final int colorControlActivated = 0x7f030087; + public static final int colorControlHighlight = 0x7f030088; + public static final int colorControlNormal = 0x7f030089; + public static final int colorError = 0x7f03008a; + public static final int colorPrimary = 0x7f03008b; + public static final int colorPrimaryDark = 0x7f03008c; + public static final int colorSecondary = 0x7f03008d; + public static final int colorSwitchThumbNormal = 0x7f03008e; + public static final int commitIcon = 0x7f03008f; + public static final int contentDescription = 0x7f030090; + public static final int contentInsetEnd = 0x7f030091; + public static final int contentInsetEndWithActions = 0x7f030092; + public static final int contentInsetLeft = 0x7f030093; + public static final int contentInsetRight = 0x7f030094; + public static final int contentInsetStart = 0x7f030095; + public static final int contentInsetStartWithNavigation = 0x7f030096; + public static final int contentPadding = 0x7f030097; + public static final int contentPaddingBottom = 0x7f030098; + public static final int contentPaddingLeft = 0x7f030099; + public static final int contentPaddingRight = 0x7f03009a; + public static final int contentPaddingTop = 0x7f03009b; + public static final int contentScrim = 0x7f03009c; + public static final int controlBackground = 0x7f03009d; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int cornerRadius = 0x7f03009f; + public static final int counterEnabled = 0x7f0300a0; + public static final int counterMaxLength = 0x7f0300a1; + public static final int counterOverflowTextAppearance = 0x7f0300a2; + public static final int counterTextAppearance = 0x7f0300a3; + public static final int customNavigationLayout = 0x7f0300a4; + public static final int defaultQueryHint = 0x7f0300a5; + public static final int dialogCornerRadius = 0x7f0300a6; + public static final int dialogPreferredPadding = 0x7f0300a7; + public static final int dialogTheme = 0x7f0300a8; + public static final int displayOptions = 0x7f0300a9; + public static final int divider = 0x7f0300aa; + public static final int dividerHorizontal = 0x7f0300ab; + public static final int dividerPadding = 0x7f0300ac; + public static final int dividerVertical = 0x7f0300ad; + public static final int drawableSize = 0x7f0300ae; + public static final int drawerArrowStyle = 0x7f0300af; + public static final int dropDownListViewStyle = 0x7f0300b0; + public static final int dropdownListPreferredItemHeight = 0x7f0300b1; + public static final int editTextBackground = 0x7f0300b2; + public static final int editTextColor = 0x7f0300b3; + public static final int editTextStyle = 0x7f0300b4; + public static final int elevation = 0x7f0300b5; + public static final int enforceMaterialTheme = 0x7f0300b6; + public static final int enforceTextAppearance = 0x7f0300b7; + public static final int errorEnabled = 0x7f0300b8; + public static final int errorTextAppearance = 0x7f0300b9; + public static final int expandActivityOverflowButtonDrawable = 0x7f0300ba; + public static final int expanded = 0x7f0300bb; + public static final int expandedTitleGravity = 0x7f0300bc; + public static final int expandedTitleMargin = 0x7f0300bd; + public static final int expandedTitleMarginBottom = 0x7f0300be; + public static final int expandedTitleMarginEnd = 0x7f0300bf; + public static final int expandedTitleMarginStart = 0x7f0300c0; + public static final int expandedTitleMarginTop = 0x7f0300c1; + public static final int expandedTitleTextAppearance = 0x7f0300c2; + public static final int fabAlignmentMode = 0x7f0300c3; + public static final int fabCradleMargin = 0x7f0300c4; + public static final int fabCradleRoundedCornerRadius = 0x7f0300c5; + public static final int fabCradleVerticalOffset = 0x7f0300c6; + public static final int fabCustomSize = 0x7f0300c7; + public static final int fabSize = 0x7f0300c8; + public static final int fastScrollEnabled = 0x7f0300c9; + public static final int fastScrollHorizontalThumbDrawable = 0x7f0300ca; + public static final int fastScrollHorizontalTrackDrawable = 0x7f0300cb; + public static final int fastScrollVerticalThumbDrawable = 0x7f0300cc; + public static final int fastScrollVerticalTrackDrawable = 0x7f0300cd; + public static final int firstBaselineToTopHeight = 0x7f0300ce; + public static final int floatingActionButtonStyle = 0x7f0300cf; + public static final int font = 0x7f0300d0; + public static final int fontFamily = 0x7f0300d1; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int foregroundInsidePadding = 0x7f0300db; + public static final int gapBetweenBars = 0x7f0300dc; + public static final int goIcon = 0x7f0300dd; + public static final int headerLayout = 0x7f0300de; + public static final int height = 0x7f0300df; + public static final int helperText = 0x7f0300e0; + public static final int helperTextEnabled = 0x7f0300e1; + public static final int helperTextTextAppearance = 0x7f0300e2; + public static final int hideMotionSpec = 0x7f0300e3; + public static final int hideOnContentScroll = 0x7f0300e4; + public static final int hideOnScroll = 0x7f0300e5; + public static final int hintAnimationEnabled = 0x7f0300e6; + public static final int hintEnabled = 0x7f0300e7; + public static final int hintTextAppearance = 0x7f0300e8; + public static final int homeAsUpIndicator = 0x7f0300e9; + public static final int homeLayout = 0x7f0300ea; + public static final int hoveredFocusedTranslationZ = 0x7f0300eb; + public static final int icon = 0x7f0300ec; + public static final int iconEndPadding = 0x7f0300ed; + public static final int iconGravity = 0x7f0300ee; + public static final int iconPadding = 0x7f0300ef; + public static final int iconSize = 0x7f0300f0; + public static final int iconStartPadding = 0x7f0300f1; + public static final int iconTint = 0x7f0300f2; + public static final int iconTintMode = 0x7f0300f3; + public static final int iconifiedByDefault = 0x7f0300f4; + public static final int imageButtonStyle = 0x7f0300f5; + public static final int indeterminateProgressStyle = 0x7f0300f6; + public static final int initialActivityCount = 0x7f0300f7; + public static final int insetForeground = 0x7f0300f8; + public static final int isLightTheme = 0x7f0300f9; + public static final int itemBackground = 0x7f0300fa; + public static final int itemHorizontalPadding = 0x7f0300fb; + public static final int itemHorizontalTranslationEnabled = 0x7f0300fc; + public static final int itemIconPadding = 0x7f0300fd; + public static final int itemIconSize = 0x7f0300fe; + public static final int itemIconTint = 0x7f0300ff; + public static final int itemPadding = 0x7f030100; + public static final int itemSpacing = 0x7f030101; + public static final int itemTextAppearance = 0x7f030102; + public static final int itemTextAppearanceActive = 0x7f030103; + public static final int itemTextAppearanceInactive = 0x7f030104; + public static final int itemTextColor = 0x7f030105; + public static final int keylines = 0x7f030106; + public static final int labelVisibilityMode = 0x7f030107; + public static final int lastBaselineToBottomHeight = 0x7f030108; + public static final int layout = 0x7f030109; + public static final int layoutManager = 0x7f03010a; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_collapseMode = 0x7f03010e; + public static final int layout_collapseParallaxMultiplier = 0x7f03010f; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int layout_scrollFlags = 0x7f030113; + public static final int layout_scrollInterpolator = 0x7f030114; + public static final int liftOnScroll = 0x7f030115; + public static final int lineHeight = 0x7f030116; + public static final int lineSpacing = 0x7f030117; + public static final int listChoiceBackgroundIndicator = 0x7f030118; + public static final int listDividerAlertDialog = 0x7f030119; + public static final int listItemLayout = 0x7f03011a; + public static final int listLayout = 0x7f03011b; + public static final int listMenuViewStyle = 0x7f03011c; + public static final int listPopupWindowStyle = 0x7f03011d; + public static final int listPreferredItemHeight = 0x7f03011e; + public static final int listPreferredItemHeightLarge = 0x7f03011f; + public static final int listPreferredItemHeightSmall = 0x7f030120; + public static final int listPreferredItemPaddingLeft = 0x7f030121; + public static final int listPreferredItemPaddingRight = 0x7f030122; + public static final int logo = 0x7f030123; + public static final int logoDescription = 0x7f030124; + public static final int materialButtonStyle = 0x7f030125; + public static final int materialCardViewStyle = 0x7f030126; + public static final int maxActionInlineWidth = 0x7f030127; + public static final int maxButtonHeight = 0x7f030128; + public static final int maxImageSize = 0x7f030129; + public static final int measureWithLargestChild = 0x7f03012a; + public static final int menu = 0x7f03012b; + public static final int multiChoiceItemLayout = 0x7f03012c; + public static final int navigationContentDescription = 0x7f03012d; + public static final int navigationIcon = 0x7f03012e; + public static final int navigationMode = 0x7f03012f; + public static final int navigationViewStyle = 0x7f030130; + public static final int numericModifiers = 0x7f030131; + public static final int overlapAnchor = 0x7f030132; + public static final int paddingBottomNoButtons = 0x7f030133; + public static final int paddingEnd = 0x7f030134; + public static final int paddingStart = 0x7f030135; + public static final int paddingTopNoTitle = 0x7f030136; + public static final int panelBackground = 0x7f030137; + public static final int panelMenuListTheme = 0x7f030138; + public static final int panelMenuListWidth = 0x7f030139; + public static final int passwordToggleContentDescription = 0x7f03013a; + public static final int passwordToggleDrawable = 0x7f03013b; + public static final int passwordToggleEnabled = 0x7f03013c; + public static final int passwordToggleTint = 0x7f03013d; + public static final int passwordToggleTintMode = 0x7f03013e; + public static final int popupMenuStyle = 0x7f03013f; + public static final int popupTheme = 0x7f030140; + public static final int popupWindowStyle = 0x7f030141; + public static final int preserveIconSpacing = 0x7f030142; + public static final int pressedTranslationZ = 0x7f030143; + public static final int progressBarPadding = 0x7f030144; + public static final int progressBarStyle = 0x7f030145; + public static final int queryBackground = 0x7f030146; + public static final int queryHint = 0x7f030147; + public static final int radioButtonStyle = 0x7f030148; + public static final int ratingBarStyle = 0x7f030149; + public static final int ratingBarStyleIndicator = 0x7f03014a; + public static final int ratingBarStyleSmall = 0x7f03014b; + public static final int reverseLayout = 0x7f03014c; + public static final int rippleColor = 0x7f03014d; + public static final int scrimAnimationDuration = 0x7f03014e; + public static final int scrimBackground = 0x7f03014f; + public static final int scrimVisibleHeightTrigger = 0x7f030150; + public static final int searchHintIcon = 0x7f030151; + public static final int searchIcon = 0x7f030152; + public static final int searchViewStyle = 0x7f030153; + public static final int seekBarStyle = 0x7f030154; + public static final int selectableItemBackground = 0x7f030155; + public static final int selectableItemBackgroundBorderless = 0x7f030156; + public static final int showAsAction = 0x7f030157; + public static final int showDividers = 0x7f030158; + public static final int showMotionSpec = 0x7f030159; + public static final int showText = 0x7f03015a; + public static final int showTitle = 0x7f03015b; + public static final int singleChoiceItemLayout = 0x7f03015c; + public static final int singleLine = 0x7f03015d; + public static final int singleSelection = 0x7f03015e; + public static final int snackbarButtonStyle = 0x7f03015f; + public static final int snackbarStyle = 0x7f030160; + public static final int spanCount = 0x7f030161; + public static final int spinBars = 0x7f030162; + public static final int spinnerDropDownItemStyle = 0x7f030163; + public static final int spinnerStyle = 0x7f030164; + public static final int splitTrack = 0x7f030165; + public static final int srcCompat = 0x7f030166; + public static final int stackFromEnd = 0x7f030167; + public static final int state_above_anchor = 0x7f030168; + public static final int state_collapsed = 0x7f030169; + public static final int state_collapsible = 0x7f03016a; + public static final int state_liftable = 0x7f03016b; + public static final int state_lifted = 0x7f03016c; + public static final int statusBarBackground = 0x7f03016d; + public static final int statusBarScrim = 0x7f03016e; + public static final int strokeColor = 0x7f03016f; + public static final int strokeWidth = 0x7f030170; + public static final int subMenuArrow = 0x7f030171; + public static final int submitBackground = 0x7f030172; + public static final int subtitle = 0x7f030173; + public static final int subtitleTextAppearance = 0x7f030174; + public static final int subtitleTextColor = 0x7f030175; + public static final int subtitleTextStyle = 0x7f030176; + public static final int suggestionRowLayout = 0x7f030177; + public static final int switchMinWidth = 0x7f030178; + public static final int switchPadding = 0x7f030179; + public static final int switchStyle = 0x7f03017a; + public static final int switchTextAppearance = 0x7f03017b; + public static final int tabBackground = 0x7f03017c; + public static final int tabContentStart = 0x7f03017d; + public static final int tabGravity = 0x7f03017e; + public static final int tabIconTint = 0x7f03017f; + public static final int tabIconTintMode = 0x7f030180; + public static final int tabIndicator = 0x7f030181; + public static final int tabIndicatorAnimationDuration = 0x7f030182; + public static final int tabIndicatorColor = 0x7f030183; + public static final int tabIndicatorFullWidth = 0x7f030184; + public static final int tabIndicatorGravity = 0x7f030185; + public static final int tabIndicatorHeight = 0x7f030186; + public static final int tabInlineLabel = 0x7f030187; + public static final int tabMaxWidth = 0x7f030188; + public static final int tabMinWidth = 0x7f030189; + public static final int tabMode = 0x7f03018a; + public static final int tabPadding = 0x7f03018b; + public static final int tabPaddingBottom = 0x7f03018c; + public static final int tabPaddingEnd = 0x7f03018d; + public static final int tabPaddingStart = 0x7f03018e; + public static final int tabPaddingTop = 0x7f03018f; + public static final int tabRippleColor = 0x7f030190; + public static final int tabSelectedTextColor = 0x7f030191; + public static final int tabStyle = 0x7f030192; + public static final int tabTextAppearance = 0x7f030193; + public static final int tabTextColor = 0x7f030194; + public static final int tabUnboundedRipple = 0x7f030195; + public static final int textAllCaps = 0x7f030196; + public static final int textAppearanceBody1 = 0x7f030197; + public static final int textAppearanceBody2 = 0x7f030198; + public static final int textAppearanceButton = 0x7f030199; + public static final int textAppearanceCaption = 0x7f03019a; + public static final int textAppearanceHeadline1 = 0x7f03019b; + public static final int textAppearanceHeadline2 = 0x7f03019c; + public static final int textAppearanceHeadline3 = 0x7f03019d; + public static final int textAppearanceHeadline4 = 0x7f03019e; + public static final int textAppearanceHeadline5 = 0x7f03019f; + public static final int textAppearanceHeadline6 = 0x7f0301a0; + public static final int textAppearanceLargePopupMenu = 0x7f0301a1; + public static final int textAppearanceListItem = 0x7f0301a2; + public static final int textAppearanceListItemSecondary = 0x7f0301a3; + public static final int textAppearanceListItemSmall = 0x7f0301a4; + public static final int textAppearanceOverline = 0x7f0301a5; + public static final int textAppearancePopupMenuHeader = 0x7f0301a6; + public static final int textAppearanceSearchResultSubtitle = 0x7f0301a7; + public static final int textAppearanceSearchResultTitle = 0x7f0301a8; + public static final int textAppearanceSmallPopupMenu = 0x7f0301a9; + public static final int textAppearanceSubtitle1 = 0x7f0301aa; + public static final int textAppearanceSubtitle2 = 0x7f0301ab; + public static final int textColorAlertDialogListItem = 0x7f0301ac; + public static final int textColorSearchUrl = 0x7f0301ad; + public static final int textEndPadding = 0x7f0301ae; + public static final int textInputStyle = 0x7f0301af; + public static final int textStartPadding = 0x7f0301b0; + public static final int theme = 0x7f0301b1; + public static final int thickness = 0x7f0301b2; + public static final int thumbTextPadding = 0x7f0301b3; + public static final int thumbTint = 0x7f0301b4; + public static final int thumbTintMode = 0x7f0301b5; + public static final int tickMark = 0x7f0301b6; + public static final int tickMarkTint = 0x7f0301b7; + public static final int tickMarkTintMode = 0x7f0301b8; + public static final int tint = 0x7f0301b9; + public static final int tintMode = 0x7f0301ba; + public static final int title = 0x7f0301bb; + public static final int titleEnabled = 0x7f0301bc; + public static final int titleMargin = 0x7f0301bd; + public static final int titleMarginBottom = 0x7f0301be; + public static final int titleMarginEnd = 0x7f0301bf; + public static final int titleMarginStart = 0x7f0301c0; + public static final int titleMarginTop = 0x7f0301c1; + public static final int titleMargins = 0x7f0301c2; + public static final int titleTextAppearance = 0x7f0301c3; + public static final int titleTextColor = 0x7f0301c4; + public static final int titleTextStyle = 0x7f0301c5; + public static final int toolbarId = 0x7f0301c6; + public static final int toolbarNavigationButtonStyle = 0x7f0301c7; + public static final int toolbarStyle = 0x7f0301c8; + public static final int tooltipForegroundColor = 0x7f0301c9; + public static final int tooltipFrameBackground = 0x7f0301ca; + public static final int tooltipText = 0x7f0301cb; + public static final int track = 0x7f0301cc; + public static final int trackTint = 0x7f0301cd; + public static final int trackTintMode = 0x7f0301ce; + public static final int ttcIndex = 0x7f0301cf; + public static final int useCompatPadding = 0x7f0301d0; + public static final int viewInflaterClass = 0x7f0301d1; + public static final int voiceIcon = 0x7f0301d2; + public static final int windowActionBar = 0x7f0301d3; + public static final int windowActionBarOverlay = 0x7f0301d4; + public static final int windowActionModeOverlay = 0x7f0301d5; + public static final int windowFixedHeightMajor = 0x7f0301d6; + public static final int windowFixedHeightMinor = 0x7f0301d7; + public static final int windowFixedWidthMajor = 0x7f0301d8; + public static final int windowFixedWidthMinor = 0x7f0301d9; + public static final int windowMinWidthMajor = 0x7f0301da; + public static final int windowMinWidthMinor = 0x7f0301db; + public static final int windowNoTitle = 0x7f0301dc; + } + public static final class bool { + private bool() {} + + public static final int abc_action_bar_embed_tabs = 0x7f040000; + public static final int abc_allow_stacked_button_bar = 0x7f040001; + public static final int abc_config_actionMenuItemAllCaps = 0x7f040002; + public static final int mtrl_btn_textappearance_all_caps = 0x7f040003; + } + public static final class color { + private color() {} + + public static final int abc_background_cache_hint_selector_material_dark = 0x7f050000; + public static final int abc_background_cache_hint_selector_material_light = 0x7f050001; + public static final int abc_btn_colored_borderless_text_material = 0x7f050002; + public static final int abc_btn_colored_text_material = 0x7f050003; + public static final int abc_color_highlight_material = 0x7f050004; + public static final int abc_hint_foreground_material_dark = 0x7f050005; + public static final int abc_hint_foreground_material_light = 0x7f050006; + public static final int abc_input_method_navigation_guard = 0x7f050007; + public static final int abc_primary_text_disable_only_material_dark = 0x7f050008; + public static final int abc_primary_text_disable_only_material_light = 0x7f050009; + public static final int abc_primary_text_material_dark = 0x7f05000a; + public static final int abc_primary_text_material_light = 0x7f05000b; + public static final int abc_search_url_text = 0x7f05000c; + public static final int abc_search_url_text_normal = 0x7f05000d; + public static final int abc_search_url_text_pressed = 0x7f05000e; + public static final int abc_search_url_text_selected = 0x7f05000f; + public static final int abc_secondary_text_material_dark = 0x7f050010; + public static final int abc_secondary_text_material_light = 0x7f050011; + public static final int abc_tint_btn_checkable = 0x7f050012; + public static final int abc_tint_default = 0x7f050013; + public static final int abc_tint_edittext = 0x7f050014; + public static final int abc_tint_seek_thumb = 0x7f050015; + public static final int abc_tint_spinner = 0x7f050016; + public static final int abc_tint_switch_track = 0x7f050017; + public static final int accent_material_dark = 0x7f050019; + public static final int accent_material_light = 0x7f05001a; + public static final int background_floating_material_dark = 0x7f05001b; + public static final int background_floating_material_light = 0x7f05001c; + public static final int background_material_dark = 0x7f05001d; + public static final int background_material_light = 0x7f05001e; + public static final int bright_foreground_disabled_material_dark = 0x7f05001f; + public static final int bright_foreground_disabled_material_light = 0x7f050020; + public static final int bright_foreground_inverse_material_dark = 0x7f050021; + public static final int bright_foreground_inverse_material_light = 0x7f050022; + public static final int bright_foreground_material_dark = 0x7f050023; + public static final int bright_foreground_material_light = 0x7f050024; + public static final int button_material_dark = 0x7f050025; + public static final int button_material_light = 0x7f050026; + public static final int cardview_dark_background = 0x7f050027; + public static final int cardview_light_background = 0x7f050028; + public static final int cardview_shadow_end_color = 0x7f050029; + public static final int cardview_shadow_start_color = 0x7f05002a; + public static final int design_bottom_navigation_shadow_color = 0x7f05002b; + public static final int design_default_color_primary = 0x7f05002c; + public static final int design_default_color_primary_dark = 0x7f05002d; + public static final int design_error = 0x7f05002e; + public static final int design_fab_shadow_end_color = 0x7f05002f; + public static final int design_fab_shadow_mid_color = 0x7f050030; + public static final int design_fab_shadow_start_color = 0x7f050031; + public static final int design_fab_stroke_end_inner_color = 0x7f050032; + public static final int design_fab_stroke_end_outer_color = 0x7f050033; + public static final int design_fab_stroke_top_inner_color = 0x7f050034; + public static final int design_fab_stroke_top_outer_color = 0x7f050035; + public static final int design_snackbar_background_color = 0x7f050036; + public static final int design_tint_password_toggle = 0x7f050037; + public static final int dim_foreground_disabled_material_dark = 0x7f050038; + public static final int dim_foreground_disabled_material_light = 0x7f050039; + public static final int dim_foreground_material_dark = 0x7f05003a; + public static final int dim_foreground_material_light = 0x7f05003b; + public static final int error_color_material_dark = 0x7f05003d; + public static final int error_color_material_light = 0x7f05003e; + public static final int foreground_material_dark = 0x7f05003f; + public static final int foreground_material_light = 0x7f050040; + public static final int highlighted_text_material_dark = 0x7f050041; + public static final int highlighted_text_material_light = 0x7f050042; + public static final int material_blue_grey_800 = 0x7f050044; + public static final int material_blue_grey_900 = 0x7f050045; + public static final int material_blue_grey_950 = 0x7f050046; + public static final int material_deep_teal_200 = 0x7f050047; + public static final int material_deep_teal_500 = 0x7f050048; + public static final int material_grey_100 = 0x7f050049; + public static final int material_grey_300 = 0x7f05004a; + public static final int material_grey_50 = 0x7f05004b; + public static final int material_grey_600 = 0x7f05004c; + public static final int material_grey_800 = 0x7f05004d; + public static final int material_grey_850 = 0x7f05004e; + public static final int material_grey_900 = 0x7f05004f; + public static final int mtrl_bottom_nav_colored_item_tint = 0x7f050050; + public static final int mtrl_bottom_nav_item_tint = 0x7f050051; + public static final int mtrl_btn_bg_color_disabled = 0x7f050052; + public static final int mtrl_btn_bg_color_selector = 0x7f050053; + public static final int mtrl_btn_ripple_color = 0x7f050054; + public static final int mtrl_btn_stroke_color_selector = 0x7f050055; + public static final int mtrl_btn_text_btn_ripple_color = 0x7f050056; + public static final int mtrl_btn_text_color_disabled = 0x7f050057; + public static final int mtrl_btn_text_color_selector = 0x7f050058; + public static final int mtrl_btn_transparent_bg_color = 0x7f050059; + public static final int mtrl_chip_background_color = 0x7f05005a; + public static final int mtrl_chip_close_icon_tint = 0x7f05005b; + public static final int mtrl_chip_ripple_color = 0x7f05005c; + public static final int mtrl_chip_text_color = 0x7f05005d; + public static final int mtrl_fab_ripple_color = 0x7f05005e; + public static final int mtrl_scrim_color = 0x7f05005f; + public static final int mtrl_tabs_colored_ripple_color = 0x7f050060; + public static final int mtrl_tabs_icon_color_selector = 0x7f050061; + public static final int mtrl_tabs_icon_color_selector_colored = 0x7f050062; + public static final int mtrl_tabs_legacy_text_color_selector = 0x7f050063; + public static final int mtrl_tabs_ripple_color = 0x7f050064; + public static final int mtrl_text_btn_text_color_selector = 0x7f050065; + public static final int mtrl_textinput_default_box_stroke_color = 0x7f050066; + public static final int mtrl_textinput_disabled_color = 0x7f050067; + public static final int mtrl_textinput_filled_box_default_background_color = 0x7f050068; + public static final int mtrl_textinput_hovered_box_stroke_color = 0x7f050069; + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int primary_dark_material_dark = 0x7f05006f; + public static final int primary_dark_material_light = 0x7f050070; + public static final int primary_material_dark = 0x7f050072; + public static final int primary_material_light = 0x7f050073; + public static final int primary_text_default_material_dark = 0x7f050075; + public static final int primary_text_default_material_light = 0x7f050076; + public static final int primary_text_disabled_material_dark = 0x7f050077; + public static final int primary_text_disabled_material_light = 0x7f050078; + public static final int ripple_material_dark = 0x7f050079; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_dark = 0x7f05007c; + public static final int secondary_text_default_material_light = 0x7f05007d; + public static final int secondary_text_disabled_material_dark = 0x7f05007e; + public static final int secondary_text_disabled_material_light = 0x7f05007f; + public static final int switch_thumb_disabled_material_dark = 0x7f050080; + public static final int switch_thumb_disabled_material_light = 0x7f050081; + public static final int switch_thumb_material_dark = 0x7f050082; + public static final int switch_thumb_material_light = 0x7f050083; + public static final int switch_thumb_normal_material_dark = 0x7f050084; + public static final int switch_thumb_normal_material_light = 0x7f050085; + public static final int tooltip_background_dark = 0x7f050086; + public static final int tooltip_background_light = 0x7f050087; + } + public static final class dimen { + private dimen() {} + + public static final int abc_action_bar_content_inset_material = 0x7f060000; + public static final int abc_action_bar_content_inset_with_nav = 0x7f060001; + public static final int abc_action_bar_default_height_material = 0x7f060002; + public static final int abc_action_bar_default_padding_end_material = 0x7f060003; + public static final int abc_action_bar_default_padding_start_material = 0x7f060004; + public static final int abc_action_bar_elevation_material = 0x7f060005; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f060006; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f060007; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f060008; + public static final int abc_action_bar_stacked_max_height = 0x7f060009; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f06000a; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f06000b; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f06000c; + public static final int abc_action_button_min_height_material = 0x7f06000d; + public static final int abc_action_button_min_width_material = 0x7f06000e; + public static final int abc_action_button_min_width_overflow_material = 0x7f06000f; + public static final int abc_alert_dialog_button_bar_height = 0x7f060010; + public static final int abc_alert_dialog_button_dimen = 0x7f060011; + public static final int abc_button_inset_horizontal_material = 0x7f060012; + public static final int abc_button_inset_vertical_material = 0x7f060013; + public static final int abc_button_padding_horizontal_material = 0x7f060014; + public static final int abc_button_padding_vertical_material = 0x7f060015; + public static final int abc_cascading_menus_min_smallest_width = 0x7f060016; + public static final int abc_config_prefDialogWidth = 0x7f060017; + public static final int abc_control_corner_material = 0x7f060018; + public static final int abc_control_inset_material = 0x7f060019; + public static final int abc_control_padding_material = 0x7f06001a; + public static final int abc_dialog_corner_radius_material = 0x7f06001b; + public static final int abc_dialog_fixed_height_major = 0x7f06001c; + public static final int abc_dialog_fixed_height_minor = 0x7f06001d; + public static final int abc_dialog_fixed_width_major = 0x7f06001e; + public static final int abc_dialog_fixed_width_minor = 0x7f06001f; + public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f060020; + public static final int abc_dialog_list_padding_top_no_title = 0x7f060021; + public static final int abc_dialog_min_width_major = 0x7f060022; + public static final int abc_dialog_min_width_minor = 0x7f060023; + public static final int abc_dialog_padding_material = 0x7f060024; + public static final int abc_dialog_padding_top_material = 0x7f060025; + public static final int abc_dialog_title_divider_material = 0x7f060026; + public static final int abc_disabled_alpha_material_dark = 0x7f060027; + public static final int abc_disabled_alpha_material_light = 0x7f060028; + public static final int abc_dropdownitem_icon_width = 0x7f060029; + public static final int abc_dropdownitem_text_padding_left = 0x7f06002a; + public static final int abc_dropdownitem_text_padding_right = 0x7f06002b; + public static final int abc_edit_text_inset_bottom_material = 0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material = 0x7f06002d; + public static final int abc_edit_text_inset_top_material = 0x7f06002e; + public static final int abc_floating_window_z = 0x7f06002f; + public static final int abc_list_item_padding_horizontal_material = 0x7f060030; + public static final int abc_panel_menu_list_width = 0x7f060031; + public static final int abc_progress_bar_height_material = 0x7f060032; + public static final int abc_search_view_preferred_height = 0x7f060033; + public static final int abc_search_view_preferred_width = 0x7f060034; + public static final int abc_seekbar_track_background_height_material = 0x7f060035; + public static final int abc_seekbar_track_progress_height_material = 0x7f060036; + public static final int abc_select_dialog_padding_start_material = 0x7f060037; + public static final int abc_switch_padding = 0x7f060038; + public static final int abc_text_size_body_1_material = 0x7f060039; + public static final int abc_text_size_body_2_material = 0x7f06003a; + public static final int abc_text_size_button_material = 0x7f06003b; + public static final int abc_text_size_caption_material = 0x7f06003c; + public static final int abc_text_size_display_1_material = 0x7f06003d; + public static final int abc_text_size_display_2_material = 0x7f06003e; + public static final int abc_text_size_display_3_material = 0x7f06003f; + public static final int abc_text_size_display_4_material = 0x7f060040; + public static final int abc_text_size_headline_material = 0x7f060041; + public static final int abc_text_size_large_material = 0x7f060042; + public static final int abc_text_size_medium_material = 0x7f060043; + public static final int abc_text_size_menu_header_material = 0x7f060044; + public static final int abc_text_size_menu_material = 0x7f060045; + public static final int abc_text_size_small_material = 0x7f060046; + public static final int abc_text_size_subhead_material = 0x7f060047; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f060048; + public static final int abc_text_size_title_material = 0x7f060049; + public static final int abc_text_size_title_material_toolbar = 0x7f06004a; + public static final int cardview_compat_inset_shadow = 0x7f06004b; + public static final int cardview_default_elevation = 0x7f06004c; + public static final int cardview_default_radius = 0x7f06004d; + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int design_appbar_elevation = 0x7f060055; + public static final int design_bottom_navigation_active_item_max_width = 0x7f060056; + public static final int design_bottom_navigation_active_item_min_width = 0x7f060057; + public static final int design_bottom_navigation_active_text_size = 0x7f060058; + public static final int design_bottom_navigation_elevation = 0x7f060059; + public static final int design_bottom_navigation_height = 0x7f06005a; + public static final int design_bottom_navigation_icon_size = 0x7f06005b; + public static final int design_bottom_navigation_item_max_width = 0x7f06005c; + public static final int design_bottom_navigation_item_min_width = 0x7f06005d; + public static final int design_bottom_navigation_margin = 0x7f06005e; + public static final int design_bottom_navigation_shadow_height = 0x7f06005f; + public static final int design_bottom_navigation_text_size = 0x7f060060; + public static final int design_bottom_sheet_modal_elevation = 0x7f060061; + public static final int design_bottom_sheet_peek_height_min = 0x7f060062; + public static final int design_fab_border_width = 0x7f060063; + public static final int design_fab_elevation = 0x7f060064; + public static final int design_fab_image_size = 0x7f060065; + public static final int design_fab_size_mini = 0x7f060066; + public static final int design_fab_size_normal = 0x7f060067; + public static final int design_fab_translation_z_hovered_focused = 0x7f060068; + public static final int design_fab_translation_z_pressed = 0x7f060069; + public static final int design_navigation_elevation = 0x7f06006a; + public static final int design_navigation_icon_padding = 0x7f06006b; + public static final int design_navigation_icon_size = 0x7f06006c; + public static final int design_navigation_item_horizontal_padding = 0x7f06006d; + public static final int design_navigation_item_icon_padding = 0x7f06006e; + public static final int design_navigation_max_width = 0x7f06006f; + public static final int design_navigation_padding_bottom = 0x7f060070; + public static final int design_navigation_separator_vertical_padding = 0x7f060071; + public static final int design_snackbar_action_inline_max_width = 0x7f060072; + public static final int design_snackbar_background_corner_radius = 0x7f060073; + public static final int design_snackbar_elevation = 0x7f060074; + public static final int design_snackbar_extra_spacing_horizontal = 0x7f060075; + public static final int design_snackbar_max_width = 0x7f060076; + public static final int design_snackbar_min_width = 0x7f060077; + public static final int design_snackbar_padding_horizontal = 0x7f060078; + public static final int design_snackbar_padding_vertical = 0x7f060079; + public static final int design_snackbar_padding_vertical_2lines = 0x7f06007a; + public static final int design_snackbar_text_size = 0x7f06007b; + public static final int design_tab_max_width = 0x7f06007c; + public static final int design_tab_scrollable_min_width = 0x7f06007d; + public static final int design_tab_text_size = 0x7f06007e; + public static final int design_tab_text_size_2line = 0x7f06007f; + public static final int design_textinput_caption_translate_y = 0x7f060080; + public static final int disabled_alpha_material_dark = 0x7f060081; + public static final int disabled_alpha_material_light = 0x7f060082; + public static final int fastscroll_default_thickness = 0x7f060083; + public static final int fastscroll_margin = 0x7f060084; + public static final int fastscroll_minimum_range = 0x7f060085; + public static final int highlight_alpha_material_colored = 0x7f060086; + public static final int highlight_alpha_material_dark = 0x7f060087; + public static final int highlight_alpha_material_light = 0x7f060088; + public static final int hint_alpha_material_dark = 0x7f060089; + public static final int hint_alpha_material_light = 0x7f06008a; + public static final int hint_pressed_alpha_material_dark = 0x7f06008b; + public static final int hint_pressed_alpha_material_light = 0x7f06008c; + public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f06008d; + public static final int item_touch_helper_swipe_escape_max_velocity = 0x7f06008e; + public static final int item_touch_helper_swipe_escape_velocity = 0x7f06008f; + public static final int mtrl_bottomappbar_fabOffsetEndMode = 0x7f060090; + public static final int mtrl_bottomappbar_fab_cradle_margin = 0x7f060091; + public static final int mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 0x7f060092; + public static final int mtrl_bottomappbar_fab_cradle_vertical_offset = 0x7f060093; + public static final int mtrl_bottomappbar_height = 0x7f060094; + public static final int mtrl_btn_corner_radius = 0x7f060095; + public static final int mtrl_btn_dialog_btn_min_width = 0x7f060096; + public static final int mtrl_btn_disabled_elevation = 0x7f060097; + public static final int mtrl_btn_disabled_z = 0x7f060098; + public static final int mtrl_btn_elevation = 0x7f060099; + public static final int mtrl_btn_focused_z = 0x7f06009a; + public static final int mtrl_btn_hovered_z = 0x7f06009b; + public static final int mtrl_btn_icon_btn_padding_left = 0x7f06009c; + public static final int mtrl_btn_icon_padding = 0x7f06009d; + public static final int mtrl_btn_inset = 0x7f06009e; + public static final int mtrl_btn_letter_spacing = 0x7f06009f; + public static final int mtrl_btn_padding_bottom = 0x7f0600a0; + public static final int mtrl_btn_padding_left = 0x7f0600a1; + public static final int mtrl_btn_padding_right = 0x7f0600a2; + public static final int mtrl_btn_padding_top = 0x7f0600a3; + public static final int mtrl_btn_pressed_z = 0x7f0600a4; + public static final int mtrl_btn_stroke_size = 0x7f0600a5; + public static final int mtrl_btn_text_btn_icon_padding = 0x7f0600a6; + public static final int mtrl_btn_text_btn_padding_left = 0x7f0600a7; + public static final int mtrl_btn_text_btn_padding_right = 0x7f0600a8; + public static final int mtrl_btn_text_size = 0x7f0600a9; + public static final int mtrl_btn_z = 0x7f0600aa; + public static final int mtrl_card_elevation = 0x7f0600ab; + public static final int mtrl_card_spacing = 0x7f0600ac; + public static final int mtrl_chip_pressed_translation_z = 0x7f0600ad; + public static final int mtrl_chip_text_size = 0x7f0600ae; + public static final int mtrl_fab_elevation = 0x7f0600af; + public static final int mtrl_fab_translation_z_hovered_focused = 0x7f0600b0; + public static final int mtrl_fab_translation_z_pressed = 0x7f0600b1; + public static final int mtrl_navigation_elevation = 0x7f0600b2; + public static final int mtrl_navigation_item_horizontal_padding = 0x7f0600b3; + public static final int mtrl_navigation_item_icon_padding = 0x7f0600b4; + public static final int mtrl_snackbar_background_corner_radius = 0x7f0600b5; + public static final int mtrl_snackbar_margin = 0x7f0600b6; + public static final int mtrl_textinput_box_bottom_offset = 0x7f0600b7; + public static final int mtrl_textinput_box_corner_radius_medium = 0x7f0600b8; + public static final int mtrl_textinput_box_corner_radius_small = 0x7f0600b9; + public static final int mtrl_textinput_box_label_cutout_padding = 0x7f0600ba; + public static final int mtrl_textinput_box_padding_end = 0x7f0600bb; + public static final int mtrl_textinput_box_stroke_width_default = 0x7f0600bc; + public static final int mtrl_textinput_box_stroke_width_focused = 0x7f0600bd; + public static final int mtrl_textinput_outline_box_expanded_padding = 0x7f0600be; + public static final int mtrl_toolbar_default_height = 0x7f0600bf; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + public static final int tooltip_corner_radius = 0x7f0600d3; + public static final int tooltip_horizontal_padding = 0x7f0600d4; + public static final int tooltip_margin = 0x7f0600d5; + public static final int tooltip_precise_anchor_extra_offset = 0x7f0600d6; + public static final int tooltip_precise_anchor_threshold = 0x7f0600d7; + public static final int tooltip_vertical_padding = 0x7f0600d8; + public static final int tooltip_y_offset_non_touch = 0x7f0600d9; + public static final int tooltip_y_offset_touch = 0x7f0600da; + } + public static final class drawable { + private drawable() {} + + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f070006; + public static final int abc_action_bar_item_background_material = 0x7f070007; + public static final int abc_btn_borderless_material = 0x7f070008; + public static final int abc_btn_check_material = 0x7f070009; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f07000a; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f07000b; + public static final int abc_btn_colored_material = 0x7f07000c; + public static final int abc_btn_default_mtrl_shape = 0x7f07000d; + public static final int abc_btn_radio_material = 0x7f07000e; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f07000f; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f070010; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f070011; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f070012; + public static final int abc_cab_background_internal_bg = 0x7f070013; + public static final int abc_cab_background_top_material = 0x7f070014; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f070015; + public static final int abc_control_background_material = 0x7f070016; + public static final int abc_dialog_material_background = 0x7f070017; + public static final int abc_edit_text_material = 0x7f070018; + public static final int abc_ic_ab_back_material = 0x7f070019; + public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f07001a; + public static final int abc_ic_clear_material = 0x7f07001b; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f07001c; + public static final int abc_ic_go_search_api_material = 0x7f07001d; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f07001e; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f07001f; + public static final int abc_ic_menu_overflow_material = 0x7f070020; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f070021; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f070022; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f070023; + public static final int abc_ic_search_api_material = 0x7f070024; + public static final int abc_ic_star_black_16dp = 0x7f070025; + public static final int abc_ic_star_black_36dp = 0x7f070026; + public static final int abc_ic_star_black_48dp = 0x7f070027; + public static final int abc_ic_star_half_black_16dp = 0x7f070028; + public static final int abc_ic_star_half_black_36dp = 0x7f070029; + public static final int abc_ic_star_half_black_48dp = 0x7f07002a; + public static final int abc_ic_voice_search_api_material = 0x7f07002b; + public static final int abc_item_background_holo_dark = 0x7f07002c; + public static final int abc_item_background_holo_light = 0x7f07002d; + public static final int abc_list_divider_material = 0x7f07002e; + public static final int abc_list_divider_mtrl_alpha = 0x7f07002f; + public static final int abc_list_focused_holo = 0x7f070030; + public static final int abc_list_longpressed_holo = 0x7f070031; + public static final int abc_list_pressed_holo_dark = 0x7f070032; + public static final int abc_list_pressed_holo_light = 0x7f070033; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f070034; + public static final int abc_list_selector_background_transition_holo_light = 0x7f070035; + public static final int abc_list_selector_disabled_holo_dark = 0x7f070036; + public static final int abc_list_selector_disabled_holo_light = 0x7f070037; + public static final int abc_list_selector_holo_dark = 0x7f070038; + public static final int abc_list_selector_holo_light = 0x7f070039; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f07003a; + public static final int abc_popup_background_mtrl_mult = 0x7f07003b; + public static final int abc_ratingbar_indicator_material = 0x7f07003c; + public static final int abc_ratingbar_material = 0x7f07003d; + public static final int abc_ratingbar_small_material = 0x7f07003e; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f07003f; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f070040; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f070041; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f070042; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f070043; + public static final int abc_seekbar_thumb_material = 0x7f070044; + public static final int abc_seekbar_tick_mark_material = 0x7f070045; + public static final int abc_seekbar_track_material = 0x7f070046; + public static final int abc_spinner_mtrl_am_alpha = 0x7f070047; + public static final int abc_spinner_textfield_background_material = 0x7f070048; + public static final int abc_switch_thumb_material = 0x7f070049; + public static final int abc_switch_track_mtrl_alpha = 0x7f07004a; + public static final int abc_tab_indicator_material = 0x7f07004b; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f07004c; + public static final int abc_text_cursor_material = 0x7f07004d; + public static final int abc_text_select_handle_left_mtrl_dark = 0x7f07004e; + public static final int abc_text_select_handle_left_mtrl_light = 0x7f07004f; + public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f070050; + public static final int abc_text_select_handle_middle_mtrl_light = 0x7f070051; + public static final int abc_text_select_handle_right_mtrl_dark = 0x7f070052; + public static final int abc_text_select_handle_right_mtrl_light = 0x7f070053; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f070054; + public static final int abc_textfield_default_mtrl_alpha = 0x7f070055; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f070056; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f070057; + public static final int abc_textfield_search_material = 0x7f070058; + public static final int abc_vector_test = 0x7f070059; + public static final int avd_hide_password = 0x7f07005a; + public static final int avd_show_password = 0x7f07005b; + public static final int design_bottom_navigation_item_background = 0x7f07005d; + public static final int design_fab_background = 0x7f07005e; + public static final int design_ic_visibility = 0x7f07005f; + public static final int design_ic_visibility_off = 0x7f070060; + public static final int design_password_eye = 0x7f070061; + public static final int design_snackbar_background = 0x7f070062; + public static final int ic_mtrl_chip_checked_black = 0x7f07006e; + public static final int ic_mtrl_chip_checked_circle = 0x7f07006f; + public static final int ic_mtrl_chip_close_circle = 0x7f070070; + public static final int mtrl_snackbar_background = 0x7f070077; + public static final int mtrl_tabs_default_indicator = 0x7f070078; + public static final int navigation_empty_icon = 0x7f070079; + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + public static final int tooltip_frame_dark = 0x7f070086; + public static final int tooltip_frame_light = 0x7f070087; + } + public static final class id { + private id() {} + + public static final int action_bar = 0x7f080007; + public static final int action_bar_activity_content = 0x7f080008; + public static final int action_bar_container = 0x7f080009; + public static final int action_bar_root = 0x7f08000a; + public static final int action_bar_spinner = 0x7f08000b; + public static final int action_bar_subtitle = 0x7f08000c; + public static final int action_bar_title = 0x7f08000d; + public static final int action_container = 0x7f08000e; + public static final int action_context_bar = 0x7f08000f; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_menu_divider = 0x7f080012; + public static final int action_menu_presenter = 0x7f080013; + public static final int action_mode_bar = 0x7f080014; + public static final int action_mode_bar_stub = 0x7f080015; + public static final int action_mode_close_button = 0x7f080016; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int activity_chooser_view_content = 0x7f080019; + public static final int add = 0x7f08001a; + public static final int alertTitle = 0x7f08001b; + public static final int async = 0x7f08001e; + public static final int auto = 0x7f08001f; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int buttonPanel = 0x7f080023; + public static final int center = 0x7f080025; + public static final int checkbox = 0x7f080028; + public static final int chronometer = 0x7f080029; + public static final int container = 0x7f08002d; + public static final int content = 0x7f08002e; + public static final int contentPanel = 0x7f08002f; + public static final int coordinator = 0x7f080030; + public static final int custom = 0x7f080031; + public static final int customPanel = 0x7f080032; + public static final int decor_content_parent = 0x7f080033; + public static final int default_activity_button = 0x7f080034; + public static final int design_bottom_sheet = 0x7f080035; + public static final int design_menu_item_action_area = 0x7f080036; + public static final int design_menu_item_action_area_stub = 0x7f080037; + public static final int design_menu_item_text = 0x7f080038; + public static final int design_navigation_view = 0x7f080039; + public static final int edit_query = 0x7f08003b; + public static final int end = 0x7f08003c; + public static final int expand_activities_button = 0x7f080041; + public static final int expanded_menu = 0x7f080042; + public static final int fill = 0x7f080043; + public static final int filled = 0x7f080046; + public static final int fixed = 0x7f080047; + public static final int forever = 0x7f080048; + public static final int ghost_view = 0x7f080049; + public static final int group_divider = 0x7f08004a; + public static final int home = 0x7f08004b; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int image = 0x7f080050; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int item_touch_helper_previous_elevation = 0x7f080053; + public static final int labeled = 0x7f080054; + public static final int largeLabel = 0x7f080055; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int listMode = 0x7f080059; + public static final int list_item = 0x7f08005a; + public static final int masked = 0x7f08005b; + public static final int message = 0x7f08005d; + public static final int mini = 0x7f08005f; + public static final int mtrl_child_content_container = 0x7f080060; + public static final int mtrl_internal_children_alpha_tag = 0x7f080061; + public static final int multiply = 0x7f080062; + public static final int navigation_header_container = 0x7f080063; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int outline = 0x7f08006a; + public static final int parallax = 0x7f08006b; + public static final int parentPanel = 0x7f08006c; + public static final int parent_matrix = 0x7f08006d; + public static final int pin = 0x7f08006e; + public static final int progress_circular = 0x7f08006f; + public static final int progress_horizontal = 0x7f080070; + public static final int radio = 0x7f080071; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int save_image_matrix = 0x7f080075; + public static final int save_non_transition_alpha = 0x7f080076; + public static final int save_scale_type = 0x7f080077; + public static final int screen = 0x7f080078; + public static final int scrollIndicatorDown = 0x7f08007a; + public static final int scrollIndicatorUp = 0x7f08007b; + public static final int scrollView = 0x7f08007c; + public static final int scrollable = 0x7f08007d; + public static final int search_badge = 0x7f08007e; + public static final int search_bar = 0x7f08007f; + public static final int search_button = 0x7f080080; + public static final int search_close_btn = 0x7f080081; + public static final int search_edit_frame = 0x7f080082; + public static final int search_go_btn = 0x7f080083; + public static final int search_mag_icon = 0x7f080084; + public static final int search_plate = 0x7f080085; + public static final int search_src_text = 0x7f080086; + public static final int search_voice_btn = 0x7f080087; + public static final int select_dialog_listview = 0x7f080088; + public static final int selected = 0x7f080089; + public static final int shortcut = 0x7f08008a; + public static final int smallLabel = 0x7f08008e; + public static final int snackbar_action = 0x7f08008f; + public static final int snackbar_text = 0x7f080090; + public static final int spacer = 0x7f080093; + public static final int split_action_bar = 0x7f080094; + public static final int src_atop = 0x7f080095; + public static final int src_in = 0x7f080096; + public static final int src_over = 0x7f080097; + public static final int start = 0x7f080098; + public static final int stretch = 0x7f08009a; + public static final int submenuarrow = 0x7f08009b; + public static final int submit_area = 0x7f08009c; + public static final int tabMode = 0x7f08009d; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int textSpacerNoButtons = 0x7f0800a3; + public static final int textSpacerNoTitle = 0x7f0800a4; + public static final int text_input_password_toggle = 0x7f0800a6; + public static final int textinput_counter = 0x7f0800a7; + public static final int textinput_error = 0x7f0800a8; + public static final int textinput_helper_text = 0x7f0800a9; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int titleDividerNoCustom = 0x7f0800ac; + public static final int title_template = 0x7f0800ad; + public static final int top = 0x7f0800ae; + public static final int topPanel = 0x7f0800af; + public static final int touch_outside = 0x7f0800b0; + public static final int transition_current_scene = 0x7f0800b1; + public static final int transition_layout_save = 0x7f0800b2; + public static final int transition_position = 0x7f0800b3; + public static final int transition_scene_layoutid_cache = 0x7f0800b4; + public static final int transition_transform = 0x7f0800b5; + public static final int uniform = 0x7f0800b6; + public static final int unlabeled = 0x7f0800b7; + public static final int up = 0x7f0800b8; + public static final int view_offset_helper = 0x7f0800ba; + public static final int visible = 0x7f0800bb; + public static final int wrap_content = 0x7f0800bd; + } + public static final class integer { + private integer() {} + + public static final int abc_config_activityDefaultDur = 0x7f090000; + public static final int abc_config_activityShortDur = 0x7f090001; + public static final int app_bar_elevation_anim_duration = 0x7f090002; + public static final int bottom_sheet_slide_duration = 0x7f090003; + public static final int cancel_button_image_alpha = 0x7f090004; + public static final int config_tooltipAnimTime = 0x7f090005; + public static final int design_snackbar_text_max_lines = 0x7f090006; + public static final int design_tab_indicator_anim_duration_ms = 0x7f090007; + public static final int hide_password_duration = 0x7f090008; + public static final int mtrl_btn_anim_delay_ms = 0x7f090009; + public static final int mtrl_btn_anim_duration_ms = 0x7f09000a; + public static final int mtrl_chip_anim_duration = 0x7f09000b; + public static final int mtrl_tab_indicator_anim_duration_ms = 0x7f09000c; + public static final int show_password_duration = 0x7f09000d; + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class interpolator { + private interpolator() {} + + public static final int mtrl_fast_out_linear_in = 0x7f0a0000; + public static final int mtrl_fast_out_slow_in = 0x7f0a0001; + public static final int mtrl_linear = 0x7f0a0002; + public static final int mtrl_linear_out_slow_in = 0x7f0a0003; + } + public static final class layout { + private layout() {} + + public static final int abc_action_bar_title_item = 0x7f0b0000; + public static final int abc_action_bar_up_container = 0x7f0b0001; + public static final int abc_action_menu_item_layout = 0x7f0b0002; + public static final int abc_action_menu_layout = 0x7f0b0003; + public static final int abc_action_mode_bar = 0x7f0b0004; + public static final int abc_action_mode_close_item_material = 0x7f0b0005; + public static final int abc_activity_chooser_view = 0x7f0b0006; + public static final int abc_activity_chooser_view_list_item = 0x7f0b0007; + public static final int abc_alert_dialog_button_bar_material = 0x7f0b0008; + public static final int abc_alert_dialog_material = 0x7f0b0009; + public static final int abc_alert_dialog_title_material = 0x7f0b000a; + public static final int abc_cascading_menu_item_layout = 0x7f0b000b; + public static final int abc_dialog_title_material = 0x7f0b000c; + public static final int abc_expanded_menu_layout = 0x7f0b000d; + public static final int abc_list_menu_item_checkbox = 0x7f0b000e; + public static final int abc_list_menu_item_icon = 0x7f0b000f; + public static final int abc_list_menu_item_layout = 0x7f0b0010; + public static final int abc_list_menu_item_radio = 0x7f0b0011; + public static final int abc_popup_menu_header_item_layout = 0x7f0b0012; + public static final int abc_popup_menu_item_layout = 0x7f0b0013; + public static final int abc_screen_content_include = 0x7f0b0014; + public static final int abc_screen_simple = 0x7f0b0015; + public static final int abc_screen_simple_overlay_action_mode = 0x7f0b0016; + public static final int abc_screen_toolbar = 0x7f0b0017; + public static final int abc_search_dropdown_item_icons_2line = 0x7f0b0018; + public static final int abc_search_view = 0x7f0b0019; + public static final int abc_select_dialog_material = 0x7f0b001a; + public static final int abc_tooltip = 0x7f0b001b; + public static final int design_bottom_navigation_item = 0x7f0b001d; + public static final int design_bottom_sheet_dialog = 0x7f0b001e; + public static final int design_layout_snackbar = 0x7f0b001f; + public static final int design_layout_snackbar_include = 0x7f0b0020; + public static final int design_layout_tab_icon = 0x7f0b0021; + public static final int design_layout_tab_text = 0x7f0b0022; + public static final int design_menu_item_action_area = 0x7f0b0023; + public static final int design_navigation_item = 0x7f0b0024; + public static final int design_navigation_item_header = 0x7f0b0025; + public static final int design_navigation_item_separator = 0x7f0b0026; + public static final int design_navigation_item_subheader = 0x7f0b0027; + public static final int design_navigation_menu = 0x7f0b0028; + public static final int design_navigation_menu_item = 0x7f0b0029; + public static final int design_text_input_password_icon = 0x7f0b002a; + public static final int mtrl_layout_snackbar = 0x7f0b002b; + public static final int mtrl_layout_snackbar_include = 0x7f0b002c; + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + public static final int select_dialog_item_material = 0x7f0b003c; + public static final int select_dialog_multichoice_material = 0x7f0b003d; + public static final int select_dialog_singlechoice_material = 0x7f0b003e; + public static final int support_simple_spinner_dropdown_item = 0x7f0b003f; + } + public static final class string { + private string() {} + + public static final int abc_action_bar_home_description = 0x7f0d0000; + public static final int abc_action_bar_up_description = 0x7f0d0001; + public static final int abc_action_menu_overflow_description = 0x7f0d0002; + public static final int abc_action_mode_done = 0x7f0d0003; + public static final int abc_activity_chooser_view_see_all = 0x7f0d0004; + public static final int abc_activitychooserview_choose_application = 0x7f0d0005; + public static final int abc_capital_off = 0x7f0d0006; + public static final int abc_capital_on = 0x7f0d0007; + public static final int abc_font_family_body_1_material = 0x7f0d0008; + public static final int abc_font_family_body_2_material = 0x7f0d0009; + public static final int abc_font_family_button_material = 0x7f0d000a; + public static final int abc_font_family_caption_material = 0x7f0d000b; + public static final int abc_font_family_display_1_material = 0x7f0d000c; + public static final int abc_font_family_display_2_material = 0x7f0d000d; + public static final int abc_font_family_display_3_material = 0x7f0d000e; + public static final int abc_font_family_display_4_material = 0x7f0d000f; + public static final int abc_font_family_headline_material = 0x7f0d0010; + public static final int abc_font_family_menu_material = 0x7f0d0011; + public static final int abc_font_family_subhead_material = 0x7f0d0012; + public static final int abc_font_family_title_material = 0x7f0d0013; + public static final int abc_menu_alt_shortcut_label = 0x7f0d0014; + public static final int abc_menu_ctrl_shortcut_label = 0x7f0d0015; + public static final int abc_menu_delete_shortcut_label = 0x7f0d0016; + public static final int abc_menu_enter_shortcut_label = 0x7f0d0017; + public static final int abc_menu_function_shortcut_label = 0x7f0d0018; + public static final int abc_menu_meta_shortcut_label = 0x7f0d0019; + public static final int abc_menu_shift_shortcut_label = 0x7f0d001a; + public static final int abc_menu_space_shortcut_label = 0x7f0d001b; + public static final int abc_menu_sym_shortcut_label = 0x7f0d001c; + public static final int abc_prepend_shortcut_label = 0x7f0d001d; + public static final int abc_search_hint = 0x7f0d001e; + public static final int abc_searchview_description_clear = 0x7f0d001f; + public static final int abc_searchview_description_query = 0x7f0d0020; + public static final int abc_searchview_description_search = 0x7f0d0021; + public static final int abc_searchview_description_submit = 0x7f0d0022; + public static final int abc_searchview_description_voice = 0x7f0d0023; + public static final int abc_shareactionprovider_share_with = 0x7f0d0024; + public static final int abc_shareactionprovider_share_with_application = 0x7f0d0025; + public static final int abc_toolbar_collapse_description = 0x7f0d0026; + public static final int appbar_scrolling_view_behavior = 0x7f0d0028; + public static final int bottom_sheet_behavior = 0x7f0d0029; + public static final int character_counter_content_description = 0x7f0d002a; + public static final int character_counter_pattern = 0x7f0d002b; + public static final int fab_transformation_scrim_behavior = 0x7f0d002c; + public static final int fab_transformation_sheet_behavior = 0x7f0d002d; + public static final int hide_bottom_view_on_scroll_behavior = 0x7f0d002f; + public static final int mtrl_chip_close_icon_content_description = 0x7f0d0030; + public static final int password_toggle_content_description = 0x7f0d0031; + public static final int path_password_eye = 0x7f0d0032; + public static final int path_password_eye_mask_strike_through = 0x7f0d0033; + public static final int path_password_eye_mask_visible = 0x7f0d0034; + public static final int path_password_strike_through = 0x7f0d0035; + public static final int search_menu_title = 0x7f0d0036; + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int AlertDialog_AppCompat = 0x7f0e0000; + public static final int AlertDialog_AppCompat_Light = 0x7f0e0001; + public static final int Animation_AppCompat_Dialog = 0x7f0e0002; + public static final int Animation_AppCompat_DropDownUp = 0x7f0e0003; + public static final int Animation_AppCompat_Tooltip = 0x7f0e0004; + public static final int Animation_Design_BottomSheetDialog = 0x7f0e0005; + public static final int Base_AlertDialog_AppCompat = 0x7f0e0008; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f0e0009; + public static final int Base_Animation_AppCompat_Dialog = 0x7f0e000a; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0e000b; + public static final int Base_Animation_AppCompat_Tooltip = 0x7f0e000c; + public static final int Base_CardView = 0x7f0e000d; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0e000f; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f0e000e; + public static final int Base_TextAppearance_AppCompat = 0x7f0e0010; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0e0011; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0e0012; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f0e0013; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0e0014; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0e0015; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0e0016; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0e0017; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0e0018; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0e0019; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0e001a; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f0e001b; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0e001c; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0e001d; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0e001e; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0e001f; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0e0020; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0e0021; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0e0022; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0e0023; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0e0024; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f0e0025; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0e0026; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0e0027; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0e0028; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f0e0029; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0e002a; + public static final int Base_TextAppearance_AppCompat_Tooltip = 0x7f0e002b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0e002c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0e002d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0e002e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0e002f; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0e0030; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0e0031; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0e0032; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0e0033; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0e0034; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0e0035; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0e0036; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0e0037; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0e0038; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0e0039; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0e003a; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0e003b; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0e003c; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0e003d; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0e003e; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0e003f; + public static final int Base_ThemeOverlay_AppCompat = 0x7f0e005f; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0e0060; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0e0061; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0e0062; + public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f0e0063; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0e0064; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0e0065; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog = 0x7f0e0066; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog_Alert = 0x7f0e0067; + public static final int Base_Theme_AppCompat = 0x7f0e0040; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0e0041; + public static final int Base_Theme_AppCompat_Dialog = 0x7f0e0042; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0e0046; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0e0043; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0e0044; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0e0045; + public static final int Base_Theme_AppCompat_Light = 0x7f0e0047; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0e0048; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0e0049; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0e004d; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0e004a; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0e004b; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0e004c; + public static final int Base_Theme_MaterialComponents = 0x7f0e004e; + public static final int Base_Theme_MaterialComponents_Bridge = 0x7f0e004f; + public static final int Base_Theme_MaterialComponents_CompactMenu = 0x7f0e0050; + public static final int Base_Theme_MaterialComponents_Dialog = 0x7f0e0051; + public static final int Base_Theme_MaterialComponents_DialogWhenLarge = 0x7f0e0055; + public static final int Base_Theme_MaterialComponents_Dialog_Alert = 0x7f0e0052; + public static final int Base_Theme_MaterialComponents_Dialog_FixedSize = 0x7f0e0053; + public static final int Base_Theme_MaterialComponents_Dialog_MinWidth = 0x7f0e0054; + public static final int Base_Theme_MaterialComponents_Light = 0x7f0e0056; + public static final int Base_Theme_MaterialComponents_Light_Bridge = 0x7f0e0057; + public static final int Base_Theme_MaterialComponents_Light_DarkActionBar = 0x7f0e0058; + public static final int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 0x7f0e0059; + public static final int Base_Theme_MaterialComponents_Light_Dialog = 0x7f0e005a; + public static final int Base_Theme_MaterialComponents_Light_DialogWhenLarge = 0x7f0e005e; + public static final int Base_Theme_MaterialComponents_Light_Dialog_Alert = 0x7f0e005b; + public static final int Base_Theme_MaterialComponents_Light_Dialog_FixedSize = 0x7f0e005c; + public static final int Base_Theme_MaterialComponents_Light_Dialog_MinWidth = 0x7f0e005d; + public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog = 0x7f0e006f; + public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert = 0x7f0e0070; + public static final int Base_V14_Theme_MaterialComponents = 0x7f0e0068; + public static final int Base_V14_Theme_MaterialComponents_Bridge = 0x7f0e0069; + public static final int Base_V14_Theme_MaterialComponents_Dialog = 0x7f0e006a; + public static final int Base_V14_Theme_MaterialComponents_Light = 0x7f0e006b; + public static final int Base_V14_Theme_MaterialComponents_Light_Bridge = 0x7f0e006c; + public static final int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 0x7f0e006d; + public static final int Base_V14_Theme_MaterialComponents_Light_Dialog = 0x7f0e006e; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f0e0075; + public static final int Base_V21_Theme_AppCompat = 0x7f0e0071; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0e0072; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f0e0073; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0e0074; + public static final int Base_V22_Theme_AppCompat = 0x7f0e0076; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f0e0077; + public static final int Base_V23_Theme_AppCompat = 0x7f0e0078; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f0e0079; + public static final int Base_V26_Theme_AppCompat = 0x7f0e007a; + public static final int Base_V26_Theme_AppCompat_Light = 0x7f0e007b; + public static final int Base_V26_Widget_AppCompat_Toolbar = 0x7f0e007c; + public static final int Base_V28_Theme_AppCompat = 0x7f0e007d; + public static final int Base_V28_Theme_AppCompat_Light = 0x7f0e007e; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f0e0083; + public static final int Base_V7_Theme_AppCompat = 0x7f0e007f; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0e0080; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f0e0081; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0e0082; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0e0084; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0e0085; + public static final int Base_V7_Widget_AppCompat_Toolbar = 0x7f0e0086; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f0e0087; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0e0088; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0e0089; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0e008a; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0e008b; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f0e008c; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0e008d; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0e008e; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f0e008f; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0e0090; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0e0091; + public static final int Base_Widget_AppCompat_Button = 0x7f0e0092; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0e0098; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0e0099; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0e0093; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0e0094; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0e0095; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0e0096; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f0e0097; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0e009a; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0e009b; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0e009c; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0e009d; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0e009e; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0e009f; + public static final int Base_Widget_AppCompat_EditText = 0x7f0e00a0; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f0e00a1; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0e00a2; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0e00a3; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0e00a4; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0e00a5; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0e00a6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0e00a7; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0e00a8; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0e00a9; + public static final int Base_Widget_AppCompat_ListMenuView = 0x7f0e00aa; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0e00ab; + public static final int Base_Widget_AppCompat_ListView = 0x7f0e00ac; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0e00ad; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0e00ae; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0e00af; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0e00b0; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0e00b1; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0e00b2; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0e00b3; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f0e00b4; + public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0e00b5; + public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0e00b6; + public static final int Base_Widget_AppCompat_SearchView = 0x7f0e00b7; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0e00b8; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f0e00b9; + public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f0e00ba; + public static final int Base_Widget_AppCompat_Spinner = 0x7f0e00bb; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0e00bc; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0e00bd; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f0e00be; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0e00bf; + public static final int Base_Widget_Design_TabLayout = 0x7f0e00c0; + public static final int Base_Widget_MaterialComponents_Chip = 0x7f0e00c1; + public static final int Base_Widget_MaterialComponents_TextInputEditText = 0x7f0e00c2; + public static final int Base_Widget_MaterialComponents_TextInputLayout = 0x7f0e00c3; + public static final int CardView = 0x7f0e00c4; + public static final int CardView_Dark = 0x7f0e00c5; + public static final int CardView_Light = 0x7f0e00c6; + public static final int Platform_AppCompat = 0x7f0e00c7; + public static final int Platform_AppCompat_Light = 0x7f0e00c8; + public static final int Platform_MaterialComponents = 0x7f0e00c9; + public static final int Platform_MaterialComponents_Dialog = 0x7f0e00ca; + public static final int Platform_MaterialComponents_Light = 0x7f0e00cb; + public static final int Platform_MaterialComponents_Light_Dialog = 0x7f0e00cc; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f0e00cd; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0e00ce; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0e00cf; + public static final int Platform_V21_AppCompat = 0x7f0e00d0; + public static final int Platform_V21_AppCompat_Light = 0x7f0e00d1; + public static final int Platform_V25_AppCompat = 0x7f0e00d2; + public static final int Platform_V25_AppCompat_Light = 0x7f0e00d3; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f0e00d4; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0e00d5; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0e00d6; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0e00d7; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0e00d8; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0e00d9; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 0x7f0e00da; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 0x7f0e00db; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0e00dc; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 0x7f0e00dd; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0e00e3; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0e00de; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0e00df; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0e00e0; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0e00e1; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0e00e2; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0e00e4; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0e00e5; + public static final int TextAppearance_AppCompat = 0x7f0e00e6; + public static final int TextAppearance_AppCompat_Body1 = 0x7f0e00e7; + public static final int TextAppearance_AppCompat_Body2 = 0x7f0e00e8; + public static final int TextAppearance_AppCompat_Button = 0x7f0e00e9; + public static final int TextAppearance_AppCompat_Caption = 0x7f0e00ea; + public static final int TextAppearance_AppCompat_Display1 = 0x7f0e00eb; + public static final int TextAppearance_AppCompat_Display2 = 0x7f0e00ec; + public static final int TextAppearance_AppCompat_Display3 = 0x7f0e00ed; + public static final int TextAppearance_AppCompat_Display4 = 0x7f0e00ee; + public static final int TextAppearance_AppCompat_Headline = 0x7f0e00ef; + public static final int TextAppearance_AppCompat_Inverse = 0x7f0e00f0; + public static final int TextAppearance_AppCompat_Large = 0x7f0e00f1; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0e00f2; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0e00f3; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0e00f4; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0e00f5; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0e00f6; + public static final int TextAppearance_AppCompat_Medium = 0x7f0e00f7; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0e00f8; + public static final int TextAppearance_AppCompat_Menu = 0x7f0e00f9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0e00fa; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0e00fb; + public static final int TextAppearance_AppCompat_Small = 0x7f0e00fc; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0e00fd; + public static final int TextAppearance_AppCompat_Subhead = 0x7f0e00fe; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0e00ff; + public static final int TextAppearance_AppCompat_Title = 0x7f0e0100; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0e0101; + public static final int TextAppearance_AppCompat_Tooltip = 0x7f0e0102; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0e0103; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0e0104; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0e0105; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0e0106; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0e0107; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0e0108; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0e0109; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0e010a; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0e010b; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0e010c; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0e010d; + public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0e010e; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0e010f; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0e0110; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0e0111; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0e0112; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0e0113; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0e0114; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0e0115; + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded = 0x7f0e0120; + public static final int TextAppearance_Design_Counter = 0x7f0e0121; + public static final int TextAppearance_Design_Counter_Overflow = 0x7f0e0122; + public static final int TextAppearance_Design_Error = 0x7f0e0123; + public static final int TextAppearance_Design_HelperText = 0x7f0e0124; + public static final int TextAppearance_Design_Hint = 0x7f0e0125; + public static final int TextAppearance_Design_Snackbar_Message = 0x7f0e0126; + public static final int TextAppearance_Design_Tab = 0x7f0e0127; + public static final int TextAppearance_MaterialComponents_Body1 = 0x7f0e0128; + public static final int TextAppearance_MaterialComponents_Body2 = 0x7f0e0129; + public static final int TextAppearance_MaterialComponents_Button = 0x7f0e012a; + public static final int TextAppearance_MaterialComponents_Caption = 0x7f0e012b; + public static final int TextAppearance_MaterialComponents_Chip = 0x7f0e012c; + public static final int TextAppearance_MaterialComponents_Headline1 = 0x7f0e012d; + public static final int TextAppearance_MaterialComponents_Headline2 = 0x7f0e012e; + public static final int TextAppearance_MaterialComponents_Headline3 = 0x7f0e012f; + public static final int TextAppearance_MaterialComponents_Headline4 = 0x7f0e0130; + public static final int TextAppearance_MaterialComponents_Headline5 = 0x7f0e0131; + public static final int TextAppearance_MaterialComponents_Headline6 = 0x7f0e0132; + public static final int TextAppearance_MaterialComponents_Overline = 0x7f0e0133; + public static final int TextAppearance_MaterialComponents_Subtitle1 = 0x7f0e0134; + public static final int TextAppearance_MaterialComponents_Subtitle2 = 0x7f0e0135; + public static final int TextAppearance_MaterialComponents_Tab = 0x7f0e0136; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0e0137; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0e0138; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0e0139; + public static final int ThemeOverlay_AppCompat = 0x7f0e016a; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0e016b; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f0e016c; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0e016d; + public static final int ThemeOverlay_AppCompat_Dialog = 0x7f0e016e; + public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0e016f; + public static final int ThemeOverlay_AppCompat_Light = 0x7f0e0170; + public static final int ThemeOverlay_MaterialComponents = 0x7f0e0171; + public static final int ThemeOverlay_MaterialComponents_ActionBar = 0x7f0e0172; + public static final int ThemeOverlay_MaterialComponents_Dark = 0x7f0e0173; + public static final int ThemeOverlay_MaterialComponents_Dark_ActionBar = 0x7f0e0174; + public static final int ThemeOverlay_MaterialComponents_Dialog = 0x7f0e0175; + public static final int ThemeOverlay_MaterialComponents_Dialog_Alert = 0x7f0e0176; + public static final int ThemeOverlay_MaterialComponents_Light = 0x7f0e0177; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText = 0x7f0e0178; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = 0x7f0e0179; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = 0x7f0e017a; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = 0x7f0e017b; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 0x7f0e017c; + public static final int Theme_AppCompat = 0x7f0e013a; + public static final int Theme_AppCompat_CompactMenu = 0x7f0e013b; + public static final int Theme_AppCompat_DayNight = 0x7f0e013c; + public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0e013d; + public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0e013e; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0e0141; + public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0e013f; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0e0140; + public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0e0142; + public static final int Theme_AppCompat_Dialog = 0x7f0e0143; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0e0146; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f0e0144; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0e0145; + public static final int Theme_AppCompat_Light = 0x7f0e0147; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0e0148; + public static final int Theme_AppCompat_Light_Dialog = 0x7f0e0149; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0e014c; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0e014a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0e014b; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0e014d; + public static final int Theme_AppCompat_NoActionBar = 0x7f0e014e; + public static final int Theme_Design = 0x7f0e014f; + public static final int Theme_Design_BottomSheetDialog = 0x7f0e0150; + public static final int Theme_Design_Light = 0x7f0e0151; + public static final int Theme_Design_Light_BottomSheetDialog = 0x7f0e0152; + public static final int Theme_Design_Light_NoActionBar = 0x7f0e0153; + public static final int Theme_Design_NoActionBar = 0x7f0e0154; + public static final int Theme_MaterialComponents = 0x7f0e0155; + public static final int Theme_MaterialComponents_BottomSheetDialog = 0x7f0e0156; + public static final int Theme_MaterialComponents_Bridge = 0x7f0e0157; + public static final int Theme_MaterialComponents_CompactMenu = 0x7f0e0158; + public static final int Theme_MaterialComponents_Dialog = 0x7f0e0159; + public static final int Theme_MaterialComponents_DialogWhenLarge = 0x7f0e015c; + public static final int Theme_MaterialComponents_Dialog_Alert = 0x7f0e015a; + public static final int Theme_MaterialComponents_Dialog_MinWidth = 0x7f0e015b; + public static final int Theme_MaterialComponents_Light = 0x7f0e015d; + public static final int Theme_MaterialComponents_Light_BottomSheetDialog = 0x7f0e015e; + public static final int Theme_MaterialComponents_Light_Bridge = 0x7f0e015f; + public static final int Theme_MaterialComponents_Light_DarkActionBar = 0x7f0e0160; + public static final int Theme_MaterialComponents_Light_DarkActionBar_Bridge = 0x7f0e0161; + public static final int Theme_MaterialComponents_Light_Dialog = 0x7f0e0162; + public static final int Theme_MaterialComponents_Light_DialogWhenLarge = 0x7f0e0165; + public static final int Theme_MaterialComponents_Light_Dialog_Alert = 0x7f0e0163; + public static final int Theme_MaterialComponents_Light_Dialog_MinWidth = 0x7f0e0164; + public static final int Theme_MaterialComponents_Light_NoActionBar = 0x7f0e0166; + public static final int Theme_MaterialComponents_Light_NoActionBar_Bridge = 0x7f0e0167; + public static final int Theme_MaterialComponents_NoActionBar = 0x7f0e0168; + public static final int Theme_MaterialComponents_NoActionBar_Bridge = 0x7f0e0169; + public static final int Widget_AppCompat_ActionBar = 0x7f0e017d; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0e017e; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0e017f; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0e0180; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0e0181; + public static final int Widget_AppCompat_ActionButton = 0x7f0e0182; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0e0183; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0e0184; + public static final int Widget_AppCompat_ActionMode = 0x7f0e0185; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f0e0186; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0e0187; + public static final int Widget_AppCompat_Button = 0x7f0e0188; + public static final int Widget_AppCompat_ButtonBar = 0x7f0e018e; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0e018f; + public static final int Widget_AppCompat_Button_Borderless = 0x7f0e0189; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0e018a; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0e018b; + public static final int Widget_AppCompat_Button_Colored = 0x7f0e018c; + public static final int Widget_AppCompat_Button_Small = 0x7f0e018d; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0e0190; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0e0191; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0e0192; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0e0193; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0e0194; + public static final int Widget_AppCompat_EditText = 0x7f0e0195; + public static final int Widget_AppCompat_ImageButton = 0x7f0e0196; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f0e0197; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0e0198; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0e0199; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0e019a; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0e019b; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0e019c; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0e019d; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0e019e; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0e019f; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f0e01a0; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0e01a1; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0e01a2; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0e01a3; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0e01a4; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0e01a5; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0e01a6; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0e01a7; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0e01a8; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0e01a9; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0e01aa; + public static final int Widget_AppCompat_Light_SearchView = 0x7f0e01ab; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0e01ac; + public static final int Widget_AppCompat_ListMenuView = 0x7f0e01ad; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f0e01ae; + public static final int Widget_AppCompat_ListView = 0x7f0e01af; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f0e01b0; + public static final int Widget_AppCompat_ListView_Menu = 0x7f0e01b1; + public static final int Widget_AppCompat_PopupMenu = 0x7f0e01b2; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0e01b3; + public static final int Widget_AppCompat_PopupWindow = 0x7f0e01b4; + public static final int Widget_AppCompat_ProgressBar = 0x7f0e01b5; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0e01b6; + public static final int Widget_AppCompat_RatingBar = 0x7f0e01b7; + public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0e01b8; + public static final int Widget_AppCompat_RatingBar_Small = 0x7f0e01b9; + public static final int Widget_AppCompat_SearchView = 0x7f0e01ba; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0e01bb; + public static final int Widget_AppCompat_SeekBar = 0x7f0e01bc; + public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f0e01bd; + public static final int Widget_AppCompat_Spinner = 0x7f0e01be; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0e01bf; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0e01c0; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0e01c1; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0e01c2; + public static final int Widget_AppCompat_Toolbar = 0x7f0e01c3; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0e01c4; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Design_AppBarLayout = 0x7f0e01c7; + public static final int Widget_Design_BottomNavigationView = 0x7f0e01c8; + public static final int Widget_Design_BottomSheet_Modal = 0x7f0e01c9; + public static final int Widget_Design_CollapsingToolbar = 0x7f0e01ca; + public static final int Widget_Design_FloatingActionButton = 0x7f0e01cb; + public static final int Widget_Design_NavigationView = 0x7f0e01cc; + public static final int Widget_Design_ScrimInsetsFrameLayout = 0x7f0e01cd; + public static final int Widget_Design_Snackbar = 0x7f0e01ce; + public static final int Widget_Design_TabLayout = 0x7f0e01cf; + public static final int Widget_Design_TextInputLayout = 0x7f0e01d0; + public static final int Widget_MaterialComponents_BottomAppBar = 0x7f0e01d1; + public static final int Widget_MaterialComponents_BottomAppBar_Colored = 0x7f0e01d2; + public static final int Widget_MaterialComponents_BottomNavigationView = 0x7f0e01d3; + public static final int Widget_MaterialComponents_BottomNavigationView_Colored = 0x7f0e01d4; + public static final int Widget_MaterialComponents_BottomSheet_Modal = 0x7f0e01d5; + public static final int Widget_MaterialComponents_Button = 0x7f0e01d6; + public static final int Widget_MaterialComponents_Button_Icon = 0x7f0e01d7; + public static final int Widget_MaterialComponents_Button_OutlinedButton = 0x7f0e01d8; + public static final int Widget_MaterialComponents_Button_OutlinedButton_Icon = 0x7f0e01d9; + public static final int Widget_MaterialComponents_Button_TextButton = 0x7f0e01da; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog = 0x7f0e01db; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog_Icon = 0x7f0e01dc; + public static final int Widget_MaterialComponents_Button_TextButton_Icon = 0x7f0e01dd; + public static final int Widget_MaterialComponents_Button_UnelevatedButton = 0x7f0e01de; + public static final int Widget_MaterialComponents_Button_UnelevatedButton_Icon = 0x7f0e01df; + public static final int Widget_MaterialComponents_CardView = 0x7f0e01e0; + public static final int Widget_MaterialComponents_ChipGroup = 0x7f0e01e5; + public static final int Widget_MaterialComponents_Chip_Action = 0x7f0e01e1; + public static final int Widget_MaterialComponents_Chip_Choice = 0x7f0e01e2; + public static final int Widget_MaterialComponents_Chip_Entry = 0x7f0e01e3; + public static final int Widget_MaterialComponents_Chip_Filter = 0x7f0e01e4; + public static final int Widget_MaterialComponents_FloatingActionButton = 0x7f0e01e6; + public static final int Widget_MaterialComponents_NavigationView = 0x7f0e01e7; + public static final int Widget_MaterialComponents_Snackbar = 0x7f0e01e8; + public static final int Widget_MaterialComponents_Snackbar_FullWidth = 0x7f0e01e9; + public static final int Widget_MaterialComponents_TabLayout = 0x7f0e01ea; + public static final int Widget_MaterialComponents_TabLayout_Colored = 0x7f0e01eb; + public static final int Widget_MaterialComponents_TextInputEditText_FilledBox = 0x7f0e01ec; + public static final int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = 0x7f0e01ed; + public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox = 0x7f0e01ee; + public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 0x7f0e01ef; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox = 0x7f0e01f0; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = 0x7f0e01f1; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox = 0x7f0e01f2; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = 0x7f0e01f3; + public static final int Widget_MaterialComponents_Toolbar = 0x7f0e01f4; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ActionBar = { 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f0300a4, 0x7f0300a9, 0x7f0300aa, 0x7f0300b5, 0x7f0300df, 0x7f0300e4, 0x7f0300e9, 0x7f0300ea, 0x7f0300ec, 0x7f0300f6, 0x7f030100, 0x7f030123, 0x7f03012f, 0x7f030140, 0x7f030144, 0x7f030145, 0x7f030173, 0x7f030176, 0x7f0301bb, 0x7f0301c5 }; + public static final int ActionBar_background = 0; + public static final int ActionBar_backgroundSplit = 1; + public static final int ActionBar_backgroundStacked = 2; + public static final int ActionBar_contentInsetEnd = 3; + public static final int ActionBar_contentInsetEndWithActions = 4; + public static final int ActionBar_contentInsetLeft = 5; + public static final int ActionBar_contentInsetRight = 6; + public static final int ActionBar_contentInsetStart = 7; + public static final int ActionBar_contentInsetStartWithNavigation = 8; + public static final int ActionBar_customNavigationLayout = 9; + public static final int ActionBar_displayOptions = 10; + public static final int ActionBar_divider = 11; + public static final int ActionBar_elevation = 12; + public static final int ActionBar_height = 13; + public static final int ActionBar_hideOnContentScroll = 14; + public static final int ActionBar_homeAsUpIndicator = 15; + public static final int ActionBar_homeLayout = 16; + public static final int ActionBar_icon = 17; + public static final int ActionBar_indeterminateProgressStyle = 18; + public static final int ActionBar_itemPadding = 19; + public static final int ActionBar_logo = 20; + public static final int ActionBar_navigationMode = 21; + public static final int ActionBar_popupTheme = 22; + public static final int ActionBar_progressBarPadding = 23; + public static final int ActionBar_progressBarStyle = 24; + public static final int ActionBar_subtitle = 25; + public static final int ActionBar_subtitleTextStyle = 26; + public static final int ActionBar_title = 27; + public static final int ActionBar_titleTextStyle = 28; + public static final int[] ActionBarLayout = { 0x10100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int[] ActionMenuItemView = { 0x101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMode = { 0x7f030031, 0x7f030032, 0x7f03007e, 0x7f0300df, 0x7f030176, 0x7f0301c5 }; + public static final int ActionMode_background = 0; + public static final int ActionMode_backgroundSplit = 1; + public static final int ActionMode_closeItemLayout = 2; + public static final int ActionMode_height = 3; + public static final int ActionMode_subtitleTextStyle = 4; + public static final int ActionMode_titleTextStyle = 5; + public static final int[] ActivityChooserView = { 0x7f0300ba, 0x7f0300f7 }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + public static final int ActivityChooserView_initialActivityCount = 1; + public static final int[] AlertDialog = { 0x10100f2, 0x7f030052, 0x7f030053, 0x7f03011a, 0x7f03011b, 0x7f03012c, 0x7f03015b, 0x7f03015c }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonIconDimen = 1; + public static final int AlertDialog_buttonPanelSideLayout = 2; + public static final int AlertDialog_listItemLayout = 3; + public static final int AlertDialog_listLayout = 4; + public static final int AlertDialog_multiChoiceItemLayout = 5; + public static final int AlertDialog_showTitle = 6; + public static final int AlertDialog_singleChoiceItemLayout = 7; + public static final int[] AppBarLayout = { 0x10100d4, 0x101048f, 0x1010540, 0x7f0300b5, 0x7f0300bb, 0x7f030115 }; + public static final int AppBarLayout_android_background = 0; + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + public static final int AppBarLayout_elevation = 3; + public static final int AppBarLayout_expanded = 4; + public static final int AppBarLayout_liftOnScroll = 5; + public static final int[] AppBarLayoutStates = { 0x7f030169, 0x7f03016a, 0x7f03016b, 0x7f03016c }; + public static final int AppBarLayoutStates_state_collapsed = 0; + public static final int AppBarLayoutStates_state_collapsible = 1; + public static final int AppBarLayoutStates_state_liftable = 2; + public static final int AppBarLayoutStates_state_lifted = 3; + public static final int[] AppBarLayout_Layout = { 0x7f030113, 0x7f030114 }; + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + public static final int[] AppCompatImageView = { 0x1010119, 0x7f030166, 0x7f0301b9, 0x7f0301ba }; + public static final int AppCompatImageView_android_src = 0; + public static final int AppCompatImageView_srcCompat = 1; + public static final int AppCompatImageView_tint = 2; + public static final int AppCompatImageView_tintMode = 3; + public static final int[] AppCompatSeekBar = { 0x1010142, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8 }; + public static final int AppCompatSeekBar_android_thumb = 0; + public static final int AppCompatSeekBar_tickMark = 1; + public static final int AppCompatSeekBar_tickMarkTint = 2; + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + public static final int[] AppCompatTextHelper = { 0x1010034, 0x101016d, 0x101016e, 0x101016f, 0x1010170, 0x1010392, 0x1010393 }; + public static final int AppCompatTextHelper_android_textAppearance = 0; + public static final int AppCompatTextHelper_android_drawableTop = 1; + public static final int AppCompatTextHelper_android_drawableBottom = 2; + public static final int AppCompatTextHelper_android_drawableLeft = 3; + public static final int AppCompatTextHelper_android_drawableRight = 4; + public static final int AppCompatTextHelper_android_drawableStart = 5; + public static final int AppCompatTextHelper_android_drawableEnd = 6; + public static final int[] AppCompatTextView = { 0x1010034, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030030, 0x7f0300ce, 0x7f0300d1, 0x7f030108, 0x7f030116, 0x7f030196 }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_autoSizeMaxTextSize = 1; + public static final int AppCompatTextView_autoSizeMinTextSize = 2; + public static final int AppCompatTextView_autoSizePresetSizes = 3; + public static final int AppCompatTextView_autoSizeStepGranularity = 4; + public static final int AppCompatTextView_autoSizeTextType = 5; + public static final int AppCompatTextView_firstBaselineToTopHeight = 6; + public static final int AppCompatTextView_fontFamily = 7; + public static final int AppCompatTextView_lastBaselineToBottomHeight = 8; + public static final int AppCompatTextView_lineHeight = 9; + public static final int AppCompatTextView_textAllCaps = 10; + public static final int[] AppCompatTheme = { 0x1010057, 0x10100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, 0x7f030025, 0x7f03002b, 0x7f03003e, 0x7f03004c, 0x7f03004d, 0x7f03004e, 0x7f03004f, 0x7f030050, 0x7f030054, 0x7f030055, 0x7f03005f, 0x7f030064, 0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008e, 0x7f03009d, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300ab, 0x7f0300ad, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3, 0x7f0300b4, 0x7f0300e9, 0x7f0300f5, 0x7f030118, 0x7f030119, 0x7f03011c, 0x7f03011d, 0x7f03011e, 0x7f03011f, 0x7f030120, 0x7f030121, 0x7f030122, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013f, 0x7f030141, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f030156, 0x7f030163, 0x7f030164, 0x7f03017a, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301ac, 0x7f0301ad, 0x7f0301c7, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca, 0x7f0301d1, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc }; + public static final int AppCompatTheme_android_windowIsFloating = 0; + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + public static final int AppCompatTheme_actionBarDivider = 2; + public static final int AppCompatTheme_actionBarItemBackground = 3; + public static final int AppCompatTheme_actionBarPopupTheme = 4; + public static final int AppCompatTheme_actionBarSize = 5; + public static final int AppCompatTheme_actionBarSplitStyle = 6; + public static final int AppCompatTheme_actionBarStyle = 7; + public static final int AppCompatTheme_actionBarTabBarStyle = 8; + public static final int AppCompatTheme_actionBarTabStyle = 9; + public static final int AppCompatTheme_actionBarTabTextStyle = 10; + public static final int AppCompatTheme_actionBarTheme = 11; + public static final int AppCompatTheme_actionBarWidgetTheme = 12; + public static final int AppCompatTheme_actionButtonStyle = 13; + public static final int AppCompatTheme_actionDropDownStyle = 14; + public static final int AppCompatTheme_actionMenuTextAppearance = 15; + public static final int AppCompatTheme_actionMenuTextColor = 16; + public static final int AppCompatTheme_actionModeBackground = 17; + public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; + public static final int AppCompatTheme_actionModeCloseDrawable = 19; + public static final int AppCompatTheme_actionModeCopyDrawable = 20; + public static final int AppCompatTheme_actionModeCutDrawable = 21; + public static final int AppCompatTheme_actionModeFindDrawable = 22; + public static final int AppCompatTheme_actionModePasteDrawable = 23; + public static final int AppCompatTheme_actionModePopupWindowStyle = 24; + public static final int AppCompatTheme_actionModeSelectAllDrawable = 25; + public static final int AppCompatTheme_actionModeShareDrawable = 26; + public static final int AppCompatTheme_actionModeSplitBackground = 27; + public static final int AppCompatTheme_actionModeStyle = 28; + public static final int AppCompatTheme_actionModeWebSearchDrawable = 29; + public static final int AppCompatTheme_actionOverflowButtonStyle = 30; + public static final int AppCompatTheme_actionOverflowMenuStyle = 31; + public static final int AppCompatTheme_activityChooserViewStyle = 32; + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 33; + public static final int AppCompatTheme_alertDialogCenterButtons = 34; + public static final int AppCompatTheme_alertDialogStyle = 35; + public static final int AppCompatTheme_alertDialogTheme = 36; + public static final int AppCompatTheme_autoCompleteTextViewStyle = 37; + public static final int AppCompatTheme_borderlessButtonStyle = 38; + public static final int AppCompatTheme_buttonBarButtonStyle = 39; + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 40; + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 41; + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 42; + public static final int AppCompatTheme_buttonBarStyle = 43; + public static final int AppCompatTheme_buttonStyle = 44; + public static final int AppCompatTheme_buttonStyleSmall = 45; + public static final int AppCompatTheme_checkboxStyle = 46; + public static final int AppCompatTheme_checkedTextViewStyle = 47; + public static final int AppCompatTheme_colorAccent = 48; + public static final int AppCompatTheme_colorBackgroundFloating = 49; + public static final int AppCompatTheme_colorButtonNormal = 50; + public static final int AppCompatTheme_colorControlActivated = 51; + public static final int AppCompatTheme_colorControlHighlight = 52; + public static final int AppCompatTheme_colorControlNormal = 53; + public static final int AppCompatTheme_colorError = 54; + public static final int AppCompatTheme_colorPrimary = 55; + public static final int AppCompatTheme_colorPrimaryDark = 56; + public static final int AppCompatTheme_colorSwitchThumbNormal = 57; + public static final int AppCompatTheme_controlBackground = 58; + public static final int AppCompatTheme_dialogCornerRadius = 59; + public static final int AppCompatTheme_dialogPreferredPadding = 60; + public static final int AppCompatTheme_dialogTheme = 61; + public static final int AppCompatTheme_dividerHorizontal = 62; + public static final int AppCompatTheme_dividerVertical = 63; + public static final int AppCompatTheme_dropDownListViewStyle = 64; + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 65; + public static final int AppCompatTheme_editTextBackground = 66; + public static final int AppCompatTheme_editTextColor = 67; + public static final int AppCompatTheme_editTextStyle = 68; + public static final int AppCompatTheme_homeAsUpIndicator = 69; + public static final int AppCompatTheme_imageButtonStyle = 70; + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 71; + public static final int AppCompatTheme_listDividerAlertDialog = 72; + public static final int AppCompatTheme_listMenuViewStyle = 73; + public static final int AppCompatTheme_listPopupWindowStyle = 74; + public static final int AppCompatTheme_listPreferredItemHeight = 75; + public static final int AppCompatTheme_listPreferredItemHeightLarge = 76; + public static final int AppCompatTheme_listPreferredItemHeightSmall = 77; + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 78; + public static final int AppCompatTheme_listPreferredItemPaddingRight = 79; + public static final int AppCompatTheme_panelBackground = 80; + public static final int AppCompatTheme_panelMenuListTheme = 81; + public static final int AppCompatTheme_panelMenuListWidth = 82; + public static final int AppCompatTheme_popupMenuStyle = 83; + public static final int AppCompatTheme_popupWindowStyle = 84; + public static final int AppCompatTheme_radioButtonStyle = 85; + public static final int AppCompatTheme_ratingBarStyle = 86; + public static final int AppCompatTheme_ratingBarStyleIndicator = 87; + public static final int AppCompatTheme_ratingBarStyleSmall = 88; + public static final int AppCompatTheme_searchViewStyle = 89; + public static final int AppCompatTheme_seekBarStyle = 90; + public static final int AppCompatTheme_selectableItemBackground = 91; + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 92; + public static final int AppCompatTheme_spinnerDropDownItemStyle = 93; + public static final int AppCompatTheme_spinnerStyle = 94; + public static final int AppCompatTheme_switchStyle = 95; + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 96; + public static final int AppCompatTheme_textAppearanceListItem = 97; + public static final int AppCompatTheme_textAppearanceListItemSecondary = 98; + public static final int AppCompatTheme_textAppearanceListItemSmall = 99; + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 100; + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 101; + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 102; + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 103; + public static final int AppCompatTheme_textColorAlertDialogListItem = 104; + public static final int AppCompatTheme_textColorSearchUrl = 105; + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 106; + public static final int AppCompatTheme_toolbarStyle = 107; + public static final int AppCompatTheme_tooltipForegroundColor = 108; + public static final int AppCompatTheme_tooltipFrameBackground = 109; + public static final int AppCompatTheme_viewInflaterClass = 110; + public static final int AppCompatTheme_windowActionBar = 111; + public static final int AppCompatTheme_windowActionBarOverlay = 112; + public static final int AppCompatTheme_windowActionModeOverlay = 113; + public static final int AppCompatTheme_windowFixedHeightMajor = 114; + public static final int AppCompatTheme_windowFixedHeightMinor = 115; + public static final int AppCompatTheme_windowFixedWidthMajor = 116; + public static final int AppCompatTheme_windowFixedWidthMinor = 117; + public static final int AppCompatTheme_windowMinWidthMajor = 118; + public static final int AppCompatTheme_windowMinWidthMinor = 119; + public static final int AppCompatTheme_windowNoTitle = 120; + public static final int[] BottomAppBar = { 0x7f030034, 0x7f0300c3, 0x7f0300c4, 0x7f0300c5, 0x7f0300c6, 0x7f0300e5 }; + public static final int BottomAppBar_backgroundTint = 0; + public static final int BottomAppBar_fabAlignmentMode = 1; + public static final int BottomAppBar_fabCradleMargin = 2; + public static final int BottomAppBar_fabCradleRoundedCornerRadius = 3; + public static final int BottomAppBar_fabCradleVerticalOffset = 4; + public static final int BottomAppBar_hideOnScroll = 5; + public static final int[] BottomNavigationView = { 0x7f0300b5, 0x7f0300fa, 0x7f0300fc, 0x7f0300fe, 0x7f0300ff, 0x7f030103, 0x7f030104, 0x7f030105, 0x7f030107, 0x7f03012b }; + public static final int BottomNavigationView_elevation = 0; + public static final int BottomNavigationView_itemBackground = 1; + public static final int BottomNavigationView_itemHorizontalTranslationEnabled = 2; + public static final int BottomNavigationView_itemIconSize = 3; + public static final int BottomNavigationView_itemIconTint = 4; + public static final int BottomNavigationView_itemTextAppearanceActive = 5; + public static final int BottomNavigationView_itemTextAppearanceInactive = 6; + public static final int BottomNavigationView_itemTextColor = 7; + public static final int BottomNavigationView_labelVisibilityMode = 8; + public static final int BottomNavigationView_menu = 9; + public static final int[] BottomSheetBehavior_Layout = { 0x7f030038, 0x7f030039, 0x7f03003b, 0x7f03003c }; + public static final int BottomSheetBehavior_Layout_behavior_fitToContents = 0; + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 2; + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 3; + public static final int[] ButtonBarLayout = { 0x7f030026 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] CardView = { 0x101013f, 0x1010140, 0x7f030058, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a, 0x7f03009b }; + public static final int CardView_android_minWidth = 0; + public static final int CardView_android_minHeight = 1; + public static final int CardView_cardBackgroundColor = 2; + public static final int CardView_cardCornerRadius = 3; + public static final int CardView_cardElevation = 4; + public static final int CardView_cardMaxElevation = 5; + public static final int CardView_cardPreventCornerOverlap = 6; + public static final int CardView_cardUseCompatPadding = 7; + public static final int CardView_contentPadding = 8; + public static final int CardView_contentPaddingBottom = 9; + public static final int CardView_contentPaddingLeft = 10; + public static final int CardView_contentPaddingRight = 11; + public static final int CardView_contentPaddingTop = 12; + public static final int[] Chip = { 0x1010034, 0x10100ab, 0x101011f, 0x101014f, 0x10101e5, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030065, 0x7f030066, 0x7f030067, 0x7f030069, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f03006d, 0x7f03006e, 0x7f030073, 0x7f030074, 0x7f030075, 0x7f030077, 0x7f030078, 0x7f030079, 0x7f03007a, 0x7f03007b, 0x7f03007c, 0x7f03007d, 0x7f0300e3, 0x7f0300ed, 0x7f0300f1, 0x7f03014d, 0x7f030159, 0x7f0301ae, 0x7f0301b0 }; + public static final int Chip_android_textAppearance = 0; + public static final int Chip_android_ellipsize = 1; + public static final int Chip_android_maxWidth = 2; + public static final int Chip_android_text = 3; + public static final int Chip_android_checkable = 4; + public static final int Chip_checkedIcon = 5; + public static final int Chip_checkedIconEnabled = 6; + public static final int Chip_checkedIconVisible = 7; + public static final int Chip_chipBackgroundColor = 8; + public static final int Chip_chipCornerRadius = 9; + public static final int Chip_chipEndPadding = 10; + public static final int Chip_chipIcon = 11; + public static final int Chip_chipIconEnabled = 12; + public static final int Chip_chipIconSize = 13; + public static final int Chip_chipIconTint = 14; + public static final int Chip_chipIconVisible = 15; + public static final int Chip_chipMinHeight = 16; + public static final int Chip_chipStartPadding = 17; + public static final int Chip_chipStrokeColor = 18; + public static final int Chip_chipStrokeWidth = 19; + public static final int Chip_closeIcon = 20; + public static final int Chip_closeIconEnabled = 21; + public static final int Chip_closeIconEndPadding = 22; + public static final int Chip_closeIconSize = 23; + public static final int Chip_closeIconStartPadding = 24; + public static final int Chip_closeIconTint = 25; + public static final int Chip_closeIconVisible = 26; + public static final int Chip_hideMotionSpec = 27; + public static final int Chip_iconEndPadding = 28; + public static final int Chip_iconStartPadding = 29; + public static final int Chip_rippleColor = 30; + public static final int Chip_showMotionSpec = 31; + public static final int Chip_textEndPadding = 32; + public static final int Chip_textStartPadding = 33; + public static final int[] ChipGroup = { 0x7f030060, 0x7f03006f, 0x7f030070, 0x7f030071, 0x7f03015d, 0x7f03015e }; + public static final int ChipGroup_checkedChip = 0; + public static final int ChipGroup_chipSpacing = 1; + public static final int ChipGroup_chipSpacingHorizontal = 2; + public static final int ChipGroup_chipSpacingVertical = 3; + public static final int ChipGroup_singleLine = 4; + public static final int ChipGroup_singleSelection = 5; + public static final int[] CollapsingToolbarLayout = { 0x7f030081, 0x7f030082, 0x7f03009c, 0x7f0300bc, 0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f03014e, 0x7f030150, 0x7f03016e, 0x7f0301bb, 0x7f0301bc, 0x7f0301c6 }; + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 0; + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 1; + public static final int CollapsingToolbarLayout_contentScrim = 2; + public static final int CollapsingToolbarLayout_expandedTitleGravity = 3; + public static final int CollapsingToolbarLayout_expandedTitleMargin = 4; + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 6; + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 7; + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 8; + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 9; + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 10; + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11; + public static final int CollapsingToolbarLayout_statusBarScrim = 12; + public static final int CollapsingToolbarLayout_title = 13; + public static final int CollapsingToolbarLayout_titleEnabled = 14; + public static final int CollapsingToolbarLayout_toolbarId = 15; + public static final int[] CollapsingToolbarLayout_Layout = { 0x7f03010e, 0x7f03010f }; + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CompoundButton = { 0x1010107, 0x7f030056, 0x7f030057 }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonTint = 1; + public static final int CompoundButton_buttonTintMode = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] DesignTheme = { 0x7f030041, 0x7f030042 }; + public static final int DesignTheme_bottomSheetDialogTheme = 0; + public static final int DesignTheme_bottomSheetStyle = 1; + public static final int[] DrawerArrowToggle = { 0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030083, 0x7f0300ae, 0x7f0300dc, 0x7f030162, 0x7f0301b2 }; + public static final int DrawerArrowToggle_arrowHeadLength = 0; + public static final int DrawerArrowToggle_arrowShaftLength = 1; + public static final int DrawerArrowToggle_barLength = 2; + public static final int DrawerArrowToggle_color = 3; + public static final int DrawerArrowToggle_drawableSize = 4; + public static final int DrawerArrowToggle_gapBetweenBars = 5; + public static final int DrawerArrowToggle_spinBars = 6; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] FloatingActionButton = { 0x7f030034, 0x7f030035, 0x7f03003d, 0x7f0300b5, 0x7f0300c7, 0x7f0300c8, 0x7f0300e3, 0x7f0300eb, 0x7f030129, 0x7f030143, 0x7f03014d, 0x7f030159, 0x7f0301d0 }; + public static final int FloatingActionButton_backgroundTint = 0; + public static final int FloatingActionButton_backgroundTintMode = 1; + public static final int FloatingActionButton_borderWidth = 2; + public static final int FloatingActionButton_elevation = 3; + public static final int FloatingActionButton_fabCustomSize = 4; + public static final int FloatingActionButton_fabSize = 5; + public static final int FloatingActionButton_hideMotionSpec = 6; + public static final int FloatingActionButton_hoveredFocusedTranslationZ = 7; + public static final int FloatingActionButton_maxImageSize = 8; + public static final int FloatingActionButton_pressedTranslationZ = 9; + public static final int FloatingActionButton_rippleColor = 10; + public static final int FloatingActionButton_showMotionSpec = 11; + public static final int FloatingActionButton_useCompatPadding = 12; + public static final int[] FloatingActionButton_Behavior_Layout = { 0x7f030037 }; + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + public static final int[] FlowLayout = { 0x7f030101, 0x7f030117 }; + public static final int FlowLayout_itemSpacing = 0; + public static final int FlowLayout_lineSpacing = 1; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] ForegroundLinearLayout = { 0x1010109, 0x1010200, 0x7f0300db }; + public static final int ForegroundLinearLayout_android_foreground = 0; + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + public static final int[] LinearLayoutCompat = { 0x10100af, 0x10100c4, 0x1010126, 0x1010127, 0x1010128, 0x7f0300aa, 0x7f0300ac, 0x7f03012a, 0x7f030158 }; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 6; + public static final int LinearLayoutCompat_measureWithLargestChild = 7; + public static final int LinearLayoutCompat_showDividers = 8; + public static final int[] LinearLayoutCompat_Layout = { 0x10100b3, 0x10100f4, 0x10100f5, 0x1010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int[] ListPopupWindow = { 0x10102ac, 0x10102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MaterialButton = { 0x10101b7, 0x10101b8, 0x10101b9, 0x10101ba, 0x7f030034, 0x7f030035, 0x7f03009f, 0x7f0300ec, 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f2, 0x7f0300f3, 0x7f03014d, 0x7f03016f, 0x7f030170 }; + public static final int MaterialButton_android_insetLeft = 0; + public static final int MaterialButton_android_insetRight = 1; + public static final int MaterialButton_android_insetTop = 2; + public static final int MaterialButton_android_insetBottom = 3; + public static final int MaterialButton_backgroundTint = 4; + public static final int MaterialButton_backgroundTintMode = 5; + public static final int MaterialButton_cornerRadius = 6; + public static final int MaterialButton_icon = 7; + public static final int MaterialButton_iconGravity = 8; + public static final int MaterialButton_iconPadding = 9; + public static final int MaterialButton_iconSize = 10; + public static final int MaterialButton_iconTint = 11; + public static final int MaterialButton_iconTintMode = 12; + public static final int MaterialButton_rippleColor = 13; + public static final int MaterialButton_strokeColor = 14; + public static final int MaterialButton_strokeWidth = 15; + public static final int[] MaterialCardView = { 0x7f03016f, 0x7f030170 }; + public static final int MaterialCardView_strokeColor = 0; + public static final int MaterialCardView_strokeWidth = 1; + public static final int[] MaterialComponentsTheme = { 0x7f030041, 0x7f030042, 0x7f030068, 0x7f030072, 0x7f030076, 0x7f030084, 0x7f030085, 0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f0300b4, 0x7f0300cf, 0x7f030125, 0x7f030126, 0x7f030130, 0x7f03014f, 0x7f03015f, 0x7f030192, 0x7f030197, 0x7f030198, 0x7f030199, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f03019e, 0x7f03019f, 0x7f0301a0, 0x7f0301a5, 0x7f0301aa, 0x7f0301ab, 0x7f0301af }; + public static final int MaterialComponentsTheme_bottomSheetDialogTheme = 0; + public static final int MaterialComponentsTheme_bottomSheetStyle = 1; + public static final int MaterialComponentsTheme_chipGroupStyle = 2; + public static final int MaterialComponentsTheme_chipStandaloneStyle = 3; + public static final int MaterialComponentsTheme_chipStyle = 4; + public static final int MaterialComponentsTheme_colorAccent = 5; + public static final int MaterialComponentsTheme_colorBackgroundFloating = 6; + public static final int MaterialComponentsTheme_colorPrimary = 7; + public static final int MaterialComponentsTheme_colorPrimaryDark = 8; + public static final int MaterialComponentsTheme_colorSecondary = 9; + public static final int MaterialComponentsTheme_editTextStyle = 10; + public static final int MaterialComponentsTheme_floatingActionButtonStyle = 11; + public static final int MaterialComponentsTheme_materialButtonStyle = 12; + public static final int MaterialComponentsTheme_materialCardViewStyle = 13; + public static final int MaterialComponentsTheme_navigationViewStyle = 14; + public static final int MaterialComponentsTheme_scrimBackground = 15; + public static final int MaterialComponentsTheme_snackbarButtonStyle = 16; + public static final int MaterialComponentsTheme_tabStyle = 17; + public static final int MaterialComponentsTheme_textAppearanceBody1 = 18; + public static final int MaterialComponentsTheme_textAppearanceBody2 = 19; + public static final int MaterialComponentsTheme_textAppearanceButton = 20; + public static final int MaterialComponentsTheme_textAppearanceCaption = 21; + public static final int MaterialComponentsTheme_textAppearanceHeadline1 = 22; + public static final int MaterialComponentsTheme_textAppearanceHeadline2 = 23; + public static final int MaterialComponentsTheme_textAppearanceHeadline3 = 24; + public static final int MaterialComponentsTheme_textAppearanceHeadline4 = 25; + public static final int MaterialComponentsTheme_textAppearanceHeadline5 = 26; + public static final int MaterialComponentsTheme_textAppearanceHeadline6 = 27; + public static final int MaterialComponentsTheme_textAppearanceOverline = 28; + public static final int MaterialComponentsTheme_textAppearanceSubtitle1 = 29; + public static final int MaterialComponentsTheme_textAppearanceSubtitle2 = 30; + public static final int MaterialComponentsTheme_textInputStyle = 31; + public static final int[] MenuGroup = { 0x101000e, 0x10100d0, 0x1010194, 0x10101de, 0x10101df, 0x10101e0 }; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_visible = 2; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int[] MenuItem = { 0x1010002, 0x101000e, 0x10100d0, 0x1010106, 0x1010194, 0x10101de, 0x10101df, 0x10101e1, 0x10101e2, 0x10101e3, 0x10101e4, 0x10101e5, 0x101026f, 0x7f03000d, 0x7f03001f, 0x7f030020, 0x7f030028, 0x7f030090, 0x7f0300f2, 0x7f0300f3, 0x7f030131, 0x7f030157, 0x7f0301cb }; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_actionLayout = 13; + public static final int MenuItem_actionProviderClass = 14; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_alphabeticModifiers = 16; + public static final int MenuItem_contentDescription = 17; + public static final int MenuItem_iconTint = 18; + public static final int MenuItem_iconTintMode = 19; + public static final int MenuItem_numericModifiers = 20; + public static final int MenuItem_showAsAction = 21; + public static final int MenuItem_tooltipText = 22; + public static final int[] MenuView = { 0x10100ae, 0x101012c, 0x101012d, 0x101012e, 0x101012f, 0x1010130, 0x1010131, 0x7f030142, 0x7f030171 }; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_preserveIconSpacing = 7; + public static final int MenuView_subMenuArrow = 8; + public static final int[] NavigationView = { 0x10100d4, 0x10100dd, 0x101011f, 0x7f0300b5, 0x7f0300de, 0x7f0300fa, 0x7f0300fb, 0x7f0300fd, 0x7f0300ff, 0x7f030102, 0x7f030105, 0x7f03012b }; + public static final int NavigationView_android_background = 0; + public static final int NavigationView_android_fitsSystemWindows = 1; + public static final int NavigationView_android_maxWidth = 2; + public static final int NavigationView_elevation = 3; + public static final int NavigationView_headerLayout = 4; + public static final int NavigationView_itemBackground = 5; + public static final int NavigationView_itemHorizontalPadding = 6; + public static final int NavigationView_itemIconPadding = 7; + public static final int NavigationView_itemIconTint = 8; + public static final int NavigationView_itemTextAppearance = 9; + public static final int NavigationView_itemTextColor = 10; + public static final int NavigationView_menu = 11; + public static final int[] PopupWindow = { 0x1010176, 0x10102c9, 0x7f030132 }; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_android_popupAnimationStyle = 1; + public static final int PopupWindow_overlapAnchor = 2; + public static final int[] PopupWindowBackgroundState = { 0x7f030168 }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int[] RecycleListView = { 0x7f030133, 0x7f030136 }; + public static final int RecycleListView_paddingBottomNoButtons = 0; + public static final int RecycleListView_paddingTopNoTitle = 1; + public static final int[] RecyclerView = { 0x10100c4, 0x10100f1, 0x7f0300c9, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f03010a, 0x7f03014c, 0x7f030161, 0x7f030167 }; + public static final int RecyclerView_android_orientation = 0; + public static final int RecyclerView_android_descendantFocusability = 1; + public static final int RecyclerView_fastScrollEnabled = 2; + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 3; + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 4; + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 5; + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 6; + public static final int RecyclerView_layoutManager = 7; + public static final int RecyclerView_reverseLayout = 8; + public static final int RecyclerView_spanCount = 9; + public static final int RecyclerView_stackFromEnd = 10; + public static final int[] ScrimInsetsFrameLayout = { 0x7f0300f8 }; + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + public static final int[] ScrollingViewBehavior_Layout = { 0x7f03003a }; + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + public static final int[] SearchView = { 0x10100da, 0x101011f, 0x1010220, 0x1010264, 0x7f030077, 0x7f03008f, 0x7f0300a5, 0x7f0300dd, 0x7f0300f4, 0x7f030109, 0x7f030146, 0x7f030147, 0x7f030151, 0x7f030152, 0x7f030172, 0x7f030177, 0x7f0301d2 }; + public static final int SearchView_android_focusable = 0; + public static final int SearchView_android_maxWidth = 1; + public static final int SearchView_android_inputType = 2; + public static final int SearchView_android_imeOptions = 3; + public static final int SearchView_closeIcon = 4; + public static final int SearchView_commitIcon = 5; + public static final int SearchView_defaultQueryHint = 6; + public static final int SearchView_goIcon = 7; + public static final int SearchView_iconifiedByDefault = 8; + public static final int SearchView_layout = 9; + public static final int SearchView_queryBackground = 10; + public static final int SearchView_queryHint = 11; + public static final int SearchView_searchHintIcon = 12; + public static final int SearchView_searchIcon = 13; + public static final int SearchView_submitBackground = 14; + public static final int SearchView_suggestionRowLayout = 15; + public static final int SearchView_voiceIcon = 16; + public static final int[] Snackbar = { 0x7f03015f, 0x7f030160 }; + public static final int Snackbar_snackbarButtonStyle = 0; + public static final int Snackbar_snackbarStyle = 1; + public static final int[] SnackbarLayout = { 0x101011f, 0x7f0300b5, 0x7f030127 }; + public static final int SnackbarLayout_android_maxWidth = 0; + public static final int SnackbarLayout_elevation = 1; + public static final int SnackbarLayout_maxActionInlineWidth = 2; + public static final int[] Spinner = { 0x10100b2, 0x1010176, 0x101017b, 0x1010262, 0x7f030140 }; + public static final int Spinner_android_entries = 0; + public static final int Spinner_android_popupBackground = 1; + public static final int Spinner_android_prompt = 2; + public static final int Spinner_android_dropDownWidth = 3; + public static final int Spinner_popupTheme = 4; + public static final int[] SwitchCompat = { 0x1010124, 0x1010125, 0x1010142, 0x7f03015a, 0x7f030165, 0x7f030178, 0x7f030179, 0x7f03017b, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301cc, 0x7f0301cd, 0x7f0301ce }; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 3; + public static final int SwitchCompat_splitTrack = 4; + public static final int SwitchCompat_switchMinWidth = 5; + public static final int SwitchCompat_switchPadding = 6; + public static final int SwitchCompat_switchTextAppearance = 7; + public static final int SwitchCompat_thumbTextPadding = 8; + public static final int SwitchCompat_thumbTint = 9; + public static final int SwitchCompat_thumbTintMode = 10; + public static final int SwitchCompat_track = 11; + public static final int SwitchCompat_trackTint = 12; + public static final int SwitchCompat_trackTintMode = 13; + public static final int[] TabItem = { 0x1010002, 0x10100f2, 0x101014f }; + public static final int TabItem_android_icon = 0; + public static final int TabItem_android_layout = 1; + public static final int TabItem_android_text = 2; + public static final int[] TabLayout = { 0x7f03017c, 0x7f03017d, 0x7f03017e, 0x7f03017f, 0x7f030180, 0x7f030181, 0x7f030182, 0x7f030183, 0x7f030184, 0x7f030185, 0x7f030186, 0x7f030187, 0x7f030188, 0x7f030189, 0x7f03018a, 0x7f03018b, 0x7f03018c, 0x7f03018d, 0x7f03018e, 0x7f03018f, 0x7f030190, 0x7f030191, 0x7f030193, 0x7f030194, 0x7f030195 }; + public static final int TabLayout_tabBackground = 0; + public static final int TabLayout_tabContentStart = 1; + public static final int TabLayout_tabGravity = 2; + public static final int TabLayout_tabIconTint = 3; + public static final int TabLayout_tabIconTintMode = 4; + public static final int TabLayout_tabIndicator = 5; + public static final int TabLayout_tabIndicatorAnimationDuration = 6; + public static final int TabLayout_tabIndicatorColor = 7; + public static final int TabLayout_tabIndicatorFullWidth = 8; + public static final int TabLayout_tabIndicatorGravity = 9; + public static final int TabLayout_tabIndicatorHeight = 10; + public static final int TabLayout_tabInlineLabel = 11; + public static final int TabLayout_tabMaxWidth = 12; + public static final int TabLayout_tabMinWidth = 13; + public static final int TabLayout_tabMode = 14; + public static final int TabLayout_tabPadding = 15; + public static final int TabLayout_tabPaddingBottom = 16; + public static final int TabLayout_tabPaddingEnd = 17; + public static final int TabLayout_tabPaddingStart = 18; + public static final int TabLayout_tabPaddingTop = 19; + public static final int TabLayout_tabRippleColor = 20; + public static final int TabLayout_tabSelectedTextColor = 21; + public static final int TabLayout_tabTextAppearance = 22; + public static final int TabLayout_tabTextColor = 23; + public static final int TabLayout_tabUnboundedRipple = 24; + public static final int[] TextAppearance = { 0x1010095, 0x1010096, 0x1010097, 0x1010098, 0x101009a, 0x101009b, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x10103ac, 0x7f0300d1, 0x7f030196 }; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textColorHint = 4; + public static final int TextAppearance_android_textColorLink = 5; + public static final int TextAppearance_android_shadowColor = 6; + public static final int TextAppearance_android_shadowDx = 7; + public static final int TextAppearance_android_shadowDy = 8; + public static final int TextAppearance_android_shadowRadius = 9; + public static final int TextAppearance_android_fontFamily = 10; + public static final int TextAppearance_fontFamily = 11; + public static final int TextAppearance_textAllCaps = 12; + public static final int[] TextInputLayout = { 0x101009a, 0x1010150, 0x7f030043, 0x7f030044, 0x7f030045, 0x7f030046, 0x7f030047, 0x7f030048, 0x7f030049, 0x7f03004a, 0x7f03004b, 0x7f0300a0, 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f0300b8, 0x7f0300b9, 0x7f0300e0, 0x7f0300e1, 0x7f0300e2, 0x7f0300e6, 0x7f0300e7, 0x7f0300e8, 0x7f03013a, 0x7f03013b, 0x7f03013c, 0x7f03013d, 0x7f03013e }; + public static final int TextInputLayout_android_textColorHint = 0; + public static final int TextInputLayout_android_hint = 1; + public static final int TextInputLayout_boxBackgroundColor = 2; + public static final int TextInputLayout_boxBackgroundMode = 3; + public static final int TextInputLayout_boxCollapsedPaddingTop = 4; + public static final int TextInputLayout_boxCornerRadiusBottomEnd = 5; + public static final int TextInputLayout_boxCornerRadiusBottomStart = 6; + public static final int TextInputLayout_boxCornerRadiusTopEnd = 7; + public static final int TextInputLayout_boxCornerRadiusTopStart = 8; + public static final int TextInputLayout_boxStrokeColor = 9; + public static final int TextInputLayout_boxStrokeWidth = 10; + public static final int TextInputLayout_counterEnabled = 11; + public static final int TextInputLayout_counterMaxLength = 12; + public static final int TextInputLayout_counterOverflowTextAppearance = 13; + public static final int TextInputLayout_counterTextAppearance = 14; + public static final int TextInputLayout_errorEnabled = 15; + public static final int TextInputLayout_errorTextAppearance = 16; + public static final int TextInputLayout_helperText = 17; + public static final int TextInputLayout_helperTextEnabled = 18; + public static final int TextInputLayout_helperTextTextAppearance = 19; + public static final int TextInputLayout_hintAnimationEnabled = 20; + public static final int TextInputLayout_hintEnabled = 21; + public static final int TextInputLayout_hintTextAppearance = 22; + public static final int TextInputLayout_passwordToggleContentDescription = 23; + public static final int TextInputLayout_passwordToggleDrawable = 24; + public static final int TextInputLayout_passwordToggleEnabled = 25; + public static final int TextInputLayout_passwordToggleTint = 26; + public static final int TextInputLayout_passwordToggleTintMode = 27; + public static final int[] ThemeEnforcement = { 0x1010034, 0x7f0300b6, 0x7f0300b7 }; + public static final int ThemeEnforcement_android_textAppearance = 0; + public static final int ThemeEnforcement_enforceMaterialTheme = 1; + public static final int ThemeEnforcement_enforceTextAppearance = 2; + public static final int[] Toolbar = { 0x10100af, 0x1010140, 0x7f030051, 0x7f03007f, 0x7f030080, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f030123, 0x7f030124, 0x7f030128, 0x7f03012d, 0x7f03012e, 0x7f030140, 0x7f030173, 0x7f030174, 0x7f030175, 0x7f0301bb, 0x7f0301bd, 0x7f0301be, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4 }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_buttonGravity = 2; + public static final int Toolbar_collapseContentDescription = 3; + public static final int Toolbar_collapseIcon = 4; + public static final int Toolbar_contentInsetEnd = 5; + public static final int Toolbar_contentInsetEndWithActions = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 9; + public static final int Toolbar_contentInsetStartWithNavigation = 10; + public static final int Toolbar_logo = 11; + public static final int Toolbar_logoDescription = 12; + public static final int Toolbar_maxButtonHeight = 13; + public static final int Toolbar_navigationContentDescription = 14; + public static final int Toolbar_navigationIcon = 15; + public static final int Toolbar_popupTheme = 16; + public static final int Toolbar_subtitle = 17; + public static final int Toolbar_subtitleTextAppearance = 18; + public static final int Toolbar_subtitleTextColor = 19; + public static final int Toolbar_title = 20; + public static final int Toolbar_titleMargin = 21; + public static final int Toolbar_titleMarginBottom = 22; + public static final int Toolbar_titleMarginEnd = 23; + public static final int Toolbar_titleMarginStart = 24; + public static final int Toolbar_titleMarginTop = 25; + public static final int Toolbar_titleMargins = 26; + public static final int Toolbar_titleTextAppearance = 27; + public static final int Toolbar_titleTextColor = 28; + public static final int[] View = { 0x1010000, 0x10100da, 0x7f030134, 0x7f030135, 0x7f0301b1 }; + public static final int View_android_theme = 0; + public static final int View_android_focusable = 1; + public static final int View_paddingEnd = 2; + public static final int View_paddingStart = 3; + public static final int View_theme = 4; + public static final int[] ViewBackgroundHelper = { 0x10100d4, 0x7f030034, 0x7f030035 }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = { 0x10100d0, 0x10100f2, 0x10100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_layout = 1; + public static final int ViewStubCompat_android_inflatedId = 2; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/documentfile/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/documentfile/R.java new file mode 100644 index 0000000000000000000000000000000000000000..d206e40f43680a63b3e9c152ddf75a408c72d5c4 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/documentfile/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.documentfile; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/drawerlayout/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/drawerlayout/R.java new file mode 100644 index 0000000000000000000000000000000000000000..662fe330efdebd805d0572474972210c9c077db6 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/drawerlayout/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.drawerlayout; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/fragment/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/fragment/R.java new file mode 100644 index 0000000000000000000000000000000000000000..4095da228225e15285fae842b81115e57d2708f2 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/fragment/R.java @@ -0,0 +1,211 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.fragment; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int keylines = 0x7f030106; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int statusBarBackground = 0x7f03016d; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int chronometer = 0x7f080029; + public static final int end = 0x7f08003c; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int start = 0x7f080098; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int top = 0x7f0800ae; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/graphics/drawable/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/graphics/drawable/R.java new file mode 100644 index 0000000000000000000000000000000000000000..58697ab8311a33d4ab2251bca46b414e3f7ef438 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/graphics/drawable/R.java @@ -0,0 +1,211 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.graphics.drawable; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int keylines = 0x7f030106; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int statusBarBackground = 0x7f03016d; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int chronometer = 0x7f080029; + public static final int end = 0x7f08003c; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int start = 0x7f080098; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int top = 0x7f0800ae; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/interpolator/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/interpolator/R.java new file mode 100644 index 0000000000000000000000000000000000000000..7f0cd51655c6a0a300fd5dccc7e0d2eb4a83329c --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/interpolator/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.interpolator; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/loader/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/loader/R.java new file mode 100644 index 0000000000000000000000000000000000000000..94797d23d2a3eb0c53382a47b365b703cae1e9c7 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/loader/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.loader; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/localbroadcastmanager/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/localbroadcastmanager/R.java new file mode 100644 index 0000000000000000000000000000000000000000..c26078eecc3ef6567629356fbef0f540b4f501e9 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/localbroadcastmanager/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.localbroadcastmanager; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/mediacompat/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/mediacompat/R.java new file mode 100644 index 0000000000000000000000000000000000000000..70bfefcae24c1fd73ac21c4090a0cc6583a66ccf --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/mediacompat/R.java @@ -0,0 +1,210 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.mediacompat; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int notification_material_background_media_default_color = 0x7f05006c; + public static final int primary_text_default_material_dark = 0x7f050075; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_dark = 0x7f05007c; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + public static final int subtitle_corner_radius = 0x7f0600cf; + public static final int subtitle_outline_width = 0x7f0600d0; + public static final int subtitle_shadow_offset = 0x7f0600d1; + public static final int subtitle_shadow_radius = 0x7f0600d2; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action0 = 0x7f080006; + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int cancel_action = 0x7f080024; + public static final int chronometer = 0x7f080029; + public static final int end_padder = 0x7f08003d; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int media_actions = 0x7f08005c; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int status_bar_latest_event_content = 0x7f080099; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int cancel_button_image_alpha = 0x7f090004; + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_media_action = 0x7f0b002f; + public static final int notification_media_cancel_action = 0x7f0b0030; + public static final int notification_template_big_media = 0x7f0b0031; + public static final int notification_template_big_media_custom = 0x7f0b0032; + public static final int notification_template_big_media_narrow = 0x7f0b0033; + public static final int notification_template_big_media_narrow_custom = 0x7f0b0034; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_lines_media = 0x7f0b0037; + public static final int notification_template_media = 0x7f0b0038; + public static final int notification_template_media_custom = 0x7f0b0039; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Info_Media = 0x7f0e0118; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Line2_Media = 0x7f0e011a; + public static final int TextAppearance_Compat_Notification_Media = 0x7f0e011b; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Time_Media = 0x7f0e011d; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int TextAppearance_Compat_Notification_Title_Media = 0x7f0e011f; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/print/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/print/R.java new file mode 100644 index 0000000000000000000000000000000000000000..1162e7bb6bf7efa43875e8766845a1fad6fca215 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/print/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.print; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/slidingpanelayout/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/slidingpanelayout/R.java new file mode 100644 index 0000000000000000000000000000000000000000..fd53979c54670a27e4a99403789c8572df11887f --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/slidingpanelayout/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.slidingpanelayout; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/swiperefreshlayout/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/swiperefreshlayout/R.java new file mode 100644 index 0000000000000000000000000000000000000000..00911417832f5c86772eee9fa2095ae5ae877452 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/swiperefreshlayout/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.swiperefreshlayout; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/transition/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/transition/R.java new file mode 100644 index 0000000000000000000000000000000000000000..ac43e78244e93c705f993676276ee6d8a846b4a2 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/transition/R.java @@ -0,0 +1,193 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.transition; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int ghost_view = 0x7f080049; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int parent_matrix = 0x7f08006d; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int save_image_matrix = 0x7f080075; + public static final int save_non_transition_alpha = 0x7f080076; + public static final int save_scale_type = 0x7f080077; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int transition_current_scene = 0x7f0800b1; + public static final int transition_layout_save = 0x7f0800b2; + public static final int transition_position = 0x7f0800b3; + public static final int transition_scene_layoutid_cache = 0x7f0800b4; + public static final int transition_transform = 0x7f0800b5; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v4/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v4/R.java new file mode 100644 index 0000000000000000000000000000000000000000..48531fabd30e98b6761f1778220c1cc892c718f6 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v4/R.java @@ -0,0 +1,238 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v4; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int keylines = 0x7f030106; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int statusBarBackground = 0x7f03016d; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int notification_material_background_media_default_color = 0x7f05006c; + public static final int primary_text_default_material_dark = 0x7f050075; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_dark = 0x7f05007c; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + public static final int subtitle_corner_radius = 0x7f0600cf; + public static final int subtitle_outline_width = 0x7f0600d0; + public static final int subtitle_shadow_offset = 0x7f0600d1; + public static final int subtitle_shadow_radius = 0x7f0600d2; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action0 = 0x7f080006; + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int cancel_action = 0x7f080024; + public static final int chronometer = 0x7f080029; + public static final int end = 0x7f08003c; + public static final int end_padder = 0x7f08003d; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int media_actions = 0x7f08005c; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int start = 0x7f080098; + public static final int status_bar_latest_event_content = 0x7f080099; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int top = 0x7f0800ae; + } + public static final class integer { + private integer() {} + + public static final int cancel_button_image_alpha = 0x7f090004; + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_media_action = 0x7f0b002f; + public static final int notification_media_cancel_action = 0x7f0b0030; + public static final int notification_template_big_media = 0x7f0b0031; + public static final int notification_template_big_media_custom = 0x7f0b0032; + public static final int notification_template_big_media_narrow = 0x7f0b0033; + public static final int notification_template_big_media_narrow_custom = 0x7f0b0034; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_lines_media = 0x7f0b0037; + public static final int notification_template_media = 0x7f0b0038; + public static final int notification_template_media_custom = 0x7f0b0039; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Info_Media = 0x7f0e0118; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Line2_Media = 0x7f0e011a; + public static final int TextAppearance_Compat_Notification_Media = 0x7f0e011b; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Time_Media = 0x7f0e011d; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int TextAppearance_Compat_Notification_Title_Media = 0x7f0e011f; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/appcompat/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/appcompat/R.java new file mode 100644 index 0000000000000000000000000000000000000000..48373bbbdbbe1ec51dc57d9d43ee8cd0820e0427 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/appcompat/R.java @@ -0,0 +1,1637 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v7.appcompat; + +public final class R { + private R() {} + + public static final class anim { + private anim() {} + + public static final int abc_fade_in = 0x7f010000; + public static final int abc_fade_out = 0x7f010001; + public static final int abc_grow_fade_in_from_bottom = 0x7f010002; + public static final int abc_popup_enter = 0x7f010003; + public static final int abc_popup_exit = 0x7f010004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; + public static final int abc_slide_in_bottom = 0x7f010006; + public static final int abc_slide_in_top = 0x7f010007; + public static final int abc_slide_out_bottom = 0x7f010008; + public static final int abc_slide_out_top = 0x7f010009; + public static final int abc_tooltip_enter = 0x7f01000a; + public static final int abc_tooltip_exit = 0x7f01000b; + } + public static final class attr { + private attr() {} + + public static final int actionBarDivider = 0x7f030000; + public static final int actionBarItemBackground = 0x7f030001; + public static final int actionBarPopupTheme = 0x7f030002; + public static final int actionBarSize = 0x7f030003; + public static final int actionBarSplitStyle = 0x7f030004; + public static final int actionBarStyle = 0x7f030005; + public static final int actionBarTabBarStyle = 0x7f030006; + public static final int actionBarTabStyle = 0x7f030007; + public static final int actionBarTabTextStyle = 0x7f030008; + public static final int actionBarTheme = 0x7f030009; + public static final int actionBarWidgetTheme = 0x7f03000a; + public static final int actionButtonStyle = 0x7f03000b; + public static final int actionDropDownStyle = 0x7f03000c; + public static final int actionLayout = 0x7f03000d; + public static final int actionMenuTextAppearance = 0x7f03000e; + public static final int actionMenuTextColor = 0x7f03000f; + public static final int actionModeBackground = 0x7f030010; + public static final int actionModeCloseButtonStyle = 0x7f030011; + public static final int actionModeCloseDrawable = 0x7f030012; + public static final int actionModeCopyDrawable = 0x7f030013; + public static final int actionModeCutDrawable = 0x7f030014; + public static final int actionModeFindDrawable = 0x7f030015; + public static final int actionModePasteDrawable = 0x7f030016; + public static final int actionModePopupWindowStyle = 0x7f030017; + public static final int actionModeSelectAllDrawable = 0x7f030018; + public static final int actionModeShareDrawable = 0x7f030019; + public static final int actionModeSplitBackground = 0x7f03001a; + public static final int actionModeStyle = 0x7f03001b; + public static final int actionModeWebSearchDrawable = 0x7f03001c; + public static final int actionOverflowButtonStyle = 0x7f03001d; + public static final int actionOverflowMenuStyle = 0x7f03001e; + public static final int actionProviderClass = 0x7f03001f; + public static final int actionViewClass = 0x7f030020; + public static final int activityChooserViewStyle = 0x7f030021; + public static final int alertDialogButtonGroupStyle = 0x7f030022; + public static final int alertDialogCenterButtons = 0x7f030023; + public static final int alertDialogStyle = 0x7f030024; + public static final int alertDialogTheme = 0x7f030025; + public static final int allowStacking = 0x7f030026; + public static final int alpha = 0x7f030027; + public static final int alphabeticModifiers = 0x7f030028; + public static final int arrowHeadLength = 0x7f030029; + public static final int arrowShaftLength = 0x7f03002a; + public static final int autoCompleteTextViewStyle = 0x7f03002b; + public static final int autoSizeMaxTextSize = 0x7f03002c; + public static final int autoSizeMinTextSize = 0x7f03002d; + public static final int autoSizePresetSizes = 0x7f03002e; + public static final int autoSizeStepGranularity = 0x7f03002f; + public static final int autoSizeTextType = 0x7f030030; + public static final int background = 0x7f030031; + public static final int backgroundSplit = 0x7f030032; + public static final int backgroundStacked = 0x7f030033; + public static final int backgroundTint = 0x7f030034; + public static final int backgroundTintMode = 0x7f030035; + public static final int barLength = 0x7f030036; + public static final int borderlessButtonStyle = 0x7f03003e; + public static final int buttonBarButtonStyle = 0x7f03004c; + public static final int buttonBarNegativeButtonStyle = 0x7f03004d; + public static final int buttonBarNeutralButtonStyle = 0x7f03004e; + public static final int buttonBarPositiveButtonStyle = 0x7f03004f; + public static final int buttonBarStyle = 0x7f030050; + public static final int buttonGravity = 0x7f030051; + public static final int buttonIconDimen = 0x7f030052; + public static final int buttonPanelSideLayout = 0x7f030053; + public static final int buttonStyle = 0x7f030054; + public static final int buttonStyleSmall = 0x7f030055; + public static final int buttonTint = 0x7f030056; + public static final int buttonTintMode = 0x7f030057; + public static final int checkboxStyle = 0x7f03005f; + public static final int checkedTextViewStyle = 0x7f030064; + public static final int closeIcon = 0x7f030077; + public static final int closeItemLayout = 0x7f03007e; + public static final int collapseContentDescription = 0x7f03007f; + public static final int collapseIcon = 0x7f030080; + public static final int color = 0x7f030083; + public static final int colorAccent = 0x7f030084; + public static final int colorBackgroundFloating = 0x7f030085; + public static final int colorButtonNormal = 0x7f030086; + public static final int colorControlActivated = 0x7f030087; + public static final int colorControlHighlight = 0x7f030088; + public static final int colorControlNormal = 0x7f030089; + public static final int colorError = 0x7f03008a; + public static final int colorPrimary = 0x7f03008b; + public static final int colorPrimaryDark = 0x7f03008c; + public static final int colorSwitchThumbNormal = 0x7f03008e; + public static final int commitIcon = 0x7f03008f; + public static final int contentDescription = 0x7f030090; + public static final int contentInsetEnd = 0x7f030091; + public static final int contentInsetEndWithActions = 0x7f030092; + public static final int contentInsetLeft = 0x7f030093; + public static final int contentInsetRight = 0x7f030094; + public static final int contentInsetStart = 0x7f030095; + public static final int contentInsetStartWithNavigation = 0x7f030096; + public static final int controlBackground = 0x7f03009d; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int customNavigationLayout = 0x7f0300a4; + public static final int defaultQueryHint = 0x7f0300a5; + public static final int dialogCornerRadius = 0x7f0300a6; + public static final int dialogPreferredPadding = 0x7f0300a7; + public static final int dialogTheme = 0x7f0300a8; + public static final int displayOptions = 0x7f0300a9; + public static final int divider = 0x7f0300aa; + public static final int dividerHorizontal = 0x7f0300ab; + public static final int dividerPadding = 0x7f0300ac; + public static final int dividerVertical = 0x7f0300ad; + public static final int drawableSize = 0x7f0300ae; + public static final int drawerArrowStyle = 0x7f0300af; + public static final int dropDownListViewStyle = 0x7f0300b0; + public static final int dropdownListPreferredItemHeight = 0x7f0300b1; + public static final int editTextBackground = 0x7f0300b2; + public static final int editTextColor = 0x7f0300b3; + public static final int editTextStyle = 0x7f0300b4; + public static final int elevation = 0x7f0300b5; + public static final int expandActivityOverflowButtonDrawable = 0x7f0300ba; + public static final int firstBaselineToTopHeight = 0x7f0300ce; + public static final int font = 0x7f0300d0; + public static final int fontFamily = 0x7f0300d1; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int gapBetweenBars = 0x7f0300dc; + public static final int goIcon = 0x7f0300dd; + public static final int height = 0x7f0300df; + public static final int hideOnContentScroll = 0x7f0300e4; + public static final int homeAsUpIndicator = 0x7f0300e9; + public static final int homeLayout = 0x7f0300ea; + public static final int icon = 0x7f0300ec; + public static final int iconTint = 0x7f0300f2; + public static final int iconTintMode = 0x7f0300f3; + public static final int iconifiedByDefault = 0x7f0300f4; + public static final int imageButtonStyle = 0x7f0300f5; + public static final int indeterminateProgressStyle = 0x7f0300f6; + public static final int initialActivityCount = 0x7f0300f7; + public static final int isLightTheme = 0x7f0300f9; + public static final int itemPadding = 0x7f030100; + public static final int keylines = 0x7f030106; + public static final int lastBaselineToBottomHeight = 0x7f030108; + public static final int layout = 0x7f030109; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int lineHeight = 0x7f030116; + public static final int listChoiceBackgroundIndicator = 0x7f030118; + public static final int listDividerAlertDialog = 0x7f030119; + public static final int listItemLayout = 0x7f03011a; + public static final int listLayout = 0x7f03011b; + public static final int listMenuViewStyle = 0x7f03011c; + public static final int listPopupWindowStyle = 0x7f03011d; + public static final int listPreferredItemHeight = 0x7f03011e; + public static final int listPreferredItemHeightLarge = 0x7f03011f; + public static final int listPreferredItemHeightSmall = 0x7f030120; + public static final int listPreferredItemPaddingLeft = 0x7f030121; + public static final int listPreferredItemPaddingRight = 0x7f030122; + public static final int logo = 0x7f030123; + public static final int logoDescription = 0x7f030124; + public static final int maxButtonHeight = 0x7f030128; + public static final int measureWithLargestChild = 0x7f03012a; + public static final int multiChoiceItemLayout = 0x7f03012c; + public static final int navigationContentDescription = 0x7f03012d; + public static final int navigationIcon = 0x7f03012e; + public static final int navigationMode = 0x7f03012f; + public static final int numericModifiers = 0x7f030131; + public static final int overlapAnchor = 0x7f030132; + public static final int paddingBottomNoButtons = 0x7f030133; + public static final int paddingEnd = 0x7f030134; + public static final int paddingStart = 0x7f030135; + public static final int paddingTopNoTitle = 0x7f030136; + public static final int panelBackground = 0x7f030137; + public static final int panelMenuListTheme = 0x7f030138; + public static final int panelMenuListWidth = 0x7f030139; + public static final int popupMenuStyle = 0x7f03013f; + public static final int popupTheme = 0x7f030140; + public static final int popupWindowStyle = 0x7f030141; + public static final int preserveIconSpacing = 0x7f030142; + public static final int progressBarPadding = 0x7f030144; + public static final int progressBarStyle = 0x7f030145; + public static final int queryBackground = 0x7f030146; + public static final int queryHint = 0x7f030147; + public static final int radioButtonStyle = 0x7f030148; + public static final int ratingBarStyle = 0x7f030149; + public static final int ratingBarStyleIndicator = 0x7f03014a; + public static final int ratingBarStyleSmall = 0x7f03014b; + public static final int searchHintIcon = 0x7f030151; + public static final int searchIcon = 0x7f030152; + public static final int searchViewStyle = 0x7f030153; + public static final int seekBarStyle = 0x7f030154; + public static final int selectableItemBackground = 0x7f030155; + public static final int selectableItemBackgroundBorderless = 0x7f030156; + public static final int showAsAction = 0x7f030157; + public static final int showDividers = 0x7f030158; + public static final int showText = 0x7f03015a; + public static final int showTitle = 0x7f03015b; + public static final int singleChoiceItemLayout = 0x7f03015c; + public static final int spinBars = 0x7f030162; + public static final int spinnerDropDownItemStyle = 0x7f030163; + public static final int spinnerStyle = 0x7f030164; + public static final int splitTrack = 0x7f030165; + public static final int srcCompat = 0x7f030166; + public static final int state_above_anchor = 0x7f030168; + public static final int statusBarBackground = 0x7f03016d; + public static final int subMenuArrow = 0x7f030171; + public static final int submitBackground = 0x7f030172; + public static final int subtitle = 0x7f030173; + public static final int subtitleTextAppearance = 0x7f030174; + public static final int subtitleTextColor = 0x7f030175; + public static final int subtitleTextStyle = 0x7f030176; + public static final int suggestionRowLayout = 0x7f030177; + public static final int switchMinWidth = 0x7f030178; + public static final int switchPadding = 0x7f030179; + public static final int switchStyle = 0x7f03017a; + public static final int switchTextAppearance = 0x7f03017b; + public static final int textAllCaps = 0x7f030196; + public static final int textAppearanceLargePopupMenu = 0x7f0301a1; + public static final int textAppearanceListItem = 0x7f0301a2; + public static final int textAppearanceListItemSecondary = 0x7f0301a3; + public static final int textAppearanceListItemSmall = 0x7f0301a4; + public static final int textAppearancePopupMenuHeader = 0x7f0301a6; + public static final int textAppearanceSearchResultSubtitle = 0x7f0301a7; + public static final int textAppearanceSearchResultTitle = 0x7f0301a8; + public static final int textAppearanceSmallPopupMenu = 0x7f0301a9; + public static final int textColorAlertDialogListItem = 0x7f0301ac; + public static final int textColorSearchUrl = 0x7f0301ad; + public static final int theme = 0x7f0301b1; + public static final int thickness = 0x7f0301b2; + public static final int thumbTextPadding = 0x7f0301b3; + public static final int thumbTint = 0x7f0301b4; + public static final int thumbTintMode = 0x7f0301b5; + public static final int tickMark = 0x7f0301b6; + public static final int tickMarkTint = 0x7f0301b7; + public static final int tickMarkTintMode = 0x7f0301b8; + public static final int tint = 0x7f0301b9; + public static final int tintMode = 0x7f0301ba; + public static final int title = 0x7f0301bb; + public static final int titleMargin = 0x7f0301bd; + public static final int titleMarginBottom = 0x7f0301be; + public static final int titleMarginEnd = 0x7f0301bf; + public static final int titleMarginStart = 0x7f0301c0; + public static final int titleMarginTop = 0x7f0301c1; + public static final int titleMargins = 0x7f0301c2; + public static final int titleTextAppearance = 0x7f0301c3; + public static final int titleTextColor = 0x7f0301c4; + public static final int titleTextStyle = 0x7f0301c5; + public static final int toolbarNavigationButtonStyle = 0x7f0301c7; + public static final int toolbarStyle = 0x7f0301c8; + public static final int tooltipForegroundColor = 0x7f0301c9; + public static final int tooltipFrameBackground = 0x7f0301ca; + public static final int tooltipText = 0x7f0301cb; + public static final int track = 0x7f0301cc; + public static final int trackTint = 0x7f0301cd; + public static final int trackTintMode = 0x7f0301ce; + public static final int ttcIndex = 0x7f0301cf; + public static final int viewInflaterClass = 0x7f0301d1; + public static final int voiceIcon = 0x7f0301d2; + public static final int windowActionBar = 0x7f0301d3; + public static final int windowActionBarOverlay = 0x7f0301d4; + public static final int windowActionModeOverlay = 0x7f0301d5; + public static final int windowFixedHeightMajor = 0x7f0301d6; + public static final int windowFixedHeightMinor = 0x7f0301d7; + public static final int windowFixedWidthMajor = 0x7f0301d8; + public static final int windowFixedWidthMinor = 0x7f0301d9; + public static final int windowMinWidthMajor = 0x7f0301da; + public static final int windowMinWidthMinor = 0x7f0301db; + public static final int windowNoTitle = 0x7f0301dc; + } + public static final class bool { + private bool() {} + + public static final int abc_action_bar_embed_tabs = 0x7f040000; + public static final int abc_allow_stacked_button_bar = 0x7f040001; + public static final int abc_config_actionMenuItemAllCaps = 0x7f040002; + } + public static final class color { + private color() {} + + public static final int abc_background_cache_hint_selector_material_dark = 0x7f050000; + public static final int abc_background_cache_hint_selector_material_light = 0x7f050001; + public static final int abc_btn_colored_borderless_text_material = 0x7f050002; + public static final int abc_btn_colored_text_material = 0x7f050003; + public static final int abc_color_highlight_material = 0x7f050004; + public static final int abc_hint_foreground_material_dark = 0x7f050005; + public static final int abc_hint_foreground_material_light = 0x7f050006; + public static final int abc_input_method_navigation_guard = 0x7f050007; + public static final int abc_primary_text_disable_only_material_dark = 0x7f050008; + public static final int abc_primary_text_disable_only_material_light = 0x7f050009; + public static final int abc_primary_text_material_dark = 0x7f05000a; + public static final int abc_primary_text_material_light = 0x7f05000b; + public static final int abc_search_url_text = 0x7f05000c; + public static final int abc_search_url_text_normal = 0x7f05000d; + public static final int abc_search_url_text_pressed = 0x7f05000e; + public static final int abc_search_url_text_selected = 0x7f05000f; + public static final int abc_secondary_text_material_dark = 0x7f050010; + public static final int abc_secondary_text_material_light = 0x7f050011; + public static final int abc_tint_btn_checkable = 0x7f050012; + public static final int abc_tint_default = 0x7f050013; + public static final int abc_tint_edittext = 0x7f050014; + public static final int abc_tint_seek_thumb = 0x7f050015; + public static final int abc_tint_spinner = 0x7f050016; + public static final int abc_tint_switch_track = 0x7f050017; + public static final int accent_material_dark = 0x7f050019; + public static final int accent_material_light = 0x7f05001a; + public static final int background_floating_material_dark = 0x7f05001b; + public static final int background_floating_material_light = 0x7f05001c; + public static final int background_material_dark = 0x7f05001d; + public static final int background_material_light = 0x7f05001e; + public static final int bright_foreground_disabled_material_dark = 0x7f05001f; + public static final int bright_foreground_disabled_material_light = 0x7f050020; + public static final int bright_foreground_inverse_material_dark = 0x7f050021; + public static final int bright_foreground_inverse_material_light = 0x7f050022; + public static final int bright_foreground_material_dark = 0x7f050023; + public static final int bright_foreground_material_light = 0x7f050024; + public static final int button_material_dark = 0x7f050025; + public static final int button_material_light = 0x7f050026; + public static final int dim_foreground_disabled_material_dark = 0x7f050038; + public static final int dim_foreground_disabled_material_light = 0x7f050039; + public static final int dim_foreground_material_dark = 0x7f05003a; + public static final int dim_foreground_material_light = 0x7f05003b; + public static final int error_color_material_dark = 0x7f05003d; + public static final int error_color_material_light = 0x7f05003e; + public static final int foreground_material_dark = 0x7f05003f; + public static final int foreground_material_light = 0x7f050040; + public static final int highlighted_text_material_dark = 0x7f050041; + public static final int highlighted_text_material_light = 0x7f050042; + public static final int material_blue_grey_800 = 0x7f050044; + public static final int material_blue_grey_900 = 0x7f050045; + public static final int material_blue_grey_950 = 0x7f050046; + public static final int material_deep_teal_200 = 0x7f050047; + public static final int material_deep_teal_500 = 0x7f050048; + public static final int material_grey_100 = 0x7f050049; + public static final int material_grey_300 = 0x7f05004a; + public static final int material_grey_50 = 0x7f05004b; + public static final int material_grey_600 = 0x7f05004c; + public static final int material_grey_800 = 0x7f05004d; + public static final int material_grey_850 = 0x7f05004e; + public static final int material_grey_900 = 0x7f05004f; + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int primary_dark_material_dark = 0x7f05006f; + public static final int primary_dark_material_light = 0x7f050070; + public static final int primary_material_dark = 0x7f050072; + public static final int primary_material_light = 0x7f050073; + public static final int primary_text_default_material_dark = 0x7f050075; + public static final int primary_text_default_material_light = 0x7f050076; + public static final int primary_text_disabled_material_dark = 0x7f050077; + public static final int primary_text_disabled_material_light = 0x7f050078; + public static final int ripple_material_dark = 0x7f050079; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_dark = 0x7f05007c; + public static final int secondary_text_default_material_light = 0x7f05007d; + public static final int secondary_text_disabled_material_dark = 0x7f05007e; + public static final int secondary_text_disabled_material_light = 0x7f05007f; + public static final int switch_thumb_disabled_material_dark = 0x7f050080; + public static final int switch_thumb_disabled_material_light = 0x7f050081; + public static final int switch_thumb_material_dark = 0x7f050082; + public static final int switch_thumb_material_light = 0x7f050083; + public static final int switch_thumb_normal_material_dark = 0x7f050084; + public static final int switch_thumb_normal_material_light = 0x7f050085; + public static final int tooltip_background_dark = 0x7f050086; + public static final int tooltip_background_light = 0x7f050087; + } + public static final class dimen { + private dimen() {} + + public static final int abc_action_bar_content_inset_material = 0x7f060000; + public static final int abc_action_bar_content_inset_with_nav = 0x7f060001; + public static final int abc_action_bar_default_height_material = 0x7f060002; + public static final int abc_action_bar_default_padding_end_material = 0x7f060003; + public static final int abc_action_bar_default_padding_start_material = 0x7f060004; + public static final int abc_action_bar_elevation_material = 0x7f060005; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f060006; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f060007; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f060008; + public static final int abc_action_bar_stacked_max_height = 0x7f060009; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f06000a; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f06000b; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f06000c; + public static final int abc_action_button_min_height_material = 0x7f06000d; + public static final int abc_action_button_min_width_material = 0x7f06000e; + public static final int abc_action_button_min_width_overflow_material = 0x7f06000f; + public static final int abc_alert_dialog_button_bar_height = 0x7f060010; + public static final int abc_alert_dialog_button_dimen = 0x7f060011; + public static final int abc_button_inset_horizontal_material = 0x7f060012; + public static final int abc_button_inset_vertical_material = 0x7f060013; + public static final int abc_button_padding_horizontal_material = 0x7f060014; + public static final int abc_button_padding_vertical_material = 0x7f060015; + public static final int abc_cascading_menus_min_smallest_width = 0x7f060016; + public static final int abc_config_prefDialogWidth = 0x7f060017; + public static final int abc_control_corner_material = 0x7f060018; + public static final int abc_control_inset_material = 0x7f060019; + public static final int abc_control_padding_material = 0x7f06001a; + public static final int abc_dialog_corner_radius_material = 0x7f06001b; + public static final int abc_dialog_fixed_height_major = 0x7f06001c; + public static final int abc_dialog_fixed_height_minor = 0x7f06001d; + public static final int abc_dialog_fixed_width_major = 0x7f06001e; + public static final int abc_dialog_fixed_width_minor = 0x7f06001f; + public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f060020; + public static final int abc_dialog_list_padding_top_no_title = 0x7f060021; + public static final int abc_dialog_min_width_major = 0x7f060022; + public static final int abc_dialog_min_width_minor = 0x7f060023; + public static final int abc_dialog_padding_material = 0x7f060024; + public static final int abc_dialog_padding_top_material = 0x7f060025; + public static final int abc_dialog_title_divider_material = 0x7f060026; + public static final int abc_disabled_alpha_material_dark = 0x7f060027; + public static final int abc_disabled_alpha_material_light = 0x7f060028; + public static final int abc_dropdownitem_icon_width = 0x7f060029; + public static final int abc_dropdownitem_text_padding_left = 0x7f06002a; + public static final int abc_dropdownitem_text_padding_right = 0x7f06002b; + public static final int abc_edit_text_inset_bottom_material = 0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material = 0x7f06002d; + public static final int abc_edit_text_inset_top_material = 0x7f06002e; + public static final int abc_floating_window_z = 0x7f06002f; + public static final int abc_list_item_padding_horizontal_material = 0x7f060030; + public static final int abc_panel_menu_list_width = 0x7f060031; + public static final int abc_progress_bar_height_material = 0x7f060032; + public static final int abc_search_view_preferred_height = 0x7f060033; + public static final int abc_search_view_preferred_width = 0x7f060034; + public static final int abc_seekbar_track_background_height_material = 0x7f060035; + public static final int abc_seekbar_track_progress_height_material = 0x7f060036; + public static final int abc_select_dialog_padding_start_material = 0x7f060037; + public static final int abc_switch_padding = 0x7f060038; + public static final int abc_text_size_body_1_material = 0x7f060039; + public static final int abc_text_size_body_2_material = 0x7f06003a; + public static final int abc_text_size_button_material = 0x7f06003b; + public static final int abc_text_size_caption_material = 0x7f06003c; + public static final int abc_text_size_display_1_material = 0x7f06003d; + public static final int abc_text_size_display_2_material = 0x7f06003e; + public static final int abc_text_size_display_3_material = 0x7f06003f; + public static final int abc_text_size_display_4_material = 0x7f060040; + public static final int abc_text_size_headline_material = 0x7f060041; + public static final int abc_text_size_large_material = 0x7f060042; + public static final int abc_text_size_medium_material = 0x7f060043; + public static final int abc_text_size_menu_header_material = 0x7f060044; + public static final int abc_text_size_menu_material = 0x7f060045; + public static final int abc_text_size_small_material = 0x7f060046; + public static final int abc_text_size_subhead_material = 0x7f060047; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f060048; + public static final int abc_text_size_title_material = 0x7f060049; + public static final int abc_text_size_title_material_toolbar = 0x7f06004a; + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int disabled_alpha_material_dark = 0x7f060081; + public static final int disabled_alpha_material_light = 0x7f060082; + public static final int highlight_alpha_material_colored = 0x7f060086; + public static final int highlight_alpha_material_dark = 0x7f060087; + public static final int highlight_alpha_material_light = 0x7f060088; + public static final int hint_alpha_material_dark = 0x7f060089; + public static final int hint_alpha_material_light = 0x7f06008a; + public static final int hint_pressed_alpha_material_dark = 0x7f06008b; + public static final int hint_pressed_alpha_material_light = 0x7f06008c; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + public static final int tooltip_corner_radius = 0x7f0600d3; + public static final int tooltip_horizontal_padding = 0x7f0600d4; + public static final int tooltip_margin = 0x7f0600d5; + public static final int tooltip_precise_anchor_extra_offset = 0x7f0600d6; + public static final int tooltip_precise_anchor_threshold = 0x7f0600d7; + public static final int tooltip_vertical_padding = 0x7f0600d8; + public static final int tooltip_y_offset_non_touch = 0x7f0600d9; + public static final int tooltip_y_offset_touch = 0x7f0600da; + } + public static final class drawable { + private drawable() {} + + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f070006; + public static final int abc_action_bar_item_background_material = 0x7f070007; + public static final int abc_btn_borderless_material = 0x7f070008; + public static final int abc_btn_check_material = 0x7f070009; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f07000a; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f07000b; + public static final int abc_btn_colored_material = 0x7f07000c; + public static final int abc_btn_default_mtrl_shape = 0x7f07000d; + public static final int abc_btn_radio_material = 0x7f07000e; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f07000f; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f070010; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f070011; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f070012; + public static final int abc_cab_background_internal_bg = 0x7f070013; + public static final int abc_cab_background_top_material = 0x7f070014; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f070015; + public static final int abc_control_background_material = 0x7f070016; + public static final int abc_dialog_material_background = 0x7f070017; + public static final int abc_edit_text_material = 0x7f070018; + public static final int abc_ic_ab_back_material = 0x7f070019; + public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f07001a; + public static final int abc_ic_clear_material = 0x7f07001b; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f07001c; + public static final int abc_ic_go_search_api_material = 0x7f07001d; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f07001e; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f07001f; + public static final int abc_ic_menu_overflow_material = 0x7f070020; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f070021; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f070022; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f070023; + public static final int abc_ic_search_api_material = 0x7f070024; + public static final int abc_ic_star_black_16dp = 0x7f070025; + public static final int abc_ic_star_black_36dp = 0x7f070026; + public static final int abc_ic_star_black_48dp = 0x7f070027; + public static final int abc_ic_star_half_black_16dp = 0x7f070028; + public static final int abc_ic_star_half_black_36dp = 0x7f070029; + public static final int abc_ic_star_half_black_48dp = 0x7f07002a; + public static final int abc_ic_voice_search_api_material = 0x7f07002b; + public static final int abc_item_background_holo_dark = 0x7f07002c; + public static final int abc_item_background_holo_light = 0x7f07002d; + public static final int abc_list_divider_material = 0x7f07002e; + public static final int abc_list_divider_mtrl_alpha = 0x7f07002f; + public static final int abc_list_focused_holo = 0x7f070030; + public static final int abc_list_longpressed_holo = 0x7f070031; + public static final int abc_list_pressed_holo_dark = 0x7f070032; + public static final int abc_list_pressed_holo_light = 0x7f070033; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f070034; + public static final int abc_list_selector_background_transition_holo_light = 0x7f070035; + public static final int abc_list_selector_disabled_holo_dark = 0x7f070036; + public static final int abc_list_selector_disabled_holo_light = 0x7f070037; + public static final int abc_list_selector_holo_dark = 0x7f070038; + public static final int abc_list_selector_holo_light = 0x7f070039; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f07003a; + public static final int abc_popup_background_mtrl_mult = 0x7f07003b; + public static final int abc_ratingbar_indicator_material = 0x7f07003c; + public static final int abc_ratingbar_material = 0x7f07003d; + public static final int abc_ratingbar_small_material = 0x7f07003e; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f07003f; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f070040; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f070041; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f070042; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f070043; + public static final int abc_seekbar_thumb_material = 0x7f070044; + public static final int abc_seekbar_tick_mark_material = 0x7f070045; + public static final int abc_seekbar_track_material = 0x7f070046; + public static final int abc_spinner_mtrl_am_alpha = 0x7f070047; + public static final int abc_spinner_textfield_background_material = 0x7f070048; + public static final int abc_switch_thumb_material = 0x7f070049; + public static final int abc_switch_track_mtrl_alpha = 0x7f07004a; + public static final int abc_tab_indicator_material = 0x7f07004b; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f07004c; + public static final int abc_text_cursor_material = 0x7f07004d; + public static final int abc_text_select_handle_left_mtrl_dark = 0x7f07004e; + public static final int abc_text_select_handle_left_mtrl_light = 0x7f07004f; + public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f070050; + public static final int abc_text_select_handle_middle_mtrl_light = 0x7f070051; + public static final int abc_text_select_handle_right_mtrl_dark = 0x7f070052; + public static final int abc_text_select_handle_right_mtrl_light = 0x7f070053; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f070054; + public static final int abc_textfield_default_mtrl_alpha = 0x7f070055; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f070056; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f070057; + public static final int abc_textfield_search_material = 0x7f070058; + public static final int abc_vector_test = 0x7f070059; + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + public static final int tooltip_frame_dark = 0x7f070086; + public static final int tooltip_frame_light = 0x7f070087; + } + public static final class id { + private id() {} + + public static final int action_bar = 0x7f080007; + public static final int action_bar_activity_content = 0x7f080008; + public static final int action_bar_container = 0x7f080009; + public static final int action_bar_root = 0x7f08000a; + public static final int action_bar_spinner = 0x7f08000b; + public static final int action_bar_subtitle = 0x7f08000c; + public static final int action_bar_title = 0x7f08000d; + public static final int action_container = 0x7f08000e; + public static final int action_context_bar = 0x7f08000f; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_menu_divider = 0x7f080012; + public static final int action_menu_presenter = 0x7f080013; + public static final int action_mode_bar = 0x7f080014; + public static final int action_mode_bar_stub = 0x7f080015; + public static final int action_mode_close_button = 0x7f080016; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int activity_chooser_view_content = 0x7f080019; + public static final int add = 0x7f08001a; + public static final int alertTitle = 0x7f08001b; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int buttonPanel = 0x7f080023; + public static final int checkbox = 0x7f080028; + public static final int chronometer = 0x7f080029; + public static final int content = 0x7f08002e; + public static final int contentPanel = 0x7f08002f; + public static final int custom = 0x7f080031; + public static final int customPanel = 0x7f080032; + public static final int decor_content_parent = 0x7f080033; + public static final int default_activity_button = 0x7f080034; + public static final int edit_query = 0x7f08003b; + public static final int end = 0x7f08003c; + public static final int expand_activities_button = 0x7f080041; + public static final int expanded_menu = 0x7f080042; + public static final int forever = 0x7f080048; + public static final int group_divider = 0x7f08004a; + public static final int home = 0x7f08004b; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int image = 0x7f080050; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int listMode = 0x7f080059; + public static final int list_item = 0x7f08005a; + public static final int message = 0x7f08005d; + public static final int multiply = 0x7f080062; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int parentPanel = 0x7f08006c; + public static final int progress_circular = 0x7f08006f; + public static final int progress_horizontal = 0x7f080070; + public static final int radio = 0x7f080071; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int screen = 0x7f080078; + public static final int scrollIndicatorDown = 0x7f08007a; + public static final int scrollIndicatorUp = 0x7f08007b; + public static final int scrollView = 0x7f08007c; + public static final int search_badge = 0x7f08007e; + public static final int search_bar = 0x7f08007f; + public static final int search_button = 0x7f080080; + public static final int search_close_btn = 0x7f080081; + public static final int search_edit_frame = 0x7f080082; + public static final int search_go_btn = 0x7f080083; + public static final int search_mag_icon = 0x7f080084; + public static final int search_plate = 0x7f080085; + public static final int search_src_text = 0x7f080086; + public static final int search_voice_btn = 0x7f080087; + public static final int select_dialog_listview = 0x7f080088; + public static final int shortcut = 0x7f08008a; + public static final int spacer = 0x7f080093; + public static final int split_action_bar = 0x7f080094; + public static final int src_atop = 0x7f080095; + public static final int src_in = 0x7f080096; + public static final int src_over = 0x7f080097; + public static final int start = 0x7f080098; + public static final int submenuarrow = 0x7f08009b; + public static final int submit_area = 0x7f08009c; + public static final int tabMode = 0x7f08009d; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int textSpacerNoButtons = 0x7f0800a3; + public static final int textSpacerNoTitle = 0x7f0800a4; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int titleDividerNoCustom = 0x7f0800ac; + public static final int title_template = 0x7f0800ad; + public static final int top = 0x7f0800ae; + public static final int topPanel = 0x7f0800af; + public static final int uniform = 0x7f0800b6; + public static final int up = 0x7f0800b8; + public static final int wrap_content = 0x7f0800bd; + } + public static final class integer { + private integer() {} + + public static final int abc_config_activityDefaultDur = 0x7f090000; + public static final int abc_config_activityShortDur = 0x7f090001; + public static final int cancel_button_image_alpha = 0x7f090004; + public static final int config_tooltipAnimTime = 0x7f090005; + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int abc_action_bar_title_item = 0x7f0b0000; + public static final int abc_action_bar_up_container = 0x7f0b0001; + public static final int abc_action_menu_item_layout = 0x7f0b0002; + public static final int abc_action_menu_layout = 0x7f0b0003; + public static final int abc_action_mode_bar = 0x7f0b0004; + public static final int abc_action_mode_close_item_material = 0x7f0b0005; + public static final int abc_activity_chooser_view = 0x7f0b0006; + public static final int abc_activity_chooser_view_list_item = 0x7f0b0007; + public static final int abc_alert_dialog_button_bar_material = 0x7f0b0008; + public static final int abc_alert_dialog_material = 0x7f0b0009; + public static final int abc_alert_dialog_title_material = 0x7f0b000a; + public static final int abc_cascading_menu_item_layout = 0x7f0b000b; + public static final int abc_dialog_title_material = 0x7f0b000c; + public static final int abc_expanded_menu_layout = 0x7f0b000d; + public static final int abc_list_menu_item_checkbox = 0x7f0b000e; + public static final int abc_list_menu_item_icon = 0x7f0b000f; + public static final int abc_list_menu_item_layout = 0x7f0b0010; + public static final int abc_list_menu_item_radio = 0x7f0b0011; + public static final int abc_popup_menu_header_item_layout = 0x7f0b0012; + public static final int abc_popup_menu_item_layout = 0x7f0b0013; + public static final int abc_screen_content_include = 0x7f0b0014; + public static final int abc_screen_simple = 0x7f0b0015; + public static final int abc_screen_simple_overlay_action_mode = 0x7f0b0016; + public static final int abc_screen_toolbar = 0x7f0b0017; + public static final int abc_search_dropdown_item_icons_2line = 0x7f0b0018; + public static final int abc_search_view = 0x7f0b0019; + public static final int abc_select_dialog_material = 0x7f0b001a; + public static final int abc_tooltip = 0x7f0b001b; + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + public static final int select_dialog_item_material = 0x7f0b003c; + public static final int select_dialog_multichoice_material = 0x7f0b003d; + public static final int select_dialog_singlechoice_material = 0x7f0b003e; + public static final int support_simple_spinner_dropdown_item = 0x7f0b003f; + } + public static final class string { + private string() {} + + public static final int abc_action_bar_home_description = 0x7f0d0000; + public static final int abc_action_bar_up_description = 0x7f0d0001; + public static final int abc_action_menu_overflow_description = 0x7f0d0002; + public static final int abc_action_mode_done = 0x7f0d0003; + public static final int abc_activity_chooser_view_see_all = 0x7f0d0004; + public static final int abc_activitychooserview_choose_application = 0x7f0d0005; + public static final int abc_capital_off = 0x7f0d0006; + public static final int abc_capital_on = 0x7f0d0007; + public static final int abc_font_family_body_1_material = 0x7f0d0008; + public static final int abc_font_family_body_2_material = 0x7f0d0009; + public static final int abc_font_family_button_material = 0x7f0d000a; + public static final int abc_font_family_caption_material = 0x7f0d000b; + public static final int abc_font_family_display_1_material = 0x7f0d000c; + public static final int abc_font_family_display_2_material = 0x7f0d000d; + public static final int abc_font_family_display_3_material = 0x7f0d000e; + public static final int abc_font_family_display_4_material = 0x7f0d000f; + public static final int abc_font_family_headline_material = 0x7f0d0010; + public static final int abc_font_family_menu_material = 0x7f0d0011; + public static final int abc_font_family_subhead_material = 0x7f0d0012; + public static final int abc_font_family_title_material = 0x7f0d0013; + public static final int abc_menu_alt_shortcut_label = 0x7f0d0014; + public static final int abc_menu_ctrl_shortcut_label = 0x7f0d0015; + public static final int abc_menu_delete_shortcut_label = 0x7f0d0016; + public static final int abc_menu_enter_shortcut_label = 0x7f0d0017; + public static final int abc_menu_function_shortcut_label = 0x7f0d0018; + public static final int abc_menu_meta_shortcut_label = 0x7f0d0019; + public static final int abc_menu_shift_shortcut_label = 0x7f0d001a; + public static final int abc_menu_space_shortcut_label = 0x7f0d001b; + public static final int abc_menu_sym_shortcut_label = 0x7f0d001c; + public static final int abc_prepend_shortcut_label = 0x7f0d001d; + public static final int abc_search_hint = 0x7f0d001e; + public static final int abc_searchview_description_clear = 0x7f0d001f; + public static final int abc_searchview_description_query = 0x7f0d0020; + public static final int abc_searchview_description_search = 0x7f0d0021; + public static final int abc_searchview_description_submit = 0x7f0d0022; + public static final int abc_searchview_description_voice = 0x7f0d0023; + public static final int abc_shareactionprovider_share_with = 0x7f0d0024; + public static final int abc_shareactionprovider_share_with_application = 0x7f0d0025; + public static final int abc_toolbar_collapse_description = 0x7f0d0026; + public static final int search_menu_title = 0x7f0d0036; + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int AlertDialog_AppCompat = 0x7f0e0000; + public static final int AlertDialog_AppCompat_Light = 0x7f0e0001; + public static final int Animation_AppCompat_Dialog = 0x7f0e0002; + public static final int Animation_AppCompat_DropDownUp = 0x7f0e0003; + public static final int Animation_AppCompat_Tooltip = 0x7f0e0004; + public static final int Base_AlertDialog_AppCompat = 0x7f0e0008; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f0e0009; + public static final int Base_Animation_AppCompat_Dialog = 0x7f0e000a; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0e000b; + public static final int Base_Animation_AppCompat_Tooltip = 0x7f0e000c; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0e000f; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f0e000e; + public static final int Base_TextAppearance_AppCompat = 0x7f0e0010; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0e0011; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0e0012; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f0e0013; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0e0014; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0e0015; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0e0016; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0e0017; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0e0018; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0e0019; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0e001a; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f0e001b; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0e001c; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0e001d; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0e001e; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0e001f; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0e0020; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0e0021; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0e0022; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0e0023; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0e0024; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f0e0025; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0e0026; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0e0027; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0e0028; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f0e0029; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0e002a; + public static final int Base_TextAppearance_AppCompat_Tooltip = 0x7f0e002b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0e002c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0e002d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0e002e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0e002f; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0e0030; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0e0031; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0e0032; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0e0033; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0e0034; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0e0035; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0e0036; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0e0037; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0e0038; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0e0039; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0e003a; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0e003b; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0e003c; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0e003d; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0e003e; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0e003f; + public static final int Base_ThemeOverlay_AppCompat = 0x7f0e005f; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0e0060; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0e0061; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0e0062; + public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f0e0063; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0e0064; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0e0065; + public static final int Base_Theme_AppCompat = 0x7f0e0040; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0e0041; + public static final int Base_Theme_AppCompat_Dialog = 0x7f0e0042; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0e0046; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0e0043; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0e0044; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0e0045; + public static final int Base_Theme_AppCompat_Light = 0x7f0e0047; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0e0048; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0e0049; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0e004d; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0e004a; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0e004b; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0e004c; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f0e0075; + public static final int Base_V21_Theme_AppCompat = 0x7f0e0071; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0e0072; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f0e0073; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0e0074; + public static final int Base_V22_Theme_AppCompat = 0x7f0e0076; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f0e0077; + public static final int Base_V23_Theme_AppCompat = 0x7f0e0078; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f0e0079; + public static final int Base_V26_Theme_AppCompat = 0x7f0e007a; + public static final int Base_V26_Theme_AppCompat_Light = 0x7f0e007b; + public static final int Base_V26_Widget_AppCompat_Toolbar = 0x7f0e007c; + public static final int Base_V28_Theme_AppCompat = 0x7f0e007d; + public static final int Base_V28_Theme_AppCompat_Light = 0x7f0e007e; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f0e0083; + public static final int Base_V7_Theme_AppCompat = 0x7f0e007f; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0e0080; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f0e0081; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0e0082; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0e0084; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0e0085; + public static final int Base_V7_Widget_AppCompat_Toolbar = 0x7f0e0086; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f0e0087; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0e0088; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0e0089; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0e008a; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0e008b; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f0e008c; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0e008d; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0e008e; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f0e008f; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0e0090; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0e0091; + public static final int Base_Widget_AppCompat_Button = 0x7f0e0092; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0e0098; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0e0099; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0e0093; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0e0094; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0e0095; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0e0096; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f0e0097; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0e009a; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0e009b; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0e009c; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0e009d; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0e009e; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0e009f; + public static final int Base_Widget_AppCompat_EditText = 0x7f0e00a0; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f0e00a1; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0e00a2; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0e00a3; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0e00a4; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0e00a5; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0e00a6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0e00a7; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0e00a8; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0e00a9; + public static final int Base_Widget_AppCompat_ListMenuView = 0x7f0e00aa; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0e00ab; + public static final int Base_Widget_AppCompat_ListView = 0x7f0e00ac; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0e00ad; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0e00ae; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0e00af; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0e00b0; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0e00b1; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0e00b2; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0e00b3; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f0e00b4; + public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0e00b5; + public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0e00b6; + public static final int Base_Widget_AppCompat_SearchView = 0x7f0e00b7; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0e00b8; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f0e00b9; + public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f0e00ba; + public static final int Base_Widget_AppCompat_Spinner = 0x7f0e00bb; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0e00bc; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0e00bd; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f0e00be; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0e00bf; + public static final int Platform_AppCompat = 0x7f0e00c7; + public static final int Platform_AppCompat_Light = 0x7f0e00c8; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f0e00cd; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0e00ce; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0e00cf; + public static final int Platform_V21_AppCompat = 0x7f0e00d0; + public static final int Platform_V21_AppCompat_Light = 0x7f0e00d1; + public static final int Platform_V25_AppCompat = 0x7f0e00d2; + public static final int Platform_V25_AppCompat_Light = 0x7f0e00d3; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f0e00d4; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0e00d5; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0e00d6; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0e00d7; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0e00d8; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0e00d9; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 0x7f0e00da; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 0x7f0e00db; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0e00dc; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 0x7f0e00dd; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0e00e3; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0e00de; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0e00df; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0e00e0; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0e00e1; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0e00e2; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0e00e4; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0e00e5; + public static final int TextAppearance_AppCompat = 0x7f0e00e6; + public static final int TextAppearance_AppCompat_Body1 = 0x7f0e00e7; + public static final int TextAppearance_AppCompat_Body2 = 0x7f0e00e8; + public static final int TextAppearance_AppCompat_Button = 0x7f0e00e9; + public static final int TextAppearance_AppCompat_Caption = 0x7f0e00ea; + public static final int TextAppearance_AppCompat_Display1 = 0x7f0e00eb; + public static final int TextAppearance_AppCompat_Display2 = 0x7f0e00ec; + public static final int TextAppearance_AppCompat_Display3 = 0x7f0e00ed; + public static final int TextAppearance_AppCompat_Display4 = 0x7f0e00ee; + public static final int TextAppearance_AppCompat_Headline = 0x7f0e00ef; + public static final int TextAppearance_AppCompat_Inverse = 0x7f0e00f0; + public static final int TextAppearance_AppCompat_Large = 0x7f0e00f1; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0e00f2; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0e00f3; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0e00f4; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0e00f5; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0e00f6; + public static final int TextAppearance_AppCompat_Medium = 0x7f0e00f7; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0e00f8; + public static final int TextAppearance_AppCompat_Menu = 0x7f0e00f9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0e00fa; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0e00fb; + public static final int TextAppearance_AppCompat_Small = 0x7f0e00fc; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0e00fd; + public static final int TextAppearance_AppCompat_Subhead = 0x7f0e00fe; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0e00ff; + public static final int TextAppearance_AppCompat_Title = 0x7f0e0100; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0e0101; + public static final int TextAppearance_AppCompat_Tooltip = 0x7f0e0102; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0e0103; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0e0104; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0e0105; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0e0106; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0e0107; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0e0108; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0e0109; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0e010a; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0e010b; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0e010c; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0e010d; + public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0e010e; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0e010f; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0e0110; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0e0111; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0e0112; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0e0113; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0e0114; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0e0115; + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0e0137; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0e0138; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0e0139; + public static final int ThemeOverlay_AppCompat = 0x7f0e016a; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0e016b; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f0e016c; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0e016d; + public static final int ThemeOverlay_AppCompat_Dialog = 0x7f0e016e; + public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0e016f; + public static final int ThemeOverlay_AppCompat_Light = 0x7f0e0170; + public static final int Theme_AppCompat = 0x7f0e013a; + public static final int Theme_AppCompat_CompactMenu = 0x7f0e013b; + public static final int Theme_AppCompat_DayNight = 0x7f0e013c; + public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0e013d; + public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0e013e; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0e0141; + public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0e013f; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0e0140; + public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0e0142; + public static final int Theme_AppCompat_Dialog = 0x7f0e0143; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0e0146; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f0e0144; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0e0145; + public static final int Theme_AppCompat_Light = 0x7f0e0147; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0e0148; + public static final int Theme_AppCompat_Light_Dialog = 0x7f0e0149; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0e014c; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0e014a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0e014b; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0e014d; + public static final int Theme_AppCompat_NoActionBar = 0x7f0e014e; + public static final int Widget_AppCompat_ActionBar = 0x7f0e017d; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0e017e; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0e017f; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0e0180; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0e0181; + public static final int Widget_AppCompat_ActionButton = 0x7f0e0182; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0e0183; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0e0184; + public static final int Widget_AppCompat_ActionMode = 0x7f0e0185; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f0e0186; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0e0187; + public static final int Widget_AppCompat_Button = 0x7f0e0188; + public static final int Widget_AppCompat_ButtonBar = 0x7f0e018e; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0e018f; + public static final int Widget_AppCompat_Button_Borderless = 0x7f0e0189; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0e018a; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0e018b; + public static final int Widget_AppCompat_Button_Colored = 0x7f0e018c; + public static final int Widget_AppCompat_Button_Small = 0x7f0e018d; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0e0190; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0e0191; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0e0192; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0e0193; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0e0194; + public static final int Widget_AppCompat_EditText = 0x7f0e0195; + public static final int Widget_AppCompat_ImageButton = 0x7f0e0196; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f0e0197; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0e0198; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0e0199; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0e019a; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0e019b; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0e019c; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0e019d; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0e019e; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0e019f; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f0e01a0; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0e01a1; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0e01a2; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0e01a3; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0e01a4; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0e01a5; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0e01a6; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0e01a7; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0e01a8; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0e01a9; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0e01aa; + public static final int Widget_AppCompat_Light_SearchView = 0x7f0e01ab; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0e01ac; + public static final int Widget_AppCompat_ListMenuView = 0x7f0e01ad; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f0e01ae; + public static final int Widget_AppCompat_ListView = 0x7f0e01af; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f0e01b0; + public static final int Widget_AppCompat_ListView_Menu = 0x7f0e01b1; + public static final int Widget_AppCompat_PopupMenu = 0x7f0e01b2; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0e01b3; + public static final int Widget_AppCompat_PopupWindow = 0x7f0e01b4; + public static final int Widget_AppCompat_ProgressBar = 0x7f0e01b5; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0e01b6; + public static final int Widget_AppCompat_RatingBar = 0x7f0e01b7; + public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0e01b8; + public static final int Widget_AppCompat_RatingBar_Small = 0x7f0e01b9; + public static final int Widget_AppCompat_SearchView = 0x7f0e01ba; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0e01bb; + public static final int Widget_AppCompat_SeekBar = 0x7f0e01bc; + public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f0e01bd; + public static final int Widget_AppCompat_Spinner = 0x7f0e01be; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0e01bf; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0e01c0; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0e01c1; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0e01c2; + public static final int Widget_AppCompat_Toolbar = 0x7f0e01c3; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0e01c4; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ActionBar = { 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f0300a4, 0x7f0300a9, 0x7f0300aa, 0x7f0300b5, 0x7f0300df, 0x7f0300e4, 0x7f0300e9, 0x7f0300ea, 0x7f0300ec, 0x7f0300f6, 0x7f030100, 0x7f030123, 0x7f03012f, 0x7f030140, 0x7f030144, 0x7f030145, 0x7f030173, 0x7f030176, 0x7f0301bb, 0x7f0301c5 }; + public static final int ActionBar_background = 0; + public static final int ActionBar_backgroundSplit = 1; + public static final int ActionBar_backgroundStacked = 2; + public static final int ActionBar_contentInsetEnd = 3; + public static final int ActionBar_contentInsetEndWithActions = 4; + public static final int ActionBar_contentInsetLeft = 5; + public static final int ActionBar_contentInsetRight = 6; + public static final int ActionBar_contentInsetStart = 7; + public static final int ActionBar_contentInsetStartWithNavigation = 8; + public static final int ActionBar_customNavigationLayout = 9; + public static final int ActionBar_displayOptions = 10; + public static final int ActionBar_divider = 11; + public static final int ActionBar_elevation = 12; + public static final int ActionBar_height = 13; + public static final int ActionBar_hideOnContentScroll = 14; + public static final int ActionBar_homeAsUpIndicator = 15; + public static final int ActionBar_homeLayout = 16; + public static final int ActionBar_icon = 17; + public static final int ActionBar_indeterminateProgressStyle = 18; + public static final int ActionBar_itemPadding = 19; + public static final int ActionBar_logo = 20; + public static final int ActionBar_navigationMode = 21; + public static final int ActionBar_popupTheme = 22; + public static final int ActionBar_progressBarPadding = 23; + public static final int ActionBar_progressBarStyle = 24; + public static final int ActionBar_subtitle = 25; + public static final int ActionBar_subtitleTextStyle = 26; + public static final int ActionBar_title = 27; + public static final int ActionBar_titleTextStyle = 28; + public static final int[] ActionBarLayout = { 0x10100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int[] ActionMenuItemView = { 0x101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMenuView = { }; + public static final int[] ActionMode = { 0x7f030031, 0x7f030032, 0x7f03007e, 0x7f0300df, 0x7f030176, 0x7f0301c5 }; + public static final int ActionMode_background = 0; + public static final int ActionMode_backgroundSplit = 1; + public static final int ActionMode_closeItemLayout = 2; + public static final int ActionMode_height = 3; + public static final int ActionMode_subtitleTextStyle = 4; + public static final int ActionMode_titleTextStyle = 5; + public static final int[] ActivityChooserView = { 0x7f0300ba, 0x7f0300f7 }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + public static final int ActivityChooserView_initialActivityCount = 1; + public static final int[] AlertDialog = { 0x10100f2, 0x7f030052, 0x7f030053, 0x7f03011a, 0x7f03011b, 0x7f03012c, 0x7f03015b, 0x7f03015c }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonIconDimen = 1; + public static final int AlertDialog_buttonPanelSideLayout = 2; + public static final int AlertDialog_listItemLayout = 3; + public static final int AlertDialog_listLayout = 4; + public static final int AlertDialog_multiChoiceItemLayout = 5; + public static final int AlertDialog_showTitle = 6; + public static final int AlertDialog_singleChoiceItemLayout = 7; + public static final int[] AnimatedStateListDrawableCompat = { 0x101011c, 0x1010194, 0x1010195, 0x1010196, 0x101030c, 0x101030d }; + public static final int AnimatedStateListDrawableCompat_android_dither = 0; + public static final int AnimatedStateListDrawableCompat_android_visible = 1; + public static final int AnimatedStateListDrawableCompat_android_variablePadding = 2; + public static final int AnimatedStateListDrawableCompat_android_constantSize = 3; + public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4; + public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5; + public static final int[] AnimatedStateListDrawableItem = { 0x10100d0, 0x1010199 }; + public static final int AnimatedStateListDrawableItem_android_id = 0; + public static final int AnimatedStateListDrawableItem_android_drawable = 1; + public static final int[] AnimatedStateListDrawableTransition = { 0x1010199, 0x1010449, 0x101044a, 0x101044b }; + public static final int AnimatedStateListDrawableTransition_android_drawable = 0; + public static final int AnimatedStateListDrawableTransition_android_toId = 1; + public static final int AnimatedStateListDrawableTransition_android_fromId = 2; + public static final int AnimatedStateListDrawableTransition_android_reversible = 3; + public static final int[] AppCompatImageView = { 0x1010119, 0x7f030166, 0x7f0301b9, 0x7f0301ba }; + public static final int AppCompatImageView_android_src = 0; + public static final int AppCompatImageView_srcCompat = 1; + public static final int AppCompatImageView_tint = 2; + public static final int AppCompatImageView_tintMode = 3; + public static final int[] AppCompatSeekBar = { 0x1010142, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8 }; + public static final int AppCompatSeekBar_android_thumb = 0; + public static final int AppCompatSeekBar_tickMark = 1; + public static final int AppCompatSeekBar_tickMarkTint = 2; + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + public static final int[] AppCompatTextHelper = { 0x1010034, 0x101016d, 0x101016e, 0x101016f, 0x1010170, 0x1010392, 0x1010393 }; + public static final int AppCompatTextHelper_android_textAppearance = 0; + public static final int AppCompatTextHelper_android_drawableTop = 1; + public static final int AppCompatTextHelper_android_drawableBottom = 2; + public static final int AppCompatTextHelper_android_drawableLeft = 3; + public static final int AppCompatTextHelper_android_drawableRight = 4; + public static final int AppCompatTextHelper_android_drawableStart = 5; + public static final int AppCompatTextHelper_android_drawableEnd = 6; + public static final int[] AppCompatTextView = { 0x1010034, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030030, 0x7f0300ce, 0x7f0300d1, 0x7f030108, 0x7f030116, 0x7f030196 }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_autoSizeMaxTextSize = 1; + public static final int AppCompatTextView_autoSizeMinTextSize = 2; + public static final int AppCompatTextView_autoSizePresetSizes = 3; + public static final int AppCompatTextView_autoSizeStepGranularity = 4; + public static final int AppCompatTextView_autoSizeTextType = 5; + public static final int AppCompatTextView_firstBaselineToTopHeight = 6; + public static final int AppCompatTextView_fontFamily = 7; + public static final int AppCompatTextView_lastBaselineToBottomHeight = 8; + public static final int AppCompatTextView_lineHeight = 9; + public static final int AppCompatTextView_textAllCaps = 10; + public static final int[] AppCompatTheme = { 0x1010057, 0x10100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, 0x7f030025, 0x7f03002b, 0x7f03003e, 0x7f03004c, 0x7f03004d, 0x7f03004e, 0x7f03004f, 0x7f030050, 0x7f030054, 0x7f030055, 0x7f03005f, 0x7f030064, 0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008e, 0x7f03009d, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300ab, 0x7f0300ad, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3, 0x7f0300b4, 0x7f0300e9, 0x7f0300f5, 0x7f030118, 0x7f030119, 0x7f03011c, 0x7f03011d, 0x7f03011e, 0x7f03011f, 0x7f030120, 0x7f030121, 0x7f030122, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013f, 0x7f030141, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f030156, 0x7f030163, 0x7f030164, 0x7f03017a, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301ac, 0x7f0301ad, 0x7f0301c7, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca, 0x7f0301d1, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc }; + public static final int AppCompatTheme_android_windowIsFloating = 0; + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + public static final int AppCompatTheme_actionBarDivider = 2; + public static final int AppCompatTheme_actionBarItemBackground = 3; + public static final int AppCompatTheme_actionBarPopupTheme = 4; + public static final int AppCompatTheme_actionBarSize = 5; + public static final int AppCompatTheme_actionBarSplitStyle = 6; + public static final int AppCompatTheme_actionBarStyle = 7; + public static final int AppCompatTheme_actionBarTabBarStyle = 8; + public static final int AppCompatTheme_actionBarTabStyle = 9; + public static final int AppCompatTheme_actionBarTabTextStyle = 10; + public static final int AppCompatTheme_actionBarTheme = 11; + public static final int AppCompatTheme_actionBarWidgetTheme = 12; + public static final int AppCompatTheme_actionButtonStyle = 13; + public static final int AppCompatTheme_actionDropDownStyle = 14; + public static final int AppCompatTheme_actionMenuTextAppearance = 15; + public static final int AppCompatTheme_actionMenuTextColor = 16; + public static final int AppCompatTheme_actionModeBackground = 17; + public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; + public static final int AppCompatTheme_actionModeCloseDrawable = 19; + public static final int AppCompatTheme_actionModeCopyDrawable = 20; + public static final int AppCompatTheme_actionModeCutDrawable = 21; + public static final int AppCompatTheme_actionModeFindDrawable = 22; + public static final int AppCompatTheme_actionModePasteDrawable = 23; + public static final int AppCompatTheme_actionModePopupWindowStyle = 24; + public static final int AppCompatTheme_actionModeSelectAllDrawable = 25; + public static final int AppCompatTheme_actionModeShareDrawable = 26; + public static final int AppCompatTheme_actionModeSplitBackground = 27; + public static final int AppCompatTheme_actionModeStyle = 28; + public static final int AppCompatTheme_actionModeWebSearchDrawable = 29; + public static final int AppCompatTheme_actionOverflowButtonStyle = 30; + public static final int AppCompatTheme_actionOverflowMenuStyle = 31; + public static final int AppCompatTheme_activityChooserViewStyle = 32; + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 33; + public static final int AppCompatTheme_alertDialogCenterButtons = 34; + public static final int AppCompatTheme_alertDialogStyle = 35; + public static final int AppCompatTheme_alertDialogTheme = 36; + public static final int AppCompatTheme_autoCompleteTextViewStyle = 37; + public static final int AppCompatTheme_borderlessButtonStyle = 38; + public static final int AppCompatTheme_buttonBarButtonStyle = 39; + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 40; + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 41; + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 42; + public static final int AppCompatTheme_buttonBarStyle = 43; + public static final int AppCompatTheme_buttonStyle = 44; + public static final int AppCompatTheme_buttonStyleSmall = 45; + public static final int AppCompatTheme_checkboxStyle = 46; + public static final int AppCompatTheme_checkedTextViewStyle = 47; + public static final int AppCompatTheme_colorAccent = 48; + public static final int AppCompatTheme_colorBackgroundFloating = 49; + public static final int AppCompatTheme_colorButtonNormal = 50; + public static final int AppCompatTheme_colorControlActivated = 51; + public static final int AppCompatTheme_colorControlHighlight = 52; + public static final int AppCompatTheme_colorControlNormal = 53; + public static final int AppCompatTheme_colorError = 54; + public static final int AppCompatTheme_colorPrimary = 55; + public static final int AppCompatTheme_colorPrimaryDark = 56; + public static final int AppCompatTheme_colorSwitchThumbNormal = 57; + public static final int AppCompatTheme_controlBackground = 58; + public static final int AppCompatTheme_dialogCornerRadius = 59; + public static final int AppCompatTheme_dialogPreferredPadding = 60; + public static final int AppCompatTheme_dialogTheme = 61; + public static final int AppCompatTheme_dividerHorizontal = 62; + public static final int AppCompatTheme_dividerVertical = 63; + public static final int AppCompatTheme_dropDownListViewStyle = 64; + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 65; + public static final int AppCompatTheme_editTextBackground = 66; + public static final int AppCompatTheme_editTextColor = 67; + public static final int AppCompatTheme_editTextStyle = 68; + public static final int AppCompatTheme_homeAsUpIndicator = 69; + public static final int AppCompatTheme_imageButtonStyle = 70; + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 71; + public static final int AppCompatTheme_listDividerAlertDialog = 72; + public static final int AppCompatTheme_listMenuViewStyle = 73; + public static final int AppCompatTheme_listPopupWindowStyle = 74; + public static final int AppCompatTheme_listPreferredItemHeight = 75; + public static final int AppCompatTheme_listPreferredItemHeightLarge = 76; + public static final int AppCompatTheme_listPreferredItemHeightSmall = 77; + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 78; + public static final int AppCompatTheme_listPreferredItemPaddingRight = 79; + public static final int AppCompatTheme_panelBackground = 80; + public static final int AppCompatTheme_panelMenuListTheme = 81; + public static final int AppCompatTheme_panelMenuListWidth = 82; + public static final int AppCompatTheme_popupMenuStyle = 83; + public static final int AppCompatTheme_popupWindowStyle = 84; + public static final int AppCompatTheme_radioButtonStyle = 85; + public static final int AppCompatTheme_ratingBarStyle = 86; + public static final int AppCompatTheme_ratingBarStyleIndicator = 87; + public static final int AppCompatTheme_ratingBarStyleSmall = 88; + public static final int AppCompatTheme_searchViewStyle = 89; + public static final int AppCompatTheme_seekBarStyle = 90; + public static final int AppCompatTheme_selectableItemBackground = 91; + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 92; + public static final int AppCompatTheme_spinnerDropDownItemStyle = 93; + public static final int AppCompatTheme_spinnerStyle = 94; + public static final int AppCompatTheme_switchStyle = 95; + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 96; + public static final int AppCompatTheme_textAppearanceListItem = 97; + public static final int AppCompatTheme_textAppearanceListItemSecondary = 98; + public static final int AppCompatTheme_textAppearanceListItemSmall = 99; + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 100; + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 101; + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 102; + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 103; + public static final int AppCompatTheme_textColorAlertDialogListItem = 104; + public static final int AppCompatTheme_textColorSearchUrl = 105; + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 106; + public static final int AppCompatTheme_toolbarStyle = 107; + public static final int AppCompatTheme_tooltipForegroundColor = 108; + public static final int AppCompatTheme_tooltipFrameBackground = 109; + public static final int AppCompatTheme_viewInflaterClass = 110; + public static final int AppCompatTheme_windowActionBar = 111; + public static final int AppCompatTheme_windowActionBarOverlay = 112; + public static final int AppCompatTheme_windowActionModeOverlay = 113; + public static final int AppCompatTheme_windowFixedHeightMajor = 114; + public static final int AppCompatTheme_windowFixedHeightMinor = 115; + public static final int AppCompatTheme_windowFixedWidthMajor = 116; + public static final int AppCompatTheme_windowFixedWidthMinor = 117; + public static final int AppCompatTheme_windowMinWidthMajor = 118; + public static final int AppCompatTheme_windowMinWidthMinor = 119; + public static final int AppCompatTheme_windowNoTitle = 120; + public static final int[] ButtonBarLayout = { 0x7f030026 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CompoundButton = { 0x1010107, 0x7f030056, 0x7f030057 }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonTint = 1; + public static final int CompoundButton_buttonTintMode = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] DrawerArrowToggle = { 0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030083, 0x7f0300ae, 0x7f0300dc, 0x7f030162, 0x7f0301b2 }; + public static final int DrawerArrowToggle_arrowHeadLength = 0; + public static final int DrawerArrowToggle_arrowShaftLength = 1; + public static final int DrawerArrowToggle_barLength = 2; + public static final int DrawerArrowToggle_color = 3; + public static final int DrawerArrowToggle_drawableSize = 4; + public static final int DrawerArrowToggle_gapBetweenBars = 5; + public static final int DrawerArrowToggle_spinBars = 6; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + public static final int[] LinearLayoutCompat = { 0x10100af, 0x10100c4, 0x1010126, 0x1010127, 0x1010128, 0x7f0300aa, 0x7f0300ac, 0x7f03012a, 0x7f030158 }; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 6; + public static final int LinearLayoutCompat_measureWithLargestChild = 7; + public static final int LinearLayoutCompat_showDividers = 8; + public static final int[] LinearLayoutCompat_Layout = { 0x10100b3, 0x10100f4, 0x10100f5, 0x1010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int[] ListPopupWindow = { 0x10102ac, 0x10102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MenuGroup = { 0x101000e, 0x10100d0, 0x1010194, 0x10101de, 0x10101df, 0x10101e0 }; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_visible = 2; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int[] MenuItem = { 0x1010002, 0x101000e, 0x10100d0, 0x1010106, 0x1010194, 0x10101de, 0x10101df, 0x10101e1, 0x10101e2, 0x10101e3, 0x10101e4, 0x10101e5, 0x101026f, 0x7f03000d, 0x7f03001f, 0x7f030020, 0x7f030028, 0x7f030090, 0x7f0300f2, 0x7f0300f3, 0x7f030131, 0x7f030157, 0x7f0301cb }; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_actionLayout = 13; + public static final int MenuItem_actionProviderClass = 14; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_alphabeticModifiers = 16; + public static final int MenuItem_contentDescription = 17; + public static final int MenuItem_iconTint = 18; + public static final int MenuItem_iconTintMode = 19; + public static final int MenuItem_numericModifiers = 20; + public static final int MenuItem_showAsAction = 21; + public static final int MenuItem_tooltipText = 22; + public static final int[] MenuView = { 0x10100ae, 0x101012c, 0x101012d, 0x101012e, 0x101012f, 0x1010130, 0x1010131, 0x7f030142, 0x7f030171 }; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_preserveIconSpacing = 7; + public static final int MenuView_subMenuArrow = 8; + public static final int[] PopupWindow = { 0x1010176, 0x10102c9, 0x7f030132 }; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_android_popupAnimationStyle = 1; + public static final int PopupWindow_overlapAnchor = 2; + public static final int[] PopupWindowBackgroundState = { 0x7f030168 }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int[] RecycleListView = { 0x7f030133, 0x7f030136 }; + public static final int RecycleListView_paddingBottomNoButtons = 0; + public static final int RecycleListView_paddingTopNoTitle = 1; + public static final int[] SearchView = { 0x10100da, 0x101011f, 0x1010220, 0x1010264, 0x7f030077, 0x7f03008f, 0x7f0300a5, 0x7f0300dd, 0x7f0300f4, 0x7f030109, 0x7f030146, 0x7f030147, 0x7f030151, 0x7f030152, 0x7f030172, 0x7f030177, 0x7f0301d2 }; + public static final int SearchView_android_focusable = 0; + public static final int SearchView_android_maxWidth = 1; + public static final int SearchView_android_inputType = 2; + public static final int SearchView_android_imeOptions = 3; + public static final int SearchView_closeIcon = 4; + public static final int SearchView_commitIcon = 5; + public static final int SearchView_defaultQueryHint = 6; + public static final int SearchView_goIcon = 7; + public static final int SearchView_iconifiedByDefault = 8; + public static final int SearchView_layout = 9; + public static final int SearchView_queryBackground = 10; + public static final int SearchView_queryHint = 11; + public static final int SearchView_searchHintIcon = 12; + public static final int SearchView_searchIcon = 13; + public static final int SearchView_submitBackground = 14; + public static final int SearchView_suggestionRowLayout = 15; + public static final int SearchView_voiceIcon = 16; + public static final int[] Spinner = { 0x10100b2, 0x1010176, 0x101017b, 0x1010262, 0x7f030140 }; + public static final int Spinner_android_entries = 0; + public static final int Spinner_android_popupBackground = 1; + public static final int Spinner_android_prompt = 2; + public static final int Spinner_android_dropDownWidth = 3; + public static final int Spinner_popupTheme = 4; + public static final int[] StateListDrawable = { 0x101011c, 0x1010194, 0x1010195, 0x1010196, 0x101030c, 0x101030d }; + public static final int StateListDrawable_android_dither = 0; + public static final int StateListDrawable_android_visible = 1; + public static final int StateListDrawable_android_variablePadding = 2; + public static final int StateListDrawable_android_constantSize = 3; + public static final int StateListDrawable_android_enterFadeDuration = 4; + public static final int StateListDrawable_android_exitFadeDuration = 5; + public static final int[] StateListDrawableItem = { 0x1010199 }; + public static final int StateListDrawableItem_android_drawable = 0; + public static final int[] SwitchCompat = { 0x1010124, 0x1010125, 0x1010142, 0x7f03015a, 0x7f030165, 0x7f030178, 0x7f030179, 0x7f03017b, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301cc, 0x7f0301cd, 0x7f0301ce }; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 3; + public static final int SwitchCompat_splitTrack = 4; + public static final int SwitchCompat_switchMinWidth = 5; + public static final int SwitchCompat_switchPadding = 6; + public static final int SwitchCompat_switchTextAppearance = 7; + public static final int SwitchCompat_thumbTextPadding = 8; + public static final int SwitchCompat_thumbTint = 9; + public static final int SwitchCompat_thumbTintMode = 10; + public static final int SwitchCompat_track = 11; + public static final int SwitchCompat_trackTint = 12; + public static final int SwitchCompat_trackTintMode = 13; + public static final int[] TextAppearance = { 0x1010095, 0x1010096, 0x1010097, 0x1010098, 0x101009a, 0x101009b, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x10103ac, 0x7f0300d1, 0x7f030196 }; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textColorHint = 4; + public static final int TextAppearance_android_textColorLink = 5; + public static final int TextAppearance_android_shadowColor = 6; + public static final int TextAppearance_android_shadowDx = 7; + public static final int TextAppearance_android_shadowDy = 8; + public static final int TextAppearance_android_shadowRadius = 9; + public static final int TextAppearance_android_fontFamily = 10; + public static final int TextAppearance_fontFamily = 11; + public static final int TextAppearance_textAllCaps = 12; + public static final int[] Toolbar = { 0x10100af, 0x1010140, 0x7f030051, 0x7f03007f, 0x7f030080, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f030123, 0x7f030124, 0x7f030128, 0x7f03012d, 0x7f03012e, 0x7f030140, 0x7f030173, 0x7f030174, 0x7f030175, 0x7f0301bb, 0x7f0301bd, 0x7f0301be, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4 }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_buttonGravity = 2; + public static final int Toolbar_collapseContentDescription = 3; + public static final int Toolbar_collapseIcon = 4; + public static final int Toolbar_contentInsetEnd = 5; + public static final int Toolbar_contentInsetEndWithActions = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 9; + public static final int Toolbar_contentInsetStartWithNavigation = 10; + public static final int Toolbar_logo = 11; + public static final int Toolbar_logoDescription = 12; + public static final int Toolbar_maxButtonHeight = 13; + public static final int Toolbar_navigationContentDescription = 14; + public static final int Toolbar_navigationIcon = 15; + public static final int Toolbar_popupTheme = 16; + public static final int Toolbar_subtitle = 17; + public static final int Toolbar_subtitleTextAppearance = 18; + public static final int Toolbar_subtitleTextColor = 19; + public static final int Toolbar_title = 20; + public static final int Toolbar_titleMargin = 21; + public static final int Toolbar_titleMarginBottom = 22; + public static final int Toolbar_titleMarginEnd = 23; + public static final int Toolbar_titleMarginStart = 24; + public static final int Toolbar_titleMarginTop = 25; + public static final int Toolbar_titleMargins = 26; + public static final int Toolbar_titleTextAppearance = 27; + public static final int Toolbar_titleTextColor = 28; + public static final int[] View = { 0x1010000, 0x10100da, 0x7f030134, 0x7f030135, 0x7f0301b1 }; + public static final int View_android_theme = 0; + public static final int View_android_focusable = 1; + public static final int View_paddingEnd = 2; + public static final int View_paddingStart = 3; + public static final int View_theme = 4; + public static final int[] ViewBackgroundHelper = { 0x10100d4, 0x7f030034, 0x7f030035 }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = { 0x10100d0, 0x10100f2, 0x10100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_layout = 1; + public static final int ViewStubCompat_android_inflatedId = 2; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/cardview/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/cardview/R.java new file mode 100644 index 0000000000000000000000000000000000000000..2aa62279f0124477dc49e2034a684f99db9821ad --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/cardview/R.java @@ -0,0 +1,69 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v7.cardview; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int cardBackgroundColor = 0x7f030058; + public static final int cardCornerRadius = 0x7f030059; + public static final int cardElevation = 0x7f03005a; + public static final int cardMaxElevation = 0x7f03005b; + public static final int cardPreventCornerOverlap = 0x7f03005c; + public static final int cardUseCompatPadding = 0x7f03005d; + public static final int cardViewStyle = 0x7f03005e; + public static final int contentPadding = 0x7f030097; + public static final int contentPaddingBottom = 0x7f030098; + public static final int contentPaddingLeft = 0x7f030099; + public static final int contentPaddingRight = 0x7f03009a; + public static final int contentPaddingTop = 0x7f03009b; + } + public static final class color { + private color() {} + + public static final int cardview_dark_background = 0x7f050027; + public static final int cardview_light_background = 0x7f050028; + public static final int cardview_shadow_end_color = 0x7f050029; + public static final int cardview_shadow_start_color = 0x7f05002a; + } + public static final class dimen { + private dimen() {} + + public static final int cardview_compat_inset_shadow = 0x7f06004b; + public static final int cardview_default_elevation = 0x7f06004c; + public static final int cardview_default_radius = 0x7f06004d; + } + public static final class style { + private style() {} + + public static final int Base_CardView = 0x7f0e000d; + public static final int CardView = 0x7f0e00c4; + public static final int CardView_Dark = 0x7f0e00c5; + public static final int CardView_Light = 0x7f0e00c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] CardView = { 0x101013f, 0x1010140, 0x7f030058, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a, 0x7f03009b }; + public static final int CardView_android_minWidth = 0; + public static final int CardView_android_minHeight = 1; + public static final int CardView_cardBackgroundColor = 2; + public static final int CardView_cardCornerRadius = 3; + public static final int CardView_cardElevation = 4; + public static final int CardView_cardMaxElevation = 5; + public static final int CardView_cardPreventCornerOverlap = 6; + public static final int CardView_cardUseCompatPadding = 7; + public static final int CardView_contentPadding = 8; + public static final int CardView_contentPaddingBottom = 9; + public static final int CardView_contentPaddingLeft = 10; + public static final int CardView_contentPaddingRight = 11; + public static final int CardView_contentPaddingTop = 12; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/recyclerview/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/recyclerview/R.java new file mode 100644 index 0000000000000000000000000000000000000000..d1ea4238ecfcf40c89908b5e6d093e71816cc923 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/recyclerview/R.java @@ -0,0 +1,239 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v7.recyclerview; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int fastScrollEnabled = 0x7f0300c9; + public static final int fastScrollHorizontalThumbDrawable = 0x7f0300ca; + public static final int fastScrollHorizontalTrackDrawable = 0x7f0300cb; + public static final int fastScrollVerticalThumbDrawable = 0x7f0300cc; + public static final int fastScrollVerticalTrackDrawable = 0x7f0300cd; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int keylines = 0x7f030106; + public static final int layoutManager = 0x7f03010a; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int reverseLayout = 0x7f03014c; + public static final int spanCount = 0x7f030161; + public static final int stackFromEnd = 0x7f030167; + public static final int statusBarBackground = 0x7f03016d; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int fastscroll_default_thickness = 0x7f060083; + public static final int fastscroll_margin = 0x7f060084; + public static final int fastscroll_minimum_range = 0x7f060085; + public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f06008d; + public static final int item_touch_helper_swipe_escape_max_velocity = 0x7f06008e; + public static final int item_touch_helper_swipe_escape_velocity = 0x7f06008f; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int chronometer = 0x7f080029; + public static final int end = 0x7f08003c; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int item_touch_helper_previous_elevation = 0x7f080053; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int start = 0x7f080098; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int top = 0x7f0800ae; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + public static final int[] RecyclerView = { 0x10100c4, 0x10100f1, 0x7f0300c9, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f03010a, 0x7f03014c, 0x7f030161, 0x7f030167 }; + public static final int RecyclerView_android_orientation = 0; + public static final int RecyclerView_android_descendantFocusability = 1; + public static final int RecyclerView_fastScrollEnabled = 2; + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 3; + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 4; + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 5; + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 6; + public static final int RecyclerView_layoutManager = 7; + public static final int RecyclerView_reverseLayout = 8; + public static final int RecyclerView_spanCount = 9; + public static final int RecyclerView_stackFromEnd = 10; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/viewpager/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/viewpager/R.java new file mode 100644 index 0000000000000000000000000000000000000000..8bcad4e87c13fd549288da6a56fdf06e73b5de6a --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/viewpager/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v7.viewpager; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/versionedparcelable/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/versionedparcelable/R.java new file mode 100644 index 0000000000000000000000000000000000000000..92e83d409e9bf977a24a3f3cd025a5cd3ed6e976 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/versionedparcelable/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.versionedparcelable; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/org/muctec/smartfritz/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/org/muctec/smartfritz/R.java new file mode 100644 index 0000000000000000000000000000000000000000..993d3aaf03fb0878e5dbb7d7aed38628173c436f --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/org/muctec/smartfritz/R.java @@ -0,0 +1,17147 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package org.muctec.smartfritz; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f010000; + public static final int abc_fade_out=0x7f010001; + public static final int abc_grow_fade_in_from_bottom=0x7f010002; + public static final int abc_popup_enter=0x7f010003; + public static final int abc_popup_exit=0x7f010004; + public static final int abc_shrink_fade_out_from_bottom=0x7f010005; + public static final int abc_slide_in_bottom=0x7f010006; + public static final int abc_slide_in_top=0x7f010007; + public static final int abc_slide_out_bottom=0x7f010008; + public static final int abc_slide_out_top=0x7f010009; + public static final int abc_tooltip_enter=0x7f01000a; + public static final int abc_tooltip_exit=0x7f01000b; + public static final int design_bottom_sheet_slide_in=0x7f01000c; + public static final int design_bottom_sheet_slide_out=0x7f01000d; + public static final int design_snackbar_in=0x7f01000e; + public static final int design_snackbar_out=0x7f01000f; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f020000; + public static final int design_fab_hide_motion_spec=0x7f020001; + public static final int design_fab_show_motion_spec=0x7f020002; + public static final int mtrl_btn_state_list_anim=0x7f020003; + public static final int mtrl_btn_unelevated_state_list_anim=0x7f020004; + public static final int mtrl_chip_state_list_anim=0x7f020005; + public static final int mtrl_fab_hide_motion_spec=0x7f020006; + public static final int mtrl_fab_show_motion_spec=0x7f020007; + public static final int mtrl_fab_transformation_sheet_collapse_spec=0x7f020008; + public static final int mtrl_fab_transformation_sheet_expand_spec=0x7f020009; + } + public static final class attr { + /** + * Custom divider drawable to use for elements in the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarDivider=0x7f030000; + /** + * Custom item state list drawable background for action bar items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarItemBackground=0x7f030001; + /** + * Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarPopupTheme=0x7f030002; + /** + * Size of the Action Bar, including the contextual + * bar used to present Action Modes. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f030003; + /** + * Reference to a style for the split Action Bar. This style + * controls the split component that holds the menu/action + * buttons. actionBarStyle is still used for the primary + * bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarSplitStyle=0x7f030004; + /** + * Reference to a style for the Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarStyle=0x7f030005; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabBarStyle=0x7f030006; + /** + * Default style for tabs within an action bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabStyle=0x7f030007; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabTextStyle=0x7f030008; + /** + * Reference to a theme that should be used to inflate the + * action bar. This will be inherited by any widget inflated + * into the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTheme=0x7f030009; + /** + * Reference to a theme that should be used to inflate widgets + * and layouts destined for the action bar. Most of the time + * this will be a reference to the current theme, but when + * the action bar has a significantly different contrast + * profile than the rest of the activity the difference + * can become important. If this is set to @null the current + * theme will be used. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarWidgetTheme=0x7f03000a; + /** + * Default action button style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionButtonStyle=0x7f03000b; + /** + * Default ActionBar dropdown style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionDropDownStyle=0x7f03000c; + /** + * An optional layout to be used as an action view. + * See {@link android.view.MenuItem#setActionView(android.view.View)} + * for more info. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionLayout=0x7f03000d; + /** + * TextAppearance style that will be applied to text that + * appears within action menu items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionMenuTextAppearance=0x7f03000e; + /** + * Color for text that appears within action menu items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f03000f; + /** + * Background drawable to use for action mode UI + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeBackground=0x7f030010; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCloseButtonStyle=0x7f030011; + /** + * Drawable to use for the close action mode button + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCloseDrawable=0x7f030012; + /** + * Drawable to use for the Copy action button in Contextual Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCopyDrawable=0x7f030013; + /** + * Drawable to use for the Cut action button in Contextual Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCutDrawable=0x7f030014; + /** + * Drawable to use for the Find action button in WebView selection action modes + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeFindDrawable=0x7f030015; + /** + * Drawable to use for the Paste action button in Contextual Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModePasteDrawable=0x7f030016; + /** + * PopupWindow style to use for action modes when showing as a window overlay. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModePopupWindowStyle=0x7f030017; + /** + * Drawable to use for the Select all action button in Contextual Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeSelectAllDrawable=0x7f030018; + /** + * Drawable to use for the Share action button in WebView selection action modes + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeShareDrawable=0x7f030019; + /** + * Background drawable to use for action mode UI in the lower split bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeSplitBackground=0x7f03001a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeStyle=0x7f03001b; + /** + * Drawable to use for the Web Search action button in WebView selection action modes + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeWebSearchDrawable=0x7f03001c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionOverflowButtonStyle=0x7f03001d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionOverflowMenuStyle=0x7f03001e; + /** + * The name of an optional ActionProvider class to instantiate an action view + * and perform operations such as default action for that menu item. + * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} + * for more info. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int actionProviderClass=0x7f03001f; + /** + * The name of an optional View class to instantiate and use as an + * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} + * for more info. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int actionViewClass=0x7f030020; + /** + * Default ActivityChooserView style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int activityChooserViewStyle=0x7f030021; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogButtonGroupStyle=0x7f030022; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int alertDialogCenterButtons=0x7f030023; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogStyle=0x7f030024; + /** + * Theme to use for alert dialogs spawned from this theme. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogTheme=0x7f030025; + /** + * Whether to automatically stack the buttons when there is not + * enough space to lay them out side-by-side. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int allowStacking=0x7f030026; + /** + * Alpha multiplier applied to the base color. + *

May be a floating point value, such as "1.2". + */ + public static final int alpha=0x7f030027; + /** + * The alphabetic modifier key. This is the modifier when using a keyboard + * with alphabetic keys. The values should be kept in sync with KeyEvent + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ */ + public static final int alphabeticModifiers=0x7f030028; + /** + * The length of the arrow head when formed to make an arrow + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int arrowHeadLength=0x7f030029; + /** + * The length of the shaft when formed to make an arrow + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int arrowShaftLength=0x7f03002a; + /** + * Default AutoCompleteTextView style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int autoCompleteTextViewStyle=0x7f03002b; + /** + * The maximum text size constraint to be used when auto-sizing text. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int autoSizeMaxTextSize=0x7f03002c; + /** + * The minimum text size constraint to be used when auto-sizing text. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int autoSizeMinTextSize=0x7f03002d; + /** + * Resource array of dimensions to be used in conjunction with + * autoSizeTextType set to uniform. Overrides + * autoSizeStepGranularity if set. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int autoSizePresetSizes=0x7f03002e; + /** + * Specify the auto-size step size if autoSizeTextType is set to + * uniform. The default is 1px. Overwrites + * autoSizePresetSizes if set. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int autoSizeStepGranularity=0x7f03002f; + /** + * Specify the type of auto-size. Note that this feature is not supported by EditText, + * works only for TextView. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
none0No auto-sizing (default).
uniform1Uniform horizontal and vertical text size scaling to fit within the + * container.
+ */ + public static final int autoSizeTextType=0x7f030030; + /** + * Specifies a background drawable for the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int background=0x7f030031; + /** + * Specifies a background drawable for the bottom component of a split action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundSplit=0x7f030032; + /** + * Specifies a background drawable for a second stacked row of the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundStacked=0x7f030033; + /** + * Tint to apply to the background. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundTint=0x7f030034; + /** + * Blending mode used to apply the background tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int backgroundTintMode=0x7f030035; + /** + * The length of the bars when they are parallel to each other + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int barLength=0x7f030036; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_autoHide=0x7f030037; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_fitToContents=0x7f030038; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_hideable=0x7f030039; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int behavior_overlapTop=0x7f03003a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
+ */ + public static final int behavior_peekHeight=0x7f03003b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_skipCollapsed=0x7f03003c; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int borderWidth=0x7f03003d; + /** + * Style for buttons without an explicit border, often used in groups. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int borderlessButtonStyle=0x7f03003e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomAppBarStyle=0x7f03003f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomNavigationStyle=0x7f030040; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomSheetDialogTheme=0x7f030041; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomSheetStyle=0x7f030042; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int boxBackgroundColor=0x7f030043; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
filled1
none0
outline2
+ */ + public static final int boxBackgroundMode=0x7f030044; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCollapsedPaddingTop=0x7f030045; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCornerRadiusBottomEnd=0x7f030046; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCornerRadiusBottomStart=0x7f030047; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCornerRadiusTopEnd=0x7f030048; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCornerRadiusTopStart=0x7f030049; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int boxStrokeColor=0x7f03004a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxStrokeWidth=0x7f03004b; + /** + * Style for buttons within button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarButtonStyle=0x7f03004c; + /** + * Style for the "negative" buttons within button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f03004d; + /** + * Style for the "neutral" buttons within button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f03004e; + /** + * Style for the "positive" buttons within button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f03004f; + /** + * Style for button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarStyle=0x7f030050; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ */ + public static final int buttonGravity=0x7f030051; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int buttonIconDimen=0x7f030052; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonPanelSideLayout=0x7f030053; + /** + * Normal Button style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonStyle=0x7f030054; + /** + * Small Button style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonStyleSmall=0x7f030055; + /** + * Tint to apply to the button drawable. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int buttonTint=0x7f030056; + /** + * Blending mode used to apply the button tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int buttonTintMode=0x7f030057; + /** + * Background color for CardView. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int cardBackgroundColor=0x7f030058; + /** + * Corner radius for CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int cardCornerRadius=0x7f030059; + /** + * Elevation for CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int cardElevation=0x7f03005a; + /** + * Maximum Elevation for CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int cardMaxElevation=0x7f03005b; + /** + * Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int cardPreventCornerOverlap=0x7f03005c; + /** + * Add padding in API v21+ as well to have the same measurements with previous versions. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int cardUseCompatPadding=0x7f03005d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int cardViewStyle=0x7f03005e; + /** + * Default Checkbox style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkboxStyle=0x7f03005f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkedChip=0x7f030060; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkedIcon=0x7f030061; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int checkedIconEnabled=0x7f030062; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int checkedIconVisible=0x7f030063; + /** + * Default CheckedTextView style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkedTextViewStyle=0x7f030064; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int chipBackgroundColor=0x7f030065; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipCornerRadius=0x7f030066; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipEndPadding=0x7f030067; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int chipGroupStyle=0x7f030068; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int chipIcon=0x7f030069; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int chipIconEnabled=0x7f03006a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipIconSize=0x7f03006b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int chipIconTint=0x7f03006c; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int chipIconVisible=0x7f03006d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipMinHeight=0x7f03006e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipSpacing=0x7f03006f; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipSpacingHorizontal=0x7f030070; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipSpacingVertical=0x7f030071; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int chipStandaloneStyle=0x7f030072; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipStartPadding=0x7f030073; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int chipStrokeColor=0x7f030074; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipStrokeWidth=0x7f030075; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int chipStyle=0x7f030076; + /** + * Close button icon + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int closeIcon=0x7f030077; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int closeIconEnabled=0x7f030078; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int closeIconEndPadding=0x7f030079; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int closeIconSize=0x7f03007a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int closeIconStartPadding=0x7f03007b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int closeIconTint=0x7f03007c; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int closeIconVisible=0x7f03007d; + /** + * Specifies a layout to use for the "close" item at the starting edge. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int closeItemLayout=0x7f03007e; + /** + * Text to set as the content description for the collapse button. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int collapseContentDescription=0x7f03007f; + /** + * Icon drawable to use for the collapse button. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collapseIcon=0x7f030080; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
end800005
fill_vertical70
left3
right5
start800003
top30
+ */ + public static final int collapsedTitleGravity=0x7f030081; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collapsedTitleTextAppearance=0x7f030082; + /** + * The drawing color for the bars + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int color=0x7f030083; + /** + * Bright complement to the primary branding color. By default, this is the color applied + * to framework controls (via colorControlActivated). + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorAccent=0x7f030084; + /** + * Default color of background imagery for floating components, ex. dialogs, popups, and cards. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorBackgroundFloating=0x7f030085; + /** + * The color applied to framework buttons in their normal state. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorButtonNormal=0x7f030086; + /** + * The color applied to framework controls in their activated (ex. checked) state. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlActivated=0x7f030087; + /** + * The color applied to framework control highlights (ex. ripples, list selectors). + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlHighlight=0x7f030088; + /** + * The color applied to framework controls in their normal state. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlNormal=0x7f030089; + /** + * Color used for error states and things that need to be drawn to + * the user's attention. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorError=0x7f03008a; + /** + * The primary branding color for the app. By default, this is the color applied to the + * action bar background. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimary=0x7f03008b; + /** + * Dark variant of the primary branding color. By default, this is the color applied to + * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimaryDark=0x7f03008c; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSecondary=0x7f03008d; + /** + * The color applied to framework switch thumbs in their normal state. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSwitchThumbNormal=0x7f03008e; + /** + * Commit icon shown in the query suggestion row + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int commitIcon=0x7f03008f; + /** + * The content description associated with the item. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int contentDescription=0x7f030090; + /** + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetEnd=0x7f030091; + /** + * Minimum inset for content views within a bar when actions from a menu + * are present. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetEndWithActions=0x7f030092; + /** + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetLeft=0x7f030093; + /** + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetRight=0x7f030094; + /** + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetStart=0x7f030095; + /** + * Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetStartWithNavigation=0x7f030096; + /** + * Inner padding between the edges of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPadding=0x7f030097; + /** + * Inner padding between the bottom edge of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingBottom=0x7f030098; + /** + * Inner padding between the left edge of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingLeft=0x7f030099; + /** + * Inner padding between the right edge of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingRight=0x7f03009a; + /** + * Inner padding between the top edge of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingTop=0x7f03009b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int contentScrim=0x7f03009c; + /** + * The background used by framework controls. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int controlBackground=0x7f03009d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int coordinatorLayoutStyle=0x7f03009e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int cornerRadius=0x7f03009f; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int counterEnabled=0x7f0300a0; + /** + *

May be an integer value, such as "100". + */ + public static final int counterMaxLength=0x7f0300a1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int counterOverflowTextAppearance=0x7f0300a2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int counterTextAppearance=0x7f0300a3; + /** + * Specifies a layout for custom navigation. Overrides navigationMode. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int customNavigationLayout=0x7f0300a4; + /** + * Default query hint used when {@code queryHint} is undefined and + * the search view's {@code SearchableInfo} does not provide a hint. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int defaultQueryHint=0x7f0300a5; + /** + * Preferred corner radius of dialogs. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dialogCornerRadius=0x7f0300a6; + /** + * Preferred padding for dialog content. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dialogPreferredPadding=0x7f0300a7; + /** + * Theme to use for dialogs spawned from this theme. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dialogTheme=0x7f0300a8; + /** + * Options affecting how the action bar is displayed. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
+ */ + public static final int displayOptions=0x7f0300a9; + /** + * Specifies the drawable used for item dividers. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int divider=0x7f0300aa; + /** + * A drawable that may be used as a horizontal divider between visual elements. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dividerHorizontal=0x7f0300ab; + /** + * Size of padding on either end of a divider. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dividerPadding=0x7f0300ac; + /** + * A drawable that may be used as a vertical divider between visual elements. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dividerVertical=0x7f0300ad; + /** + * The total size of the drawable + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int drawableSize=0x7f0300ae; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int drawerArrowStyle=0x7f0300af; + /** + * ListPopupWindow compatibility + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dropDownListViewStyle=0x7f0300b0; + /** + * The preferred item height for dropdown lists. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dropdownListPreferredItemHeight=0x7f0300b1; + /** + * EditText background drawable. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int editTextBackground=0x7f0300b2; + /** + * EditText text foreground color. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int editTextColor=0x7f0300b3; + /** + * Default EditText style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int editTextStyle=0x7f0300b4; + /** + * Elevation for the action bar itself + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int elevation=0x7f0300b5; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int enforceMaterialTheme=0x7f0300b6; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int enforceTextAppearance=0x7f0300b7; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int errorEnabled=0x7f0300b8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int errorTextAppearance=0x7f0300b9; + /** + * The drawable to show in the button for expanding the activities overflow popup. + * Note: Clients would like to set this drawable + * as a clue about the action the chosen activity will perform. For + * example, if share activity is to be chosen the drawable should + * give a clue that sharing is to be performed. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f0300ba; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int expanded=0x7f0300bb; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
end800005
fill_vertical70
left3
right5
start800003
top30
+ */ + public static final int expandedTitleGravity=0x7f0300bc; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMargin=0x7f0300bd; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMarginBottom=0x7f0300be; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMarginEnd=0x7f0300bf; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMarginStart=0x7f0300c0; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMarginTop=0x7f0300c1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int expandedTitleTextAppearance=0x7f0300c2; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
center0
end1
+ */ + public static final int fabAlignmentMode=0x7f0300c3; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int fabCradleMargin=0x7f0300c4; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int fabCradleRoundedCornerRadius=0x7f0300c5; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int fabCradleVerticalOffset=0x7f0300c6; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int fabCustomSize=0x7f0300c7; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
mini1
normal0
+ */ + public static final int fabSize=0x7f0300c8; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int fastScrollEnabled=0x7f0300c9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f0300ca; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f0300cb; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f0300cc; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f0300cd; + /** + * Distance from the top of the TextView to the first text baseline. If set, this + * overrides the value set for paddingTop. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int firstBaselineToTopHeight=0x7f0300ce; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be an integer value, such as "100". + *

May be a boolean value, such as "true" or + * "false". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int floatingActionButtonStyle=0x7f0300cf; + /** + * The reference to the font file to be used. This should be a file in the res/font folder + * and should therefore have an R reference value. E.g. @font/myfont + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int font=0x7f0300d0; + /** + * The attribute for the font family. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontFamily=0x7f0300d1; + /** + * The authority of the Font Provider to be used for the request. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderAuthority=0x7f0300d2; + /** + * The sets of hashes for the certificates the provider should be signed with. This is + * used to verify the identity of the provider, and is only required if the provider is not + * part of the system image. This value may point to one list or a list of lists, where each + * individual list represents one collection of signature hashes. Refer to your font provider's + * documentation for these values. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fontProviderCerts=0x7f0300d3; + /** + * The strategy to be used when fetching font data from a font provider in XML layouts. + * This attribute is ignored when the resource is loaded from code, as it is equivalent to the + * choice of API between {@link + * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + * {@link + * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + * (async). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
async1The async font fetch works as follows. + * First, check the local cache, then if the requeted font is not cached, trigger a + * request the font and continue with layout inflation. Once the font fetch succeeds, the + * target text view will be refreshed with the downloaded font data. The + * fontProviderFetchTimeout will be ignored if async loading is specified.
blocking0The blocking font fetch works as follows. + * First, check the local cache, then if the requested font is not cached, request the + * font from the provider and wait until it is finished. You can change the length of + * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + * default typeface will be used instead.
+ */ + public static final int fontProviderFetchStrategy=0x7f0300d4; + /** + * The length of the timeout during fetching. + *

May be an integer value, such as "100". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
foreverffffffffA special value for the timeout. In this case, the blocking font fetching will not + * timeout and wait until a reply is received from the font provider.
+ */ + public static final int fontProviderFetchTimeout=0x7f0300d5; + /** + * The package for the Font Provider to be used for the request. This is used to verify + * the identity of the provider. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderPackage=0x7f0300d6; + /** + * The query to be sent over to the provider. Refer to your font provider's documentation + * on the format of this string. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderQuery=0x7f0300d7; + /** + * The style of the given font file. This will be used when the font is being loaded into + * the font stack and will override any style information in the font's header tables. If + * unspecified, the value in the font's header tables will be used. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
italic1
normal0
+ */ + public static final int fontStyle=0x7f0300d8; + /** + * The variation settings to be applied to the font. The string should be in the following + * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + * used, or the font used does not support variation settings, this attribute needs not be + * specified. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontVariationSettings=0x7f0300d9; + /** + * The weight of the given font file. This will be used when the font is being loaded into + * the font stack and will override any weight information in the font's header tables. Must + * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + * in the font's header tables will be used. + *

May be an integer value, such as "100". + */ + public static final int fontWeight=0x7f0300da; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int foregroundInsidePadding=0x7f0300db; + /** + * The max gap between the bars when they are parallel to each other + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int gapBetweenBars=0x7f0300dc; + /** + * Go button icon + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int goIcon=0x7f0300dd; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int headerLayout=0x7f0300de; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int height=0x7f0300df; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int helperText=0x7f0300e0; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int helperTextEnabled=0x7f0300e1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int helperTextTextAppearance=0x7f0300e2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int hideMotionSpec=0x7f0300e3; + /** + * Set true to hide the action bar on a vertical nested scroll of content. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hideOnContentScroll=0x7f0300e4; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hideOnScroll=0x7f0300e5; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hintAnimationEnabled=0x7f0300e6; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hintEnabled=0x7f0300e7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int hintTextAppearance=0x7f0300e8; + /** + * Specifies a drawable to use for the 'home as up' indicator. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int homeAsUpIndicator=0x7f0300e9; + /** + * Specifies a layout to use for the "home" section of the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int homeLayout=0x7f0300ea; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int hoveredFocusedTranslationZ=0x7f0300eb; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int icon=0x7f0300ec; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int iconEndPadding=0x7f0300ed; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
start1
textStart2
+ */ + public static final int iconGravity=0x7f0300ee; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int iconPadding=0x7f0300ef; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int iconSize=0x7f0300f0; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int iconStartPadding=0x7f0300f1; + /** + * Tint to apply to the icon. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int iconTint=0x7f0300f2; + /** + * Blending mode used to apply the icon tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the icon with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the icon, but with the icon’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the icon. The icon’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the icon. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int iconTintMode=0x7f0300f3; + /** + * The default state of the SearchView. If true, it will be iconified when not in + * use and expanded when clicked. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int iconifiedByDefault=0x7f0300f4; + /** + * ImageButton background drawable. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int imageButtonStyle=0x7f0300f5; + /** + * Specifies a style resource to use for an indeterminate progress spinner. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int indeterminateProgressStyle=0x7f0300f6; + /** + * The maximal number of items initially shown in the activity list. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int initialActivityCount=0x7f0300f7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int insetForeground=0x7f0300f8; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int isLightTheme=0x7f0300f9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemBackground=0x7f0300fa; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemHorizontalPadding=0x7f0300fb; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int itemHorizontalTranslationEnabled=0x7f0300fc; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemIconPadding=0x7f0300fd; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemIconSize=0x7f0300fe; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int itemIconTint=0x7f0300ff; + /** + * Specifies padding that should be applied to the left and right sides of + * system-provided items in the bar. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemPadding=0x7f030100; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemSpacing=0x7f030101; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemTextAppearance=0x7f030102; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemTextAppearanceActive=0x7f030103; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemTextAppearanceInactive=0x7f030104; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int itemTextColor=0x7f030105; + /** + * A reference to an array of integers representing the + * locations of horizontal keylines in dp from the starting edge. + * Child views can refer to these keylines for alignment using + * layout_keyline="index" where index is a 0-based index into + * this array. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int keylines=0x7f030106; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
labeled1
selected0
unlabeled2
+ */ + public static final int labelVisibilityMode=0x7f030107; + /** + * Distance from the bottom of the TextView to the last text baseline. If set, this + * overrides the value set for paddingBottom. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int lastBaselineToBottomHeight=0x7f030108; + /** + * The layout to use for the search view. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layout=0x7f030109; + /** + * Class name of the Layout Manager to be used. + *

+ * The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager + * and have either a default constructor or constructor with the signature + * (android.content.Context, android.util.AttributeSet, int, int). + *

+ * If the name starts with a '.', application package is prefixed. + * Else, if the name contains a '.', the classname is assumed to be a full class name. + * Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int layoutManager=0x7f03010a; + /** + * The id of an anchor view that this view should position relative to. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layout_anchor=0x7f03010b; + /** + * Specifies how an object should position relative to an anchor, on both the X and Y axes, + * within its parent's bounds. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
center11Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
center_horizontal1Place object in the horizontal center of its container, not changing its size.
center_vertical10Place object in the vertical center of its container, not changing its size.
clip_horizontal8Additional option that can be set to have the left and/or right edges of + * the child clipped to its container's bounds. + * The clip will be based on the horizontal gravity: a left gravity will clip the right + * edge, a right gravity will clip the left edge, and neither will clip both edges.
clip_vertical80Additional option that can be set to have the top and/or bottom edges of + * the child clipped to its container's bounds. + * The clip will be based on the vertical gravity: a top gravity will clip the bottom + * edge, a bottom gravity will clip the top edge, and neither will clip both edges.
end800005Push object to the end of its container, not changing its size.
fill77Grow the horizontal and vertical size of the object if needed so it completely fills its container.
fill_horizontal7Grow the horizontal size of the object if needed so it completely fills its container.
fill_vertical70Grow the vertical size of the object if needed so it completely fills its container.
left3Push object to the left of its container, not changing its size.
right5Push object to the right of its container, not changing its size.
start800003Push object to the beginning of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ */ + public static final int layout_anchorGravity=0x7f03010c; + /** + * The class name of a Behavior class defining special runtime behavior + * for this child view. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int layout_behavior=0x7f03010d; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
none0
parallax2
pin1
+ */ + public static final int layout_collapseMode=0x7f03010e; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int layout_collapseParallaxMultiplier=0x7f03010f; + /** + * Specifies how this view dodges the inset edges of the CoordinatorLayout. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
all77Dodge all the inset edges.
bottom50Dodge the bottom inset edge.
end800005Dodge the end inset edge.
left3Dodge the left inset edge.
none0Don't dodge any edges
right5Dodge the right inset edge.
start800003Dodge the start inset edge.
top30Dodge the top inset edge.
+ */ + public static final int layout_dodgeInsetEdges=0x7f030110; + /** + * Specifies how this view insets the CoordinatorLayout and make some other views + * dodge it. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Inset the bottom edge.
end800005Inset the end edge.
left3Inset the left edge.
none0Don't inset.
right5Inset the right edge.
start800003Inset the start edge.
top30Inset the top edge.
+ */ + public static final int layout_insetEdge=0x7f030111; + /** + * The index of a keyline this view should position relative to. + * android:layout_gravity will affect how the view aligns to the + * specified keyline. + *

May be an integer value, such as "100". + */ + public static final int layout_keyline=0x7f030112; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
enterAlways4
enterAlwaysCollapsed8
exitUntilCollapsed2
scroll1
snap10
snapMargins20
+ */ + public static final int layout_scrollFlags=0x7f030113; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layout_scrollInterpolator=0x7f030114; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int liftOnScroll=0x7f030115; + /** + * Explicit height between lines of text. If set, this will override the values set + * for lineSpacingExtra and lineSpacingMultiplier. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int lineHeight=0x7f030116; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int lineSpacing=0x7f030117; + /** + * Drawable used as a background for selected list items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listChoiceBackgroundIndicator=0x7f030118; + /** + * The list divider used in alert dialogs. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listDividerAlertDialog=0x7f030119; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listItemLayout=0x7f03011a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listLayout=0x7f03011b; + /** + * Default menu-style ListView style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listMenuViewStyle=0x7f03011c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listPopupWindowStyle=0x7f03011d; + /** + * The preferred list item height. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeight=0x7f03011e; + /** + * A larger, more robust list item height. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeightLarge=0x7f03011f; + /** + * A smaller, sleeker list item height. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeightSmall=0x7f030120; + /** + * The preferred padding along the left edge of list items. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemPaddingLeft=0x7f030121; + /** + * The preferred padding along the right edge of list items. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemPaddingRight=0x7f030122; + /** + * Specifies the drawable used for the application logo. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int logo=0x7f030123; + /** + * A content description string to describe the appearance of the + * associated logo image. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int logoDescription=0x7f030124; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialButtonStyle=0x7f030125; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCardViewStyle=0x7f030126; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int maxActionInlineWidth=0x7f030127; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int maxButtonHeight=0x7f030128; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int maxImageSize=0x7f030129; + /** + * When set to true, all children with a weight will be considered having + * the minimum size of the largest child. If false, all children are + * measured normally. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int measureWithLargestChild=0x7f03012a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int menu=0x7f03012b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int multiChoiceItemLayout=0x7f03012c; + /** + * Text to set as the content description for the navigation button + * located at the start of the toolbar. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int navigationContentDescription=0x7f03012d; + /** + * Icon drawable to use for the navigation button located at + * the start of the toolbar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int navigationIcon=0x7f03012e; + /** + * The type of navigation to use. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
listMode1The action bar will use a selection list for navigation.
normal0Normal static title text
tabMode2The action bar will use a series of horizontal tabs for navigation.
+ */ + public static final int navigationMode=0x7f03012f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int navigationViewStyle=0x7f030130; + /** + * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) + * keyboard. The values should be kept in sync with KeyEvent + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ */ + public static final int numericModifiers=0x7f030131; + /** + * Whether the popup window should overlap its anchor view. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int overlapAnchor=0x7f030132; + /** + * Bottom padding to use when no buttons are present. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingBottomNoButtons=0x7f030133; + /** + * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingEnd=0x7f030134; + /** + * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingStart=0x7f030135; + /** + * Top padding to use when no title is present. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingTopNoTitle=0x7f030136; + /** + * The background of a panel when it is inset from the left and right edges of the screen. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int panelBackground=0x7f030137; + /** + * Default Panel Menu style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int panelMenuListTheme=0x7f030138; + /** + * Default Panel Menu width. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int panelMenuListWidth=0x7f030139; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int passwordToggleContentDescription=0x7f03013a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int passwordToggleDrawable=0x7f03013b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int passwordToggleEnabled=0x7f03013c; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int passwordToggleTint=0x7f03013d; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
+ */ + public static final int passwordToggleTintMode=0x7f03013e; + /** + * Default PopupMenu style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupMenuStyle=0x7f03013f; + /** + * Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupTheme=0x7f030140; + /** + * Default PopupWindow style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupWindowStyle=0x7f030141; + /** + * Whether space should be reserved in layout when an icon is missing. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int preserveIconSpacing=0x7f030142; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int pressedTranslationZ=0x7f030143; + /** + * Specifies the horizontal padding on either end for an embedded progress bar. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int progressBarPadding=0x7f030144; + /** + * Specifies a style resource to use for an embedded progress bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int progressBarStyle=0x7f030145; + /** + * Background for the section containing the search query + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int queryBackground=0x7f030146; + /** + * An optional user-defined query hint string to be displayed in the empty query field. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int queryHint=0x7f030147; + /** + * Default RadioButton style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int radioButtonStyle=0x7f030148; + /** + * Default RatingBar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyle=0x7f030149; + /** + * Indicator RatingBar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyleIndicator=0x7f03014a; + /** + * Small indicator RatingBar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyleSmall=0x7f03014b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int reverseLayout=0x7f03014c; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int rippleColor=0x7f03014d; + /** + *

May be an integer value, such as "100". + */ + public static final int scrimAnimationDuration=0x7f03014e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int scrimBackground=0x7f03014f; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int scrimVisibleHeightTrigger=0x7f030150; + /** + * Search icon displayed as a text field hint + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchHintIcon=0x7f030151; + /** + * Search icon + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchIcon=0x7f030152; + /** + * Style for the search query widget. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchViewStyle=0x7f030153; + /** + * Default SeekBar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int seekBarStyle=0x7f030154; + /** + * A style that may be applied to buttons or other selectable items + * that should react to pressed and focus states, but that do not + * have a clear visual border along the edges. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int selectableItemBackground=0x7f030155; + /** + * Background drawable for borderless standalone items that need focus/pressed states. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int selectableItemBackgroundBorderless=0x7f030156; + /** + * How this item should display in the Action Bar, if present. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
always2Always show this item in an actionbar, even if it would override + * the system's limits of how much stuff to put there. This may make + * your action bar look bad on some screens. In most cases you should + * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".
collapseActionView8This item's action view collapses to a normal menu + * item. When expanded, the action view takes over a + * larger segment of its container.
ifRoom1Show this item in an action bar if there is room for it as determined + * by the system. Favor this option over "always" where possible. + * Mutually exclusive with "never" and "always".
never0Never show this item in an action bar, show it in the overflow menu instead. + * Mutually exclusive with "ifRoom" and "always".
withText4When this item is shown as an action in the action bar, show a text + * label with it even if it has an icon representation.
+ */ + public static final int showAsAction=0x7f030157; + /** + * Setting for which dividers to show. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
beginning1
end4
middle2
none0
+ */ + public static final int showDividers=0x7f030158; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int showMotionSpec=0x7f030159; + /** + * Whether to draw on/off text. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int showText=0x7f03015a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int showTitle=0x7f03015b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int singleChoiceItemLayout=0x7f03015c; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int singleLine=0x7f03015d; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int singleSelection=0x7f03015e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int snackbarButtonStyle=0x7f03015f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int snackbarStyle=0x7f030160; + /** + *

May be an integer value, such as "100". + */ + public static final int spanCount=0x7f030161; + /** + * Whether bars should rotate or not during transition + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int spinBars=0x7f030162; + /** + * Default Spinner style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int spinnerDropDownItemStyle=0x7f030163; + /** + * Default Spinner style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int spinnerStyle=0x7f030164; + /** + * Whether to split the track and leave a gap for the thumb drawable. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int splitTrack=0x7f030165; + /** + * Sets a drawable as the content of this ImageView. Allows the use of vector drawable + * when running on older versions of the platform. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int srcCompat=0x7f030166; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int stackFromEnd=0x7f030167; + /** + * State identifier indicating the popup will be above the anchor. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_above_anchor=0x7f030168; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_collapsed=0x7f030169; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_collapsible=0x7f03016a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_liftable=0x7f03016b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_lifted=0x7f03016c; + /** + * Drawable to display behind the status bar when the view is set to draw behind it. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int statusBarBackground=0x7f03016d; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int statusBarScrim=0x7f03016e; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int strokeColor=0x7f03016f; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int strokeWidth=0x7f030170; + /** + * Drawable for the arrow icon indicating a particular item is a submenu. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subMenuArrow=0x7f030171; + /** + * Background for the section containing the action (e.g. voice search) + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int submitBackground=0x7f030172; + /** + * Specifies subtitle text used for navigationMode="normal" + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int subtitle=0x7f030173; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subtitleTextAppearance=0x7f030174; + /** + * A color to apply to the subtitle string. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int subtitleTextColor=0x7f030175; + /** + * Specifies a style to use for subtitle text. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subtitleTextStyle=0x7f030176; + /** + * Layout for query suggestion rows + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int suggestionRowLayout=0x7f030177; + /** + * Minimum width for the switch component + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int switchMinWidth=0x7f030178; + /** + * Minimum space between the switch and caption text + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int switchPadding=0x7f030179; + /** + * Default style for the Switch widget. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int switchStyle=0x7f03017a; + /** + * TextAppearance style for text displayed on the switch thumb. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int switchTextAppearance=0x7f03017b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabBackground=0x7f03017c; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabContentStart=0x7f03017d; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
center1
fill0
+ */ + public static final int tabGravity=0x7f03017e; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabIconTint=0x7f03017f; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
+ */ + public static final int tabIconTintMode=0x7f030180; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabIndicator=0x7f030181; + /** + *

May be an integer value, such as "100". + */ + public static final int tabIndicatorAnimationDuration=0x7f030182; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabIndicatorColor=0x7f030183; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int tabIndicatorFullWidth=0x7f030184; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom0
center1
stretch3
top2
+ */ + public static final int tabIndicatorGravity=0x7f030185; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabIndicatorHeight=0x7f030186; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int tabInlineLabel=0x7f030187; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabMaxWidth=0x7f030188; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabMinWidth=0x7f030189; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
fixed1
scrollable0
+ */ + public static final int tabMode=0x7f03018a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPadding=0x7f03018b; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPaddingBottom=0x7f03018c; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPaddingEnd=0x7f03018d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPaddingStart=0x7f03018e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPaddingTop=0x7f03018f; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabRippleColor=0x7f030190; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabSelectedTextColor=0x7f030191; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabStyle=0x7f030192; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabTextAppearance=0x7f030193; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabTextColor=0x7f030194; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int tabUnboundedRipple=0x7f030195; + /** + * Present the text in ALL CAPS. This may use a small-caps form when available. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int textAllCaps=0x7f030196; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceBody1=0x7f030197; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceBody2=0x7f030198; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceButton=0x7f030199; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceCaption=0x7f03019a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline1=0x7f03019b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline2=0x7f03019c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline3=0x7f03019d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline4=0x7f03019e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline5=0x7f03019f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline6=0x7f0301a0; + /** + * Text color, typeface, size, and style for the text inside of a popup menu. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0301a1; + /** + * The preferred TextAppearance for the primary text of list items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItem=0x7f0301a2; + /** + * The preferred TextAppearance for the secondary text of list items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItemSecondary=0x7f0301a3; + /** + * The preferred TextAppearance for the primary text of small list items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItemSmall=0x7f0301a4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceOverline=0x7f0301a5; + /** + * Text color, typeface, size, and style for header text inside of a popup menu. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0301a6; + /** + * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0301a7; + /** + * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0301a8; + /** + * Text color, typeface, size, and style for small text inside of a popup menu. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0301a9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSubtitle1=0x7f0301aa; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSubtitle2=0x7f0301ab; + /** + * Color of list item text in alert dialogs. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0301ac; + /** + * Text color for urls in search suggestions, used by things like global search + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0301ad; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int textEndPadding=0x7f0301ae; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textInputStyle=0x7f0301af; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int textStartPadding=0x7f0301b0; + /** + * Deprecated. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int theme=0x7f0301b1; + /** + * The thickness (stroke size) for the bar paint + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thickness=0x7f0301b2; + /** + * Amount of padding on either side of text within the switch thumb. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thumbTextPadding=0x7f0301b3; + /** + * Tint to apply to the thumb drawable. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int thumbTint=0x7f0301b4; + /** + * Blending mode used to apply the thumb tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int thumbTintMode=0x7f0301b5; + /** + * Drawable displayed at each progress position on a seekbar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tickMark=0x7f0301b6; + /** + * Tint to apply to the tick mark drawable. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tickMarkTint=0x7f0301b7; + /** + * Blending mode used to apply the tick mark tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int tickMarkTintMode=0x7f0301b8; + /** + * Tint to apply to the image source. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tint=0x7f0301b9; + /** + * Blending mode used to apply the image source tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int tintMode=0x7f0301ba; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int title=0x7f0301bb; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int titleEnabled=0x7f0301bc; + /** + * Specifies extra space on the left, start, right and end sides + * of the toolbar's title. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMargin=0x7f0301bd; + /** + * Specifies extra space on the bottom side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginBottom=0x7f0301be; + /** + * Specifies extra space on the end side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginEnd=0x7f0301bf; + /** + * Specifies extra space on the start side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginStart=0x7f0301c0; + /** + * Specifies extra space on the top side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginTop=0x7f0301c1; + /** + * {@deprecated Use titleMargin} + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + @Deprecated + public static final int titleMargins=0x7f0301c2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int titleTextAppearance=0x7f0301c3; + /** + * A color to apply to the title string. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int titleTextColor=0x7f0301c4; + /** + * Specifies a style to use for title text. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int titleTextStyle=0x7f0301c5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarId=0x7f0301c6; + /** + * Default Toolar NavigationButtonStyle + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0301c7; + /** + * Default Toolbar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarStyle=0x7f0301c8; + /** + * Foreground color to use for tooltips + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f0301c9; + /** + * Background to use for tooltips + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tooltipFrameBackground=0x7f0301ca; + /** + * The tooltip text associated with the item. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int tooltipText=0x7f0301cb; + /** + * Drawable to use as the "track" that the switch thumb slides within. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int track=0x7f0301cc; + /** + * Tint to apply to the track. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int trackTint=0x7f0301cd; + /** + * Blending mode used to apply the track tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int trackTintMode=0x7f0301ce; + /** + * The index of the font in the tcc font file. If the font file referenced is not in the + * tcc format, this attribute needs not be specified. + *

May be an integer value, such as "100". + */ + public static final int ttcIndex=0x7f0301cf; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int useCompatPadding=0x7f0301d0; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int viewInflaterClass=0x7f0301d1; + /** + * Voice button icon + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int voiceIcon=0x7f0301d2; + /** + * Flag indicating whether this window should have an Action Bar + * in place of the usual title bar. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionBar=0x7f0301d3; + /** + * Flag indicating whether this window's Action Bar should overlay + * application content. Does nothing if the window would not + * have an Action Bar. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionBarOverlay=0x7f0301d4; + /** + * Flag indicating whether action modes should overlay window content + * when there is not reserved space for their UI (such as an Action Bar). + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionModeOverlay=0x7f0301d5; + /** + * A fixed height for the window along the major axis of the screen, + * that is, when in portrait. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedHeightMajor=0x7f0301d6; + /** + * A fixed height for the window along the minor axis of the screen, + * that is, when in landscape. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedHeightMinor=0x7f0301d7; + /** + * A fixed width for the window along the major axis of the screen, + * that is, when in landscape. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedWidthMajor=0x7f0301d8; + /** + * A fixed width for the window along the minor axis of the screen, + * that is, when in portrait. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedWidthMinor=0x7f0301d9; + /** + * The minimum width the window is allowed to be, along the major + * axis of the screen. That is, when in landscape. Can be either + * an absolute dimension or a fraction of the screen size in that + * dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowMinWidthMajor=0x7f0301da; + /** + * The minimum width the window is allowed to be, along the minor + * axis of the screen. That is, when in portrait. Can be either + * an absolute dimension or a fraction of the screen size in that + * dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowMinWidthMinor=0x7f0301db; + /** + * Flag indicating whether there should be no title on this window. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowNoTitle=0x7f0301dc; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f040000; + public static final int abc_allow_stacked_button_bar=0x7f040001; + public static final int abc_config_actionMenuItemAllCaps=0x7f040002; + public static final int mtrl_btn_textappearance_all_caps=0x7f040003; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f050000; + public static final int abc_background_cache_hint_selector_material_light=0x7f050001; + public static final int abc_btn_colored_borderless_text_material=0x7f050002; + public static final int abc_btn_colored_text_material=0x7f050003; + public static final int abc_color_highlight_material=0x7f050004; + public static final int abc_hint_foreground_material_dark=0x7f050005; + public static final int abc_hint_foreground_material_light=0x7f050006; + public static final int abc_input_method_navigation_guard=0x7f050007; + public static final int abc_primary_text_disable_only_material_dark=0x7f050008; + public static final int abc_primary_text_disable_only_material_light=0x7f050009; + public static final int abc_primary_text_material_dark=0x7f05000a; + public static final int abc_primary_text_material_light=0x7f05000b; + public static final int abc_search_url_text=0x7f05000c; + public static final int abc_search_url_text_normal=0x7f05000d; + public static final int abc_search_url_text_pressed=0x7f05000e; + public static final int abc_search_url_text_selected=0x7f05000f; + public static final int abc_secondary_text_material_dark=0x7f050010; + public static final int abc_secondary_text_material_light=0x7f050011; + public static final int abc_tint_btn_checkable=0x7f050012; + public static final int abc_tint_default=0x7f050013; + public static final int abc_tint_edittext=0x7f050014; + public static final int abc_tint_seek_thumb=0x7f050015; + public static final int abc_tint_spinner=0x7f050016; + public static final int abc_tint_switch_track=0x7f050017; + public static final int accent=0x7f050018; + public static final int accent_material_dark=0x7f050019; + public static final int accent_material_light=0x7f05001a; + public static final int background_floating_material_dark=0x7f05001b; + public static final int background_floating_material_light=0x7f05001c; + public static final int background_material_dark=0x7f05001d; + public static final int background_material_light=0x7f05001e; + public static final int bright_foreground_disabled_material_dark=0x7f05001f; + public static final int bright_foreground_disabled_material_light=0x7f050020; + public static final int bright_foreground_inverse_material_dark=0x7f050021; + public static final int bright_foreground_inverse_material_light=0x7f050022; + public static final int bright_foreground_material_dark=0x7f050023; + public static final int bright_foreground_material_light=0x7f050024; + public static final int button_material_dark=0x7f050025; + public static final int button_material_light=0x7f050026; + public static final int cardview_dark_background=0x7f050027; + public static final int cardview_light_background=0x7f050028; + public static final int cardview_shadow_end_color=0x7f050029; + public static final int cardview_shadow_start_color=0x7f05002a; + public static final int design_bottom_navigation_shadow_color=0x7f05002b; + public static final int design_default_color_primary=0x7f05002c; + public static final int design_default_color_primary_dark=0x7f05002d; + public static final int design_error=0x7f05002e; + public static final int design_fab_shadow_end_color=0x7f05002f; + public static final int design_fab_shadow_mid_color=0x7f050030; + public static final int design_fab_shadow_start_color=0x7f050031; + public static final int design_fab_stroke_end_inner_color=0x7f050032; + public static final int design_fab_stroke_end_outer_color=0x7f050033; + public static final int design_fab_stroke_top_inner_color=0x7f050034; + public static final int design_fab_stroke_top_outer_color=0x7f050035; + public static final int design_snackbar_background_color=0x7f050036; + public static final int design_tint_password_toggle=0x7f050037; + public static final int dim_foreground_disabled_material_dark=0x7f050038; + public static final int dim_foreground_disabled_material_light=0x7f050039; + public static final int dim_foreground_material_dark=0x7f05003a; + public static final int dim_foreground_material_light=0x7f05003b; + public static final int divider=0x7f05003c; + public static final int error_color_material_dark=0x7f05003d; + public static final int error_color_material_light=0x7f05003e; + public static final int foreground_material_dark=0x7f05003f; + public static final int foreground_material_light=0x7f050040; + public static final int highlighted_text_material_dark=0x7f050041; + public static final int highlighted_text_material_light=0x7f050042; + public static final int icons=0x7f050043; + public static final int material_blue_grey_800=0x7f050044; + public static final int material_blue_grey_900=0x7f050045; + public static final int material_blue_grey_950=0x7f050046; + public static final int material_deep_teal_200=0x7f050047; + public static final int material_deep_teal_500=0x7f050048; + public static final int material_grey_100=0x7f050049; + public static final int material_grey_300=0x7f05004a; + public static final int material_grey_50=0x7f05004b; + public static final int material_grey_600=0x7f05004c; + public static final int material_grey_800=0x7f05004d; + public static final int material_grey_850=0x7f05004e; + public static final int material_grey_900=0x7f05004f; + public static final int mtrl_bottom_nav_colored_item_tint=0x7f050050; + public static final int mtrl_bottom_nav_item_tint=0x7f050051; + public static final int mtrl_btn_bg_color_disabled=0x7f050052; + public static final int mtrl_btn_bg_color_selector=0x7f050053; + public static final int mtrl_btn_ripple_color=0x7f050054; + public static final int mtrl_btn_stroke_color_selector=0x7f050055; + public static final int mtrl_btn_text_btn_ripple_color=0x7f050056; + public static final int mtrl_btn_text_color_disabled=0x7f050057; + public static final int mtrl_btn_text_color_selector=0x7f050058; + public static final int mtrl_btn_transparent_bg_color=0x7f050059; + public static final int mtrl_chip_background_color=0x7f05005a; + public static final int mtrl_chip_close_icon_tint=0x7f05005b; + public static final int mtrl_chip_ripple_color=0x7f05005c; + public static final int mtrl_chip_text_color=0x7f05005d; + public static final int mtrl_fab_ripple_color=0x7f05005e; + public static final int mtrl_scrim_color=0x7f05005f; + public static final int mtrl_tabs_colored_ripple_color=0x7f050060; + public static final int mtrl_tabs_icon_color_selector=0x7f050061; + public static final int mtrl_tabs_icon_color_selector_colored=0x7f050062; + public static final int mtrl_tabs_legacy_text_color_selector=0x7f050063; + public static final int mtrl_tabs_ripple_color=0x7f050064; + public static final int mtrl_text_btn_text_color_selector=0x7f050065; + public static final int mtrl_textinput_default_box_stroke_color=0x7f050066; + public static final int mtrl_textinput_disabled_color=0x7f050067; + public static final int mtrl_textinput_filled_box_default_background_color=0x7f050068; + public static final int mtrl_textinput_hovered_box_stroke_color=0x7f050069; + public static final int notification_action_color_filter=0x7f05006a; + public static final int notification_icon_bg_color=0x7f05006b; + public static final int notification_material_background_media_default_color=0x7f05006c; + public static final int primary=0x7f05006d; + public static final int primary_dark=0x7f05006e; + public static final int primary_dark_material_dark=0x7f05006f; + public static final int primary_dark_material_light=0x7f050070; + public static final int primary_light=0x7f050071; + public static final int primary_material_dark=0x7f050072; + public static final int primary_material_light=0x7f050073; + public static final int primary_text=0x7f050074; + public static final int primary_text_default_material_dark=0x7f050075; + public static final int primary_text_default_material_light=0x7f050076; + public static final int primary_text_disabled_material_dark=0x7f050077; + public static final int primary_text_disabled_material_light=0x7f050078; + public static final int ripple_material_dark=0x7f050079; + public static final int ripple_material_light=0x7f05007a; + public static final int secondary_text=0x7f05007b; + public static final int secondary_text_default_material_dark=0x7f05007c; + public static final int secondary_text_default_material_light=0x7f05007d; + public static final int secondary_text_disabled_material_dark=0x7f05007e; + public static final int secondary_text_disabled_material_light=0x7f05007f; + public static final int switch_thumb_disabled_material_dark=0x7f050080; + public static final int switch_thumb_disabled_material_light=0x7f050081; + public static final int switch_thumb_material_dark=0x7f050082; + public static final int switch_thumb_material_light=0x7f050083; + public static final int switch_thumb_normal_material_dark=0x7f050084; + public static final int switch_thumb_normal_material_light=0x7f050085; + public static final int tooltip_background_dark=0x7f050086; + public static final int tooltip_background_light=0x7f050087; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f060000; + public static final int abc_action_bar_content_inset_with_nav=0x7f060001; + public static final int abc_action_bar_default_height_material=0x7f060002; + public static final int abc_action_bar_default_padding_end_material=0x7f060003; + public static final int abc_action_bar_default_padding_start_material=0x7f060004; + public static final int abc_action_bar_elevation_material=0x7f060005; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f060006; + public static final int abc_action_bar_overflow_padding_end_material=0x7f060007; + public static final int abc_action_bar_overflow_padding_start_material=0x7f060008; + public static final int abc_action_bar_stacked_max_height=0x7f060009; + public static final int abc_action_bar_stacked_tab_max_width=0x7f06000a; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f06000b; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f06000c; + public static final int abc_action_button_min_height_material=0x7f06000d; + public static final int abc_action_button_min_width_material=0x7f06000e; + public static final int abc_action_button_min_width_overflow_material=0x7f06000f; + public static final int abc_alert_dialog_button_bar_height=0x7f060010; + public static final int abc_alert_dialog_button_dimen=0x7f060011; + public static final int abc_button_inset_horizontal_material=0x7f060012; + public static final int abc_button_inset_vertical_material=0x7f060013; + public static final int abc_button_padding_horizontal_material=0x7f060014; + public static final int abc_button_padding_vertical_material=0x7f060015; + public static final int abc_cascading_menus_min_smallest_width=0x7f060016; + public static final int abc_config_prefDialogWidth=0x7f060017; + public static final int abc_control_corner_material=0x7f060018; + public static final int abc_control_inset_material=0x7f060019; + public static final int abc_control_padding_material=0x7f06001a; + public static final int abc_dialog_corner_radius_material=0x7f06001b; + public static final int abc_dialog_fixed_height_major=0x7f06001c; + public static final int abc_dialog_fixed_height_minor=0x7f06001d; + public static final int abc_dialog_fixed_width_major=0x7f06001e; + public static final int abc_dialog_fixed_width_minor=0x7f06001f; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f060020; + public static final int abc_dialog_list_padding_top_no_title=0x7f060021; + public static final int abc_dialog_min_width_major=0x7f060022; + public static final int abc_dialog_min_width_minor=0x7f060023; + public static final int abc_dialog_padding_material=0x7f060024; + public static final int abc_dialog_padding_top_material=0x7f060025; + public static final int abc_dialog_title_divider_material=0x7f060026; + public static final int abc_disabled_alpha_material_dark=0x7f060027; + public static final int abc_disabled_alpha_material_light=0x7f060028; + public static final int abc_dropdownitem_icon_width=0x7f060029; + public static final int abc_dropdownitem_text_padding_left=0x7f06002a; + public static final int abc_dropdownitem_text_padding_right=0x7f06002b; + public static final int abc_edit_text_inset_bottom_material=0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material=0x7f06002d; + public static final int abc_edit_text_inset_top_material=0x7f06002e; + public static final int abc_floating_window_z=0x7f06002f; + public static final int abc_list_item_padding_horizontal_material=0x7f060030; + public static final int abc_panel_menu_list_width=0x7f060031; + public static final int abc_progress_bar_height_material=0x7f060032; + public static final int abc_search_view_preferred_height=0x7f060033; + public static final int abc_search_view_preferred_width=0x7f060034; + public static final int abc_seekbar_track_background_height_material=0x7f060035; + public static final int abc_seekbar_track_progress_height_material=0x7f060036; + public static final int abc_select_dialog_padding_start_material=0x7f060037; + public static final int abc_switch_padding=0x7f060038; + public static final int abc_text_size_body_1_material=0x7f060039; + public static final int abc_text_size_body_2_material=0x7f06003a; + public static final int abc_text_size_button_material=0x7f06003b; + public static final int abc_text_size_caption_material=0x7f06003c; + public static final int abc_text_size_display_1_material=0x7f06003d; + public static final int abc_text_size_display_2_material=0x7f06003e; + public static final int abc_text_size_display_3_material=0x7f06003f; + public static final int abc_text_size_display_4_material=0x7f060040; + public static final int abc_text_size_headline_material=0x7f060041; + public static final int abc_text_size_large_material=0x7f060042; + public static final int abc_text_size_medium_material=0x7f060043; + public static final int abc_text_size_menu_header_material=0x7f060044; + public static final int abc_text_size_menu_material=0x7f060045; + public static final int abc_text_size_small_material=0x7f060046; + public static final int abc_text_size_subhead_material=0x7f060047; + public static final int abc_text_size_subtitle_material_toolbar=0x7f060048; + public static final int abc_text_size_title_material=0x7f060049; + public static final int abc_text_size_title_material_toolbar=0x7f06004a; + public static final int cardview_compat_inset_shadow=0x7f06004b; + public static final int cardview_default_elevation=0x7f06004c; + public static final int cardview_default_radius=0x7f06004d; + public static final int compat_button_inset_horizontal_material=0x7f06004e; + public static final int compat_button_inset_vertical_material=0x7f06004f; + public static final int compat_button_padding_horizontal_material=0x7f060050; + public static final int compat_button_padding_vertical_material=0x7f060051; + public static final int compat_control_corner_material=0x7f060052; + public static final int compat_notification_large_icon_max_height=0x7f060053; + public static final int compat_notification_large_icon_max_width=0x7f060054; + public static final int design_appbar_elevation=0x7f060055; + public static final int design_bottom_navigation_active_item_max_width=0x7f060056; + public static final int design_bottom_navigation_active_item_min_width=0x7f060057; + public static final int design_bottom_navigation_active_text_size=0x7f060058; + public static final int design_bottom_navigation_elevation=0x7f060059; + public static final int design_bottom_navigation_height=0x7f06005a; + public static final int design_bottom_navigation_icon_size=0x7f06005b; + public static final int design_bottom_navigation_item_max_width=0x7f06005c; + public static final int design_bottom_navigation_item_min_width=0x7f06005d; + public static final int design_bottom_navigation_margin=0x7f06005e; + public static final int design_bottom_navigation_shadow_height=0x7f06005f; + public static final int design_bottom_navigation_text_size=0x7f060060; + public static final int design_bottom_sheet_modal_elevation=0x7f060061; + public static final int design_bottom_sheet_peek_height_min=0x7f060062; + public static final int design_fab_border_width=0x7f060063; + public static final int design_fab_elevation=0x7f060064; + public static final int design_fab_image_size=0x7f060065; + public static final int design_fab_size_mini=0x7f060066; + public static final int design_fab_size_normal=0x7f060067; + public static final int design_fab_translation_z_hovered_focused=0x7f060068; + public static final int design_fab_translation_z_pressed=0x7f060069; + public static final int design_navigation_elevation=0x7f06006a; + public static final int design_navigation_icon_padding=0x7f06006b; + public static final int design_navigation_icon_size=0x7f06006c; + public static final int design_navigation_item_horizontal_padding=0x7f06006d; + public static final int design_navigation_item_icon_padding=0x7f06006e; + public static final int design_navigation_max_width=0x7f06006f; + public static final int design_navigation_padding_bottom=0x7f060070; + public static final int design_navigation_separator_vertical_padding=0x7f060071; + public static final int design_snackbar_action_inline_max_width=0x7f060072; + public static final int design_snackbar_background_corner_radius=0x7f060073; + public static final int design_snackbar_elevation=0x7f060074; + public static final int design_snackbar_extra_spacing_horizontal=0x7f060075; + public static final int design_snackbar_max_width=0x7f060076; + public static final int design_snackbar_min_width=0x7f060077; + public static final int design_snackbar_padding_horizontal=0x7f060078; + public static final int design_snackbar_padding_vertical=0x7f060079; + public static final int design_snackbar_padding_vertical_2lines=0x7f06007a; + public static final int design_snackbar_text_size=0x7f06007b; + public static final int design_tab_max_width=0x7f06007c; + public static final int design_tab_scrollable_min_width=0x7f06007d; + public static final int design_tab_text_size=0x7f06007e; + public static final int design_tab_text_size_2line=0x7f06007f; + public static final int design_textinput_caption_translate_y=0x7f060080; + public static final int disabled_alpha_material_dark=0x7f060081; + public static final int disabled_alpha_material_light=0x7f060082; + public static final int fastscroll_default_thickness=0x7f060083; + public static final int fastscroll_margin=0x7f060084; + public static final int fastscroll_minimum_range=0x7f060085; + public static final int highlight_alpha_material_colored=0x7f060086; + public static final int highlight_alpha_material_dark=0x7f060087; + public static final int highlight_alpha_material_light=0x7f060088; + public static final int hint_alpha_material_dark=0x7f060089; + public static final int hint_alpha_material_light=0x7f06008a; + public static final int hint_pressed_alpha_material_dark=0x7f06008b; + public static final int hint_pressed_alpha_material_light=0x7f06008c; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f06008d; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f06008e; + public static final int item_touch_helper_swipe_escape_velocity=0x7f06008f; + public static final int mtrl_bottomappbar_fabOffsetEndMode=0x7f060090; + public static final int mtrl_bottomappbar_fab_cradle_margin=0x7f060091; + public static final int mtrl_bottomappbar_fab_cradle_rounded_corner_radius=0x7f060092; + public static final int mtrl_bottomappbar_fab_cradle_vertical_offset=0x7f060093; + public static final int mtrl_bottomappbar_height=0x7f060094; + public static final int mtrl_btn_corner_radius=0x7f060095; + public static final int mtrl_btn_dialog_btn_min_width=0x7f060096; + public static final int mtrl_btn_disabled_elevation=0x7f060097; + public static final int mtrl_btn_disabled_z=0x7f060098; + public static final int mtrl_btn_elevation=0x7f060099; + public static final int mtrl_btn_focused_z=0x7f06009a; + public static final int mtrl_btn_hovered_z=0x7f06009b; + public static final int mtrl_btn_icon_btn_padding_left=0x7f06009c; + public static final int mtrl_btn_icon_padding=0x7f06009d; + public static final int mtrl_btn_inset=0x7f06009e; + public static final int mtrl_btn_letter_spacing=0x7f06009f; + public static final int mtrl_btn_padding_bottom=0x7f0600a0; + public static final int mtrl_btn_padding_left=0x7f0600a1; + public static final int mtrl_btn_padding_right=0x7f0600a2; + public static final int mtrl_btn_padding_top=0x7f0600a3; + public static final int mtrl_btn_pressed_z=0x7f0600a4; + public static final int mtrl_btn_stroke_size=0x7f0600a5; + public static final int mtrl_btn_text_btn_icon_padding=0x7f0600a6; + public static final int mtrl_btn_text_btn_padding_left=0x7f0600a7; + public static final int mtrl_btn_text_btn_padding_right=0x7f0600a8; + public static final int mtrl_btn_text_size=0x7f0600a9; + public static final int mtrl_btn_z=0x7f0600aa; + public static final int mtrl_card_elevation=0x7f0600ab; + public static final int mtrl_card_spacing=0x7f0600ac; + public static final int mtrl_chip_pressed_translation_z=0x7f0600ad; + public static final int mtrl_chip_text_size=0x7f0600ae; + public static final int mtrl_fab_elevation=0x7f0600af; + public static final int mtrl_fab_translation_z_hovered_focused=0x7f0600b0; + public static final int mtrl_fab_translation_z_pressed=0x7f0600b1; + public static final int mtrl_navigation_elevation=0x7f0600b2; + public static final int mtrl_navigation_item_horizontal_padding=0x7f0600b3; + public static final int mtrl_navigation_item_icon_padding=0x7f0600b4; + public static final int mtrl_snackbar_background_corner_radius=0x7f0600b5; + public static final int mtrl_snackbar_margin=0x7f0600b6; + public static final int mtrl_textinput_box_bottom_offset=0x7f0600b7; + public static final int mtrl_textinput_box_corner_radius_medium=0x7f0600b8; + public static final int mtrl_textinput_box_corner_radius_small=0x7f0600b9; + public static final int mtrl_textinput_box_label_cutout_padding=0x7f0600ba; + public static final int mtrl_textinput_box_padding_end=0x7f0600bb; + public static final int mtrl_textinput_box_stroke_width_default=0x7f0600bc; + public static final int mtrl_textinput_box_stroke_width_focused=0x7f0600bd; + public static final int mtrl_textinput_outline_box_expanded_padding=0x7f0600be; + public static final int mtrl_toolbar_default_height=0x7f0600bf; + public static final int notification_action_icon_size=0x7f0600c0; + public static final int notification_action_text_size=0x7f0600c1; + public static final int notification_big_circle_margin=0x7f0600c2; + public static final int notification_content_margin_start=0x7f0600c3; + public static final int notification_large_icon_height=0x7f0600c4; + public static final int notification_large_icon_width=0x7f0600c5; + public static final int notification_main_column_padding_top=0x7f0600c6; + public static final int notification_media_narrow_margin=0x7f0600c7; + public static final int notification_right_icon_size=0x7f0600c8; + public static final int notification_right_side_padding_top=0x7f0600c9; + public static final int notification_small_icon_background_padding=0x7f0600ca; + public static final int notification_small_icon_size_as_large=0x7f0600cb; + public static final int notification_subtext_size=0x7f0600cc; + public static final int notification_top_pad=0x7f0600cd; + public static final int notification_top_pad_large_text=0x7f0600ce; + public static final int subtitle_corner_radius=0x7f0600cf; + public static final int subtitle_outline_width=0x7f0600d0; + public static final int subtitle_shadow_offset=0x7f0600d1; + public static final int subtitle_shadow_radius=0x7f0600d2; + public static final int tooltip_corner_radius=0x7f0600d3; + public static final int tooltip_horizontal_padding=0x7f0600d4; + public static final int tooltip_margin=0x7f0600d5; + public static final int tooltip_precise_anchor_extra_offset=0x7f0600d6; + public static final int tooltip_precise_anchor_threshold=0x7f0600d7; + public static final int tooltip_vertical_padding=0x7f0600d8; + public static final int tooltip_y_offset_non_touch=0x7f0600d9; + public static final int tooltip_y_offset_touch=0x7f0600da; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f070006; + public static final int abc_action_bar_item_background_material=0x7f070007; + public static final int abc_btn_borderless_material=0x7f070008; + public static final int abc_btn_check_material=0x7f070009; + public static final int abc_btn_check_to_on_mtrl_000=0x7f07000a; + public static final int abc_btn_check_to_on_mtrl_015=0x7f07000b; + public static final int abc_btn_colored_material=0x7f07000c; + public static final int abc_btn_default_mtrl_shape=0x7f07000d; + public static final int abc_btn_radio_material=0x7f07000e; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f07000f; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f070010; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f070011; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f070012; + public static final int abc_cab_background_internal_bg=0x7f070013; + public static final int abc_cab_background_top_material=0x7f070014; + public static final int abc_cab_background_top_mtrl_alpha=0x7f070015; + public static final int abc_control_background_material=0x7f070016; + public static final int abc_dialog_material_background=0x7f070017; + public static final int abc_edit_text_material=0x7f070018; + public static final int abc_ic_ab_back_material=0x7f070019; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f07001a; + public static final int abc_ic_clear_material=0x7f07001b; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f07001c; + public static final int abc_ic_go_search_api_material=0x7f07001d; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f07001e; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f07001f; + public static final int abc_ic_menu_overflow_material=0x7f070020; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f070021; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f070022; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f070023; + public static final int abc_ic_search_api_material=0x7f070024; + public static final int abc_ic_star_black_16dp=0x7f070025; + public static final int abc_ic_star_black_36dp=0x7f070026; + public static final int abc_ic_star_black_48dp=0x7f070027; + public static final int abc_ic_star_half_black_16dp=0x7f070028; + public static final int abc_ic_star_half_black_36dp=0x7f070029; + public static final int abc_ic_star_half_black_48dp=0x7f07002a; + public static final int abc_ic_voice_search_api_material=0x7f07002b; + public static final int abc_item_background_holo_dark=0x7f07002c; + public static final int abc_item_background_holo_light=0x7f07002d; + public static final int abc_list_divider_material=0x7f07002e; + public static final int abc_list_divider_mtrl_alpha=0x7f07002f; + public static final int abc_list_focused_holo=0x7f070030; + public static final int abc_list_longpressed_holo=0x7f070031; + public static final int abc_list_pressed_holo_dark=0x7f070032; + public static final int abc_list_pressed_holo_light=0x7f070033; + public static final int abc_list_selector_background_transition_holo_dark=0x7f070034; + public static final int abc_list_selector_background_transition_holo_light=0x7f070035; + public static final int abc_list_selector_disabled_holo_dark=0x7f070036; + public static final int abc_list_selector_disabled_holo_light=0x7f070037; + public static final int abc_list_selector_holo_dark=0x7f070038; + public static final int abc_list_selector_holo_light=0x7f070039; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f07003a; + public static final int abc_popup_background_mtrl_mult=0x7f07003b; + public static final int abc_ratingbar_indicator_material=0x7f07003c; + public static final int abc_ratingbar_material=0x7f07003d; + public static final int abc_ratingbar_small_material=0x7f07003e; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f07003f; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f070040; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f070041; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f070042; + public static final int abc_scrubber_track_mtrl_alpha=0x7f070043; + public static final int abc_seekbar_thumb_material=0x7f070044; + public static final int abc_seekbar_tick_mark_material=0x7f070045; + public static final int abc_seekbar_track_material=0x7f070046; + public static final int abc_spinner_mtrl_am_alpha=0x7f070047; + public static final int abc_spinner_textfield_background_material=0x7f070048; + public static final int abc_switch_thumb_material=0x7f070049; + public static final int abc_switch_track_mtrl_alpha=0x7f07004a; + public static final int abc_tab_indicator_material=0x7f07004b; + public static final int abc_tab_indicator_mtrl_alpha=0x7f07004c; + public static final int abc_text_cursor_material=0x7f07004d; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f07004e; + public static final int abc_text_select_handle_left_mtrl_light=0x7f07004f; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f070050; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f070051; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f070052; + public static final int abc_text_select_handle_right_mtrl_light=0x7f070053; + public static final int abc_textfield_activated_mtrl_alpha=0x7f070054; + public static final int abc_textfield_default_mtrl_alpha=0x7f070055; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f070056; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f070057; + public static final int abc_textfield_search_material=0x7f070058; + public static final int abc_vector_test=0x7f070059; + public static final int avd_hide_password=0x7f07005a; + public static final int avd_show_password=0x7f07005b; + public static final int bg_material=0x7f07005c; + public static final int design_bottom_navigation_item_background=0x7f07005d; + public static final int design_fab_background=0x7f07005e; + public static final int design_ic_visibility=0x7f07005f; + public static final int design_ic_visibility_off=0x7f070060; + public static final int design_password_eye=0x7f070061; + public static final int design_snackbar_background=0x7f070062; + public static final int ic_call_icon=0x7f070063; + public static final int ic_cervantes=0x7f070064; + public static final int ic_chevron_left_black_48dp=0x7f070065; + public static final int ic_chevron_right_black_48dp=0x7f070066; + public static final int ic_don_quixote=0x7f070067; + public static final int ic_fritzbox=0x7f070068; + public static final int ic_fritzbox_icon=0x7f070069; + public static final int ic_lance=0x7f07006a; + public static final int ic_launcher=0x7f07006b; + public static final int ic_log_icon=0x7f07006c; + public static final int ic_menu_white_36dp=0x7f07006d; + public static final int ic_mtrl_chip_checked_black=0x7f07006e; + public static final int ic_mtrl_chip_checked_circle=0x7f07006f; + public static final int ic_mtrl_chip_close_circle=0x7f070070; + public static final int ic_scene_1=0x7f070071; + public static final int ic_scene_2=0x7f070072; + public static final int ic_scene_3=0x7f070073; + public static final int ic_settings_icon=0x7f070074; + public static final int ic_state_icon=0x7f070075; + public static final int ic_windmil=0x7f070076; + public static final int mtrl_snackbar_background=0x7f070077; + public static final int mtrl_tabs_default_indicator=0x7f070078; + public static final int navigation_empty_icon=0x7f070079; + public static final int notification_action_background=0x7f07007a; + public static final int notification_bg=0x7f07007b; + public static final int notification_bg_low=0x7f07007c; + public static final int notification_bg_low_normal=0x7f07007d; + public static final int notification_bg_low_pressed=0x7f07007e; + public static final int notification_bg_normal=0x7f07007f; + public static final int notification_bg_normal_pressed=0x7f070080; + public static final int notification_icon_background=0x7f070081; + public static final int notification_template_icon_bg=0x7f070082; + public static final int notification_template_icon_low_bg=0x7f070083; + public static final int notification_tile_bg=0x7f070084; + public static final int notify_panel_notification_icon_bg=0x7f070085; + public static final int tooltip_frame_dark=0x7f070086; + public static final int tooltip_frame_light=0x7f070087; + } + public static final class id { + public static final int ALT=0x7f080000; + public static final int CTRL=0x7f080001; + public static final int FUNCTION=0x7f080002; + public static final int META=0x7f080003; + public static final int SHIFT=0x7f080004; + public static final int SYM=0x7f080005; + public static final int action0=0x7f080006; + public static final int action_bar=0x7f080007; + public static final int action_bar_activity_content=0x7f080008; + public static final int action_bar_container=0x7f080009; + public static final int action_bar_root=0x7f08000a; + public static final int action_bar_spinner=0x7f08000b; + public static final int action_bar_subtitle=0x7f08000c; + public static final int action_bar_title=0x7f08000d; + public static final int action_container=0x7f08000e; + public static final int action_context_bar=0x7f08000f; + public static final int action_divider=0x7f080010; + public static final int action_image=0x7f080011; + public static final int action_menu_divider=0x7f080012; + public static final int action_menu_presenter=0x7f080013; + public static final int action_mode_bar=0x7f080014; + public static final int action_mode_bar_stub=0x7f080015; + public static final int action_mode_close_button=0x7f080016; + public static final int action_text=0x7f080017; + public static final int actions=0x7f080018; + public static final int activity_chooser_view_content=0x7f080019; + public static final int add=0x7f08001a; + public static final int alertTitle=0x7f08001b; + public static final int all=0x7f08001c; + public static final int always=0x7f08001d; + public static final int async=0x7f08001e; + public static final int auto=0x7f08001f; + public static final int beginning=0x7f080020; + public static final int blocking=0x7f080021; + public static final int bottom=0x7f080022; + public static final int buttonPanel=0x7f080023; + public static final int cancel_action=0x7f080024; + public static final int center=0x7f080025; + public static final int center_horizontal=0x7f080026; + public static final int center_vertical=0x7f080027; + public static final int checkbox=0x7f080028; + public static final int chronometer=0x7f080029; + public static final int clip_horizontal=0x7f08002a; + public static final int clip_vertical=0x7f08002b; + public static final int collapseActionView=0x7f08002c; + public static final int container=0x7f08002d; + public static final int content=0x7f08002e; + public static final int contentPanel=0x7f08002f; + public static final int coordinator=0x7f080030; + public static final int custom=0x7f080031; + public static final int customPanel=0x7f080032; + public static final int decor_content_parent=0x7f080033; + public static final int default_activity_button=0x7f080034; + public static final int design_bottom_sheet=0x7f080035; + public static final int design_menu_item_action_area=0x7f080036; + public static final int design_menu_item_action_area_stub=0x7f080037; + public static final int design_menu_item_text=0x7f080038; + public static final int design_navigation_view=0x7f080039; + public static final int disableHome=0x7f08003a; + public static final int edit_query=0x7f08003b; + public static final int end=0x7f08003c; + public static final int end_padder=0x7f08003d; + public static final int enterAlways=0x7f08003e; + public static final int enterAlwaysCollapsed=0x7f08003f; + public static final int exitUntilCollapsed=0x7f080040; + public static final int expand_activities_button=0x7f080041; + public static final int expanded_menu=0x7f080042; + public static final int fill=0x7f080043; + public static final int fill_horizontal=0x7f080044; + public static final int fill_vertical=0x7f080045; + public static final int filled=0x7f080046; + public static final int fixed=0x7f080047; + public static final int forever=0x7f080048; + public static final int ghost_view=0x7f080049; + public static final int group_divider=0x7f08004a; + public static final int home=0x7f08004b; + public static final int homeAsUp=0x7f08004c; + public static final int icon=0x7f08004d; + public static final int icon_group=0x7f08004e; + public static final int ifRoom=0x7f08004f; + public static final int image=0x7f080050; + public static final int info=0x7f080051; + public static final int italic=0x7f080052; + public static final int item_touch_helper_previous_elevation=0x7f080053; + public static final int labeled=0x7f080054; + public static final int largeLabel=0x7f080055; + public static final int left=0x7f080056; + public static final int line1=0x7f080057; + public static final int line3=0x7f080058; + public static final int listMode=0x7f080059; + public static final int list_item=0x7f08005a; + public static final int masked=0x7f08005b; + public static final int media_actions=0x7f08005c; + public static final int message=0x7f08005d; + public static final int middle=0x7f08005e; + public static final int mini=0x7f08005f; + public static final int mtrl_child_content_container=0x7f080060; + public static final int mtrl_internal_children_alpha_tag=0x7f080061; + public static final int multiply=0x7f080062; + public static final int navigation_header_container=0x7f080063; + public static final int never=0x7f080064; + public static final int none=0x7f080065; + public static final int normal=0x7f080066; + public static final int notification_background=0x7f080067; + public static final int notification_main_column=0x7f080068; + public static final int notification_main_column_container=0x7f080069; + public static final int outline=0x7f08006a; + public static final int parallax=0x7f08006b; + public static final int parentPanel=0x7f08006c; + public static final int parent_matrix=0x7f08006d; + public static final int pin=0x7f08006e; + public static final int progress_circular=0x7f08006f; + public static final int progress_horizontal=0x7f080070; + public static final int radio=0x7f080071; + public static final int right=0x7f080072; + public static final int right_icon=0x7f080073; + public static final int right_side=0x7f080074; + public static final int save_image_matrix=0x7f080075; + public static final int save_non_transition_alpha=0x7f080076; + public static final int save_scale_type=0x7f080077; + public static final int screen=0x7f080078; + public static final int scroll=0x7f080079; + public static final int scrollIndicatorDown=0x7f08007a; + public static final int scrollIndicatorUp=0x7f08007b; + public static final int scrollView=0x7f08007c; + public static final int scrollable=0x7f08007d; + public static final int search_badge=0x7f08007e; + public static final int search_bar=0x7f08007f; + public static final int search_button=0x7f080080; + public static final int search_close_btn=0x7f080081; + public static final int search_edit_frame=0x7f080082; + public static final int search_go_btn=0x7f080083; + public static final int search_mag_icon=0x7f080084; + public static final int search_plate=0x7f080085; + public static final int search_src_text=0x7f080086; + public static final int search_voice_btn=0x7f080087; + public static final int select_dialog_listview=0x7f080088; + public static final int selected=0x7f080089; + public static final int shortcut=0x7f08008a; + public static final int showCustom=0x7f08008b; + public static final int showHome=0x7f08008c; + public static final int showTitle=0x7f08008d; + public static final int smallLabel=0x7f08008e; + public static final int snackbar_action=0x7f08008f; + public static final int snackbar_text=0x7f080090; + public static final int snap=0x7f080091; + public static final int snapMargins=0x7f080092; + public static final int spacer=0x7f080093; + public static final int split_action_bar=0x7f080094; + public static final int src_atop=0x7f080095; + public static final int src_in=0x7f080096; + public static final int src_over=0x7f080097; + public static final int start=0x7f080098; + public static final int status_bar_latest_event_content=0x7f080099; + public static final int stretch=0x7f08009a; + public static final int submenuarrow=0x7f08009b; + public static final int submit_area=0x7f08009c; + public static final int tabMode=0x7f08009d; + public static final int tag_transition_group=0x7f08009e; + public static final int tag_unhandled_key_event_manager=0x7f08009f; + public static final int tag_unhandled_key_listeners=0x7f0800a0; + public static final int text=0x7f0800a1; + public static final int text2=0x7f0800a2; + public static final int textSpacerNoButtons=0x7f0800a3; + public static final int textSpacerNoTitle=0x7f0800a4; + public static final int textStart=0x7f0800a5; + public static final int text_input_password_toggle=0x7f0800a6; + public static final int textinput_counter=0x7f0800a7; + public static final int textinput_error=0x7f0800a8; + public static final int textinput_helper_text=0x7f0800a9; + public static final int time=0x7f0800aa; + public static final int title=0x7f0800ab; + public static final int titleDividerNoCustom=0x7f0800ac; + public static final int title_template=0x7f0800ad; + public static final int top=0x7f0800ae; + public static final int topPanel=0x7f0800af; + public static final int touch_outside=0x7f0800b0; + public static final int transition_current_scene=0x7f0800b1; + public static final int transition_layout_save=0x7f0800b2; + public static final int transition_position=0x7f0800b3; + public static final int transition_scene_layoutid_cache=0x7f0800b4; + public static final int transition_transform=0x7f0800b5; + public static final int uniform=0x7f0800b6; + public static final int unlabeled=0x7f0800b7; + public static final int up=0x7f0800b8; + public static final int useLogo=0x7f0800b9; + public static final int view_offset_helper=0x7f0800ba; + public static final int visible=0x7f0800bb; + public static final int withText=0x7f0800bc; + public static final int wrap_content=0x7f0800bd; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090000; + public static final int abc_config_activityShortDur=0x7f090001; + public static final int app_bar_elevation_anim_duration=0x7f090002; + public static final int bottom_sheet_slide_duration=0x7f090003; + public static final int cancel_button_image_alpha=0x7f090004; + public static final int config_tooltipAnimTime=0x7f090005; + public static final int design_snackbar_text_max_lines=0x7f090006; + public static final int design_tab_indicator_anim_duration_ms=0x7f090007; + public static final int hide_password_duration=0x7f090008; + public static final int mtrl_btn_anim_delay_ms=0x7f090009; + public static final int mtrl_btn_anim_duration_ms=0x7f09000a; + public static final int mtrl_chip_anim_duration=0x7f09000b; + public static final int mtrl_tab_indicator_anim_duration_ms=0x7f09000c; + public static final int show_password_duration=0x7f09000d; + public static final int status_bar_notification_info_maxnum=0x7f09000e; + } + public static final class interpolator { + public static final int mtrl_fast_out_linear_in=0x7f0a0000; + public static final int mtrl_fast_out_slow_in=0x7f0a0001; + public static final int mtrl_linear=0x7f0a0002; + public static final int mtrl_linear_out_slow_in=0x7f0a0003; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f0b0000; + public static final int abc_action_bar_up_container=0x7f0b0001; + public static final int abc_action_menu_item_layout=0x7f0b0002; + public static final int abc_action_menu_layout=0x7f0b0003; + public static final int abc_action_mode_bar=0x7f0b0004; + public static final int abc_action_mode_close_item_material=0x7f0b0005; + public static final int abc_activity_chooser_view=0x7f0b0006; + public static final int abc_activity_chooser_view_list_item=0x7f0b0007; + public static final int abc_alert_dialog_button_bar_material=0x7f0b0008; + public static final int abc_alert_dialog_material=0x7f0b0009; + public static final int abc_alert_dialog_title_material=0x7f0b000a; + public static final int abc_cascading_menu_item_layout=0x7f0b000b; + public static final int abc_dialog_title_material=0x7f0b000c; + public static final int abc_expanded_menu_layout=0x7f0b000d; + public static final int abc_list_menu_item_checkbox=0x7f0b000e; + public static final int abc_list_menu_item_icon=0x7f0b000f; + public static final int abc_list_menu_item_layout=0x7f0b0010; + public static final int abc_list_menu_item_radio=0x7f0b0011; + public static final int abc_popup_menu_header_item_layout=0x7f0b0012; + public static final int abc_popup_menu_item_layout=0x7f0b0013; + public static final int abc_screen_content_include=0x7f0b0014; + public static final int abc_screen_simple=0x7f0b0015; + public static final int abc_screen_simple_overlay_action_mode=0x7f0b0016; + public static final int abc_screen_toolbar=0x7f0b0017; + public static final int abc_search_dropdown_item_icons_2line=0x7f0b0018; + public static final int abc_search_view=0x7f0b0019; + public static final int abc_select_dialog_material=0x7f0b001a; + public static final int abc_tooltip=0x7f0b001b; + public static final int activity_app=0x7f0b001c; + public static final int design_bottom_navigation_item=0x7f0b001d; + public static final int design_bottom_sheet_dialog=0x7f0b001e; + public static final int design_layout_snackbar=0x7f0b001f; + public static final int design_layout_snackbar_include=0x7f0b0020; + public static final int design_layout_tab_icon=0x7f0b0021; + public static final int design_layout_tab_text=0x7f0b0022; + public static final int design_menu_item_action_area=0x7f0b0023; + public static final int design_navigation_item=0x7f0b0024; + public static final int design_navigation_item_header=0x7f0b0025; + public static final int design_navigation_item_separator=0x7f0b0026; + public static final int design_navigation_item_subheader=0x7f0b0027; + public static final int design_navigation_menu=0x7f0b0028; + public static final int design_navigation_menu_item=0x7f0b0029; + public static final int design_text_input_password_icon=0x7f0b002a; + public static final int mtrl_layout_snackbar=0x7f0b002b; + public static final int mtrl_layout_snackbar_include=0x7f0b002c; + public static final int notification_action=0x7f0b002d; + public static final int notification_action_tombstone=0x7f0b002e; + public static final int notification_media_action=0x7f0b002f; + public static final int notification_media_cancel_action=0x7f0b0030; + public static final int notification_template_big_media=0x7f0b0031; + public static final int notification_template_big_media_custom=0x7f0b0032; + public static final int notification_template_big_media_narrow=0x7f0b0033; + public static final int notification_template_big_media_narrow_custom=0x7f0b0034; + public static final int notification_template_custom_big=0x7f0b0035; + public static final int notification_template_icon_group=0x7f0b0036; + public static final int notification_template_lines_media=0x7f0b0037; + public static final int notification_template_media=0x7f0b0038; + public static final int notification_template_media_custom=0x7f0b0039; + public static final int notification_template_part_chronometer=0x7f0b003a; + public static final int notification_template_part_time=0x7f0b003b; + public static final int select_dialog_item_material=0x7f0b003c; + public static final int select_dialog_multichoice_material=0x7f0b003d; + public static final int select_dialog_singlechoice_material=0x7f0b003e; + public static final int support_simple_spinner_dropdown_item=0x7f0b003f; + } + public static final class raw { + public static final int my_ca=0x7f0c0000; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0d0000; + public static final int abc_action_bar_up_description=0x7f0d0001; + public static final int abc_action_menu_overflow_description=0x7f0d0002; + public static final int abc_action_mode_done=0x7f0d0003; + public static final int abc_activity_chooser_view_see_all=0x7f0d0004; + public static final int abc_activitychooserview_choose_application=0x7f0d0005; + public static final int abc_capital_off=0x7f0d0006; + public static final int abc_capital_on=0x7f0d0007; + public static final int abc_font_family_body_1_material=0x7f0d0008; + public static final int abc_font_family_body_2_material=0x7f0d0009; + public static final int abc_font_family_button_material=0x7f0d000a; + public static final int abc_font_family_caption_material=0x7f0d000b; + public static final int abc_font_family_display_1_material=0x7f0d000c; + public static final int abc_font_family_display_2_material=0x7f0d000d; + public static final int abc_font_family_display_3_material=0x7f0d000e; + public static final int abc_font_family_display_4_material=0x7f0d000f; + public static final int abc_font_family_headline_material=0x7f0d0010; + public static final int abc_font_family_menu_material=0x7f0d0011; + public static final int abc_font_family_subhead_material=0x7f0d0012; + public static final int abc_font_family_title_material=0x7f0d0013; + public static final int abc_menu_alt_shortcut_label=0x7f0d0014; + public static final int abc_menu_ctrl_shortcut_label=0x7f0d0015; + public static final int abc_menu_delete_shortcut_label=0x7f0d0016; + public static final int abc_menu_enter_shortcut_label=0x7f0d0017; + public static final int abc_menu_function_shortcut_label=0x7f0d0018; + public static final int abc_menu_meta_shortcut_label=0x7f0d0019; + public static final int abc_menu_shift_shortcut_label=0x7f0d001a; + public static final int abc_menu_space_shortcut_label=0x7f0d001b; + public static final int abc_menu_sym_shortcut_label=0x7f0d001c; + public static final int abc_prepend_shortcut_label=0x7f0d001d; + public static final int abc_search_hint=0x7f0d001e; + public static final int abc_searchview_description_clear=0x7f0d001f; + public static final int abc_searchview_description_query=0x7f0d0020; + public static final int abc_searchview_description_search=0x7f0d0021; + public static final int abc_searchview_description_submit=0x7f0d0022; + public static final int abc_searchview_description_voice=0x7f0d0023; + public static final int abc_shareactionprovider_share_with=0x7f0d0024; + public static final int abc_shareactionprovider_share_with_application=0x7f0d0025; + public static final int abc_toolbar_collapse_description=0x7f0d0026; + public static final int app_name=0x7f0d0027; + public static final int appbar_scrolling_view_behavior=0x7f0d0028; + public static final int bottom_sheet_behavior=0x7f0d0029; + public static final int character_counter_content_description=0x7f0d002a; + public static final int character_counter_pattern=0x7f0d002b; + public static final int fab_transformation_scrim_behavior=0x7f0d002c; + public static final int fab_transformation_sheet_behavior=0x7f0d002d; + public static final int hello_world=0x7f0d002e; + public static final int hide_bottom_view_on_scroll_behavior=0x7f0d002f; + public static final int mtrl_chip_close_icon_content_description=0x7f0d0030; + public static final int password_toggle_content_description=0x7f0d0031; + public static final int path_password_eye=0x7f0d0032; + public static final int path_password_eye_mask_strike_through=0x7f0d0033; + public static final int path_password_eye_mask_visible=0x7f0d0034; + public static final int path_password_strike_through=0x7f0d0035; + public static final int search_menu_title=0x7f0d0036; + public static final int status_bar_notification_info_overflow=0x7f0d0037; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0e0000; + public static final int AlertDialog_AppCompat_Light=0x7f0e0001; + public static final int Animation_AppCompat_Dialog=0x7f0e0002; + public static final int Animation_AppCompat_DropDownUp=0x7f0e0003; + public static final int Animation_AppCompat_Tooltip=0x7f0e0004; + public static final int Animation_Design_BottomSheetDialog=0x7f0e0005; + public static final int AppBaseTheme=0x7f0e0006; + public static final int AppTheme=0x7f0e0007; + public static final int Base_AlertDialog_AppCompat=0x7f0e0008; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0e0009; + public static final int Base_Animation_AppCompat_Dialog=0x7f0e000a; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0e000b; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0e000c; + public static final int Base_CardView=0x7f0e000d; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0e000e; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0e000f; + public static final int Base_TextAppearance_AppCompat=0x7f0e0010; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f0e0011; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f0e0012; + public static final int Base_TextAppearance_AppCompat_Button=0x7f0e0013; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f0e0014; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f0e0015; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f0e0016; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f0e0017; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f0e0018; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f0e0019; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0e001a; + public static final int Base_TextAppearance_AppCompat_Large=0x7f0e001b; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0e001c; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e001d; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e001e; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f0e001f; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0e0020; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f0e0021; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0e0022; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e0023; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0e0024; + public static final int Base_TextAppearance_AppCompat_Small=0x7f0e0025; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0e0026; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0e0027; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0e0028; + public static final int Base_TextAppearance_AppCompat_Title=0x7f0e0029; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0e002a; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0e002b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e002c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e002d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e002e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e002f; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e0030; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e0031; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e0032; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0e0033; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e0034; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e0035; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e0036; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e0037; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e0038; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e0039; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e003a; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0e003b; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e003c; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e003d; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e003e; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e003f; + public static final int Base_Theme_AppCompat=0x7f0e0040; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0e0041; + public static final int Base_Theme_AppCompat_Dialog=0x7f0e0042; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0e0043; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0e0044; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0e0045; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0e0046; + public static final int Base_Theme_AppCompat_Light=0x7f0e0047; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0e0048; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0e0049; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0e004a; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0e004b; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e004c; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0e004d; + public static final int Base_Theme_MaterialComponents=0x7f0e004e; + public static final int Base_Theme_MaterialComponents_Bridge=0x7f0e004f; + public static final int Base_Theme_MaterialComponents_CompactMenu=0x7f0e0050; + public static final int Base_Theme_MaterialComponents_Dialog=0x7f0e0051; + public static final int Base_Theme_MaterialComponents_Dialog_Alert=0x7f0e0052; + public static final int Base_Theme_MaterialComponents_Dialog_FixedSize=0x7f0e0053; + public static final int Base_Theme_MaterialComponents_Dialog_MinWidth=0x7f0e0054; + public static final int Base_Theme_MaterialComponents_DialogWhenLarge=0x7f0e0055; + public static final int Base_Theme_MaterialComponents_Light=0x7f0e0056; + public static final int Base_Theme_MaterialComponents_Light_Bridge=0x7f0e0057; + public static final int Base_Theme_MaterialComponents_Light_DarkActionBar=0x7f0e0058; + public static final int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0e0059; + public static final int Base_Theme_MaterialComponents_Light_Dialog=0x7f0e005a; + public static final int Base_Theme_MaterialComponents_Light_Dialog_Alert=0x7f0e005b; + public static final int Base_Theme_MaterialComponents_Light_Dialog_FixedSize=0x7f0e005c; + public static final int Base_Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f0e005d; + public static final int Base_Theme_MaterialComponents_Light_DialogWhenLarge=0x7f0e005e; + public static final int Base_ThemeOverlay_AppCompat=0x7f0e005f; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0e0060; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0e0061; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e0062; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0e0063; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e0064; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0e0065; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog=0x7f0e0066; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0e0067; + public static final int Base_V14_Theme_MaterialComponents=0x7f0e0068; + public static final int Base_V14_Theme_MaterialComponents_Bridge=0x7f0e0069; + public static final int Base_V14_Theme_MaterialComponents_Dialog=0x7f0e006a; + public static final int Base_V14_Theme_MaterialComponents_Light=0x7f0e006b; + public static final int Base_V14_Theme_MaterialComponents_Light_Bridge=0x7f0e006c; + public static final int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0e006d; + public static final int Base_V14_Theme_MaterialComponents_Light_Dialog=0x7f0e006e; + public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog=0x7f0e006f; + public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0e0070; + public static final int Base_V21_Theme_AppCompat=0x7f0e0071; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0e0072; + public static final int Base_V21_Theme_AppCompat_Light=0x7f0e0073; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0e0074; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0e0075; + public static final int Base_V22_Theme_AppCompat=0x7f0e0076; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0e0077; + public static final int Base_V23_Theme_AppCompat=0x7f0e0078; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0e0079; + public static final int Base_V26_Theme_AppCompat=0x7f0e007a; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0e007b; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0e007c; + public static final int Base_V28_Theme_AppCompat=0x7f0e007d; + public static final int Base_V28_Theme_AppCompat_Light=0x7f0e007e; + public static final int Base_V7_Theme_AppCompat=0x7f0e007f; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0e0080; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0e0081; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0e0082; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0e0083; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0e0084; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0e0085; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0e0086; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0e0087; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0e0088; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0e0089; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0e008a; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0e008b; + public static final int Base_Widget_AppCompat_ActionButton=0x7f0e008c; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0e008d; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0e008e; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0e008f; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0e0090; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0e0091; + public static final int Base_Widget_AppCompat_Button=0x7f0e0092; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0e0093; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0e0094; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e0095; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0e0096; + public static final int Base_Widget_AppCompat_Button_Small=0x7f0e0097; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f0e0098; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e0099; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0e009a; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0e009b; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0e009c; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0e009d; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0e009e; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0e009f; + public static final int Base_Widget_AppCompat_EditText=0x7f0e00a0; + public static final int Base_Widget_AppCompat_ImageButton=0x7f0e00a1; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0e00a2; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0e00a3; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e00a4; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0e00a5; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e00a6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0e00a7; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0e00a8; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e00a9; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0e00aa; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0e00ab; + public static final int Base_Widget_AppCompat_ListView=0x7f0e00ac; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0e00ad; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0e00ae; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f0e00af; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0e00b0; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0e00b1; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f0e00b2; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0e00b3; + public static final int Base_Widget_AppCompat_RatingBar=0x7f0e00b4; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0e00b5; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0e00b6; + public static final int Base_Widget_AppCompat_SearchView=0x7f0e00b7; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0e00b8; + public static final int Base_Widget_AppCompat_SeekBar=0x7f0e00b9; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0e00ba; + public static final int Base_Widget_AppCompat_Spinner=0x7f0e00bb; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0e00bc; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0e00bd; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0e00be; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e00bf; + public static final int Base_Widget_Design_TabLayout=0x7f0e00c0; + public static final int Base_Widget_MaterialComponents_Chip=0x7f0e00c1; + public static final int Base_Widget_MaterialComponents_TextInputEditText=0x7f0e00c2; + public static final int Base_Widget_MaterialComponents_TextInputLayout=0x7f0e00c3; + public static final int CardView=0x7f0e00c4; + public static final int CardView_Dark=0x7f0e00c5; + public static final int CardView_Light=0x7f0e00c6; + public static final int Platform_AppCompat=0x7f0e00c7; + public static final int Platform_AppCompat_Light=0x7f0e00c8; + public static final int Platform_MaterialComponents=0x7f0e00c9; + public static final int Platform_MaterialComponents_Dialog=0x7f0e00ca; + public static final int Platform_MaterialComponents_Light=0x7f0e00cb; + public static final int Platform_MaterialComponents_Light_Dialog=0x7f0e00cc; + public static final int Platform_ThemeOverlay_AppCompat=0x7f0e00cd; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0e00ce; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0e00cf; + public static final int Platform_V21_AppCompat=0x7f0e00d0; + public static final int Platform_V21_AppCompat_Light=0x7f0e00d1; + public static final int Platform_V25_AppCompat=0x7f0e00d2; + public static final int Platform_V25_AppCompat_Light=0x7f0e00d3; + public static final int Platform_Widget_AppCompat_Spinner=0x7f0e00d4; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0e00d5; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0e00d6; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0e00d7; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0e00d8; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0e00d9; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut=0x7f0e00da; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow=0x7f0e00db; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0e00dc; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title=0x7f0e00dd; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0e00de; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0e00df; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0e00e0; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0e00e1; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0e00e2; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0e00e3; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0e00e4; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0e00e5; + public static final int TextAppearance_AppCompat=0x7f0e00e6; + public static final int TextAppearance_AppCompat_Body1=0x7f0e00e7; + public static final int TextAppearance_AppCompat_Body2=0x7f0e00e8; + public static final int TextAppearance_AppCompat_Button=0x7f0e00e9; + public static final int TextAppearance_AppCompat_Caption=0x7f0e00ea; + public static final int TextAppearance_AppCompat_Display1=0x7f0e00eb; + public static final int TextAppearance_AppCompat_Display2=0x7f0e00ec; + public static final int TextAppearance_AppCompat_Display3=0x7f0e00ed; + public static final int TextAppearance_AppCompat_Display4=0x7f0e00ee; + public static final int TextAppearance_AppCompat_Headline=0x7f0e00ef; + public static final int TextAppearance_AppCompat_Inverse=0x7f0e00f0; + public static final int TextAppearance_AppCompat_Large=0x7f0e00f1; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0e00f2; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0e00f3; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0e00f4; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e00f5; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e00f6; + public static final int TextAppearance_AppCompat_Medium=0x7f0e00f7; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0e00f8; + public static final int TextAppearance_AppCompat_Menu=0x7f0e00f9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e00fa; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0e00fb; + public static final int TextAppearance_AppCompat_Small=0x7f0e00fc; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0e00fd; + public static final int TextAppearance_AppCompat_Subhead=0x7f0e00fe; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0e00ff; + public static final int TextAppearance_AppCompat_Title=0x7f0e0100; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0e0101; + public static final int TextAppearance_AppCompat_Tooltip=0x7f0e0102; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e0103; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e0104; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e0105; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e0106; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e0107; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e0108; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0e0109; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e010a; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0e010b; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f0e010c; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e010d; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e010e; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e010f; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e0110; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e0111; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e0112; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e0113; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0e0114; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e0115; + public static final int TextAppearance_Compat_Notification=0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info=0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0e0118; + public static final int TextAppearance_Compat_Notification_Line2=0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0e011a; + public static final int TextAppearance_Compat_Notification_Media=0x7f0e011b; + public static final int TextAppearance_Compat_Notification_Time=0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0e011d; + public static final int TextAppearance_Compat_Notification_Title=0x7f0e011e; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0e011f; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0e0120; + public static final int TextAppearance_Design_Counter=0x7f0e0121; + public static final int TextAppearance_Design_Counter_Overflow=0x7f0e0122; + public static final int TextAppearance_Design_Error=0x7f0e0123; + public static final int TextAppearance_Design_HelperText=0x7f0e0124; + public static final int TextAppearance_Design_Hint=0x7f0e0125; + public static final int TextAppearance_Design_Snackbar_Message=0x7f0e0126; + public static final int TextAppearance_Design_Tab=0x7f0e0127; + public static final int TextAppearance_MaterialComponents_Body1=0x7f0e0128; + public static final int TextAppearance_MaterialComponents_Body2=0x7f0e0129; + public static final int TextAppearance_MaterialComponents_Button=0x7f0e012a; + public static final int TextAppearance_MaterialComponents_Caption=0x7f0e012b; + public static final int TextAppearance_MaterialComponents_Chip=0x7f0e012c; + public static final int TextAppearance_MaterialComponents_Headline1=0x7f0e012d; + public static final int TextAppearance_MaterialComponents_Headline2=0x7f0e012e; + public static final int TextAppearance_MaterialComponents_Headline3=0x7f0e012f; + public static final int TextAppearance_MaterialComponents_Headline4=0x7f0e0130; + public static final int TextAppearance_MaterialComponents_Headline5=0x7f0e0131; + public static final int TextAppearance_MaterialComponents_Headline6=0x7f0e0132; + public static final int TextAppearance_MaterialComponents_Overline=0x7f0e0133; + public static final int TextAppearance_MaterialComponents_Subtitle1=0x7f0e0134; + public static final int TextAppearance_MaterialComponents_Subtitle2=0x7f0e0135; + public static final int TextAppearance_MaterialComponents_Tab=0x7f0e0136; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e0137; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e0138; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e0139; + public static final int Theme_AppCompat=0x7f0e013a; + public static final int Theme_AppCompat_CompactMenu=0x7f0e013b; + public static final int Theme_AppCompat_DayNight=0x7f0e013c; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0e013d; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f0e013e; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0e013f; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0e0140; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0e0141; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0e0142; + public static final int Theme_AppCompat_Dialog=0x7f0e0143; + public static final int Theme_AppCompat_Dialog_Alert=0x7f0e0144; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0e0145; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f0e0146; + public static final int Theme_AppCompat_Light=0x7f0e0147; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0e0148; + public static final int Theme_AppCompat_Light_Dialog=0x7f0e0149; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0e014a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e014b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0e014c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f0e014d; + public static final int Theme_AppCompat_NoActionBar=0x7f0e014e; + public static final int Theme_Design=0x7f0e014f; + public static final int Theme_Design_BottomSheetDialog=0x7f0e0150; + public static final int Theme_Design_Light=0x7f0e0151; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f0e0152; + public static final int Theme_Design_Light_NoActionBar=0x7f0e0153; + public static final int Theme_Design_NoActionBar=0x7f0e0154; + public static final int Theme_MaterialComponents=0x7f0e0155; + public static final int Theme_MaterialComponents_BottomSheetDialog=0x7f0e0156; + public static final int Theme_MaterialComponents_Bridge=0x7f0e0157; + public static final int Theme_MaterialComponents_CompactMenu=0x7f0e0158; + public static final int Theme_MaterialComponents_Dialog=0x7f0e0159; + public static final int Theme_MaterialComponents_Dialog_Alert=0x7f0e015a; + public static final int Theme_MaterialComponents_Dialog_MinWidth=0x7f0e015b; + public static final int Theme_MaterialComponents_DialogWhenLarge=0x7f0e015c; + public static final int Theme_MaterialComponents_Light=0x7f0e015d; + public static final int Theme_MaterialComponents_Light_BottomSheetDialog=0x7f0e015e; + public static final int Theme_MaterialComponents_Light_Bridge=0x7f0e015f; + public static final int Theme_MaterialComponents_Light_DarkActionBar=0x7f0e0160; + public static final int Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0e0161; + public static final int Theme_MaterialComponents_Light_Dialog=0x7f0e0162; + public static final int Theme_MaterialComponents_Light_Dialog_Alert=0x7f0e0163; + public static final int Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f0e0164; + public static final int Theme_MaterialComponents_Light_DialogWhenLarge=0x7f0e0165; + public static final int Theme_MaterialComponents_Light_NoActionBar=0x7f0e0166; + public static final int Theme_MaterialComponents_Light_NoActionBar_Bridge=0x7f0e0167; + public static final int Theme_MaterialComponents_NoActionBar=0x7f0e0168; + public static final int Theme_MaterialComponents_NoActionBar_Bridge=0x7f0e0169; + public static final int ThemeOverlay_AppCompat=0x7f0e016a; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0e016b; + public static final int ThemeOverlay_AppCompat_Dark=0x7f0e016c; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e016d; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f0e016e; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e016f; + public static final int ThemeOverlay_AppCompat_Light=0x7f0e0170; + public static final int ThemeOverlay_MaterialComponents=0x7f0e0171; + public static final int ThemeOverlay_MaterialComponents_ActionBar=0x7f0e0172; + public static final int ThemeOverlay_MaterialComponents_Dark=0x7f0e0173; + public static final int ThemeOverlay_MaterialComponents_Dark_ActionBar=0x7f0e0174; + public static final int ThemeOverlay_MaterialComponents_Dialog=0x7f0e0175; + public static final int ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0e0176; + public static final int ThemeOverlay_MaterialComponents_Light=0x7f0e0177; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText=0x7f0e0178; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox=0x7f0e0179; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0e017a; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0e017b; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0e017c; + public static final int Widget_AppCompat_ActionBar=0x7f0e017d; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f0e017e; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0e017f; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f0e0180; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f0e0181; + public static final int Widget_AppCompat_ActionButton=0x7f0e0182; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0e0183; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0e0184; + public static final int Widget_AppCompat_ActionMode=0x7f0e0185; + public static final int Widget_AppCompat_ActivityChooserView=0x7f0e0186; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0e0187; + public static final int Widget_AppCompat_Button=0x7f0e0188; + public static final int Widget_AppCompat_Button_Borderless=0x7f0e0189; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0e018a; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e018b; + public static final int Widget_AppCompat_Button_Colored=0x7f0e018c; + public static final int Widget_AppCompat_Button_Small=0x7f0e018d; + public static final int Widget_AppCompat_ButtonBar=0x7f0e018e; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e018f; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0e0190; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0e0191; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0e0192; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0e0193; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0e0194; + public static final int Widget_AppCompat_EditText=0x7f0e0195; + public static final int Widget_AppCompat_ImageButton=0x7f0e0196; + public static final int Widget_AppCompat_Light_ActionBar=0x7f0e0197; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0e0198; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0e0199; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e019a; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0e019b; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0e019c; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e019d; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0e019e; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0e019f; + public static final int Widget_AppCompat_Light_ActionButton=0x7f0e01a0; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0e01a1; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0e01a2; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0e01a3; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0e01a4; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0e01a5; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0e01a6; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0e01a7; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0e01a8; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f0e01a9; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e01aa; + public static final int Widget_AppCompat_Light_SearchView=0x7f0e01ab; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0e01ac; + public static final int Widget_AppCompat_ListMenuView=0x7f0e01ad; + public static final int Widget_AppCompat_ListPopupWindow=0x7f0e01ae; + public static final int Widget_AppCompat_ListView=0x7f0e01af; + public static final int Widget_AppCompat_ListView_DropDown=0x7f0e01b0; + public static final int Widget_AppCompat_ListView_Menu=0x7f0e01b1; + public static final int Widget_AppCompat_PopupMenu=0x7f0e01b2; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0e01b3; + public static final int Widget_AppCompat_PopupWindow=0x7f0e01b4; + public static final int Widget_AppCompat_ProgressBar=0x7f0e01b5; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0e01b6; + public static final int Widget_AppCompat_RatingBar=0x7f0e01b7; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0e01b8; + public static final int Widget_AppCompat_RatingBar_Small=0x7f0e01b9; + public static final int Widget_AppCompat_SearchView=0x7f0e01ba; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0e01bb; + public static final int Widget_AppCompat_SeekBar=0x7f0e01bc; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0e01bd; + public static final int Widget_AppCompat_Spinner=0x7f0e01be; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f0e01bf; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0e01c0; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f0e01c1; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0e01c2; + public static final int Widget_AppCompat_Toolbar=0x7f0e01c3; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e01c4; + public static final int Widget_Compat_NotificationActionContainer=0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText=0x7f0e01c6; + public static final int Widget_Design_AppBarLayout=0x7f0e01c7; + public static final int Widget_Design_BottomNavigationView=0x7f0e01c8; + public static final int Widget_Design_BottomSheet_Modal=0x7f0e01c9; + public static final int Widget_Design_CollapsingToolbar=0x7f0e01ca; + public static final int Widget_Design_FloatingActionButton=0x7f0e01cb; + public static final int Widget_Design_NavigationView=0x7f0e01cc; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0e01cd; + public static final int Widget_Design_Snackbar=0x7f0e01ce; + public static final int Widget_Design_TabLayout=0x7f0e01cf; + public static final int Widget_Design_TextInputLayout=0x7f0e01d0; + public static final int Widget_MaterialComponents_BottomAppBar=0x7f0e01d1; + public static final int Widget_MaterialComponents_BottomAppBar_Colored=0x7f0e01d2; + public static final int Widget_MaterialComponents_BottomNavigationView=0x7f0e01d3; + public static final int Widget_MaterialComponents_BottomNavigationView_Colored=0x7f0e01d4; + public static final int Widget_MaterialComponents_BottomSheet_Modal=0x7f0e01d5; + public static final int Widget_MaterialComponents_Button=0x7f0e01d6; + public static final int Widget_MaterialComponents_Button_Icon=0x7f0e01d7; + public static final int Widget_MaterialComponents_Button_OutlinedButton=0x7f0e01d8; + public static final int Widget_MaterialComponents_Button_OutlinedButton_Icon=0x7f0e01d9; + public static final int Widget_MaterialComponents_Button_TextButton=0x7f0e01da; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog=0x7f0e01db; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog_Icon=0x7f0e01dc; + public static final int Widget_MaterialComponents_Button_TextButton_Icon=0x7f0e01dd; + public static final int Widget_MaterialComponents_Button_UnelevatedButton=0x7f0e01de; + public static final int Widget_MaterialComponents_Button_UnelevatedButton_Icon=0x7f0e01df; + public static final int Widget_MaterialComponents_CardView=0x7f0e01e0; + public static final int Widget_MaterialComponents_Chip_Action=0x7f0e01e1; + public static final int Widget_MaterialComponents_Chip_Choice=0x7f0e01e2; + public static final int Widget_MaterialComponents_Chip_Entry=0x7f0e01e3; + public static final int Widget_MaterialComponents_Chip_Filter=0x7f0e01e4; + public static final int Widget_MaterialComponents_ChipGroup=0x7f0e01e5; + public static final int Widget_MaterialComponents_FloatingActionButton=0x7f0e01e6; + public static final int Widget_MaterialComponents_NavigationView=0x7f0e01e7; + public static final int Widget_MaterialComponents_Snackbar=0x7f0e01e8; + public static final int Widget_MaterialComponents_Snackbar_FullWidth=0x7f0e01e9; + public static final int Widget_MaterialComponents_TabLayout=0x7f0e01ea; + public static final int Widget_MaterialComponents_TabLayout_Colored=0x7f0e01eb; + public static final int Widget_MaterialComponents_TextInputEditText_FilledBox=0x7f0e01ec; + public static final int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0e01ed; + public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0e01ee; + public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0e01ef; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox=0x7f0e01f0; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense=0x7f0e01f1; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox=0x7f0e01f2; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense=0x7f0e01f3; + public static final int Widget_MaterialComponents_Toolbar=0x7f0e01f4; + public static final int Widget_Support_CoordinatorLayout=0x7f0e01f5; + } + public static final class styleable { + /** + * Attributes that can be used with a ActionBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ActionBar_background org.muctec.smartfritz:background}Specifies a background drawable for the action bar.
{@link #ActionBar_backgroundSplit org.muctec.smartfritz:backgroundSplit}Specifies a background drawable for the bottom component of a split action bar.
{@link #ActionBar_backgroundStacked org.muctec.smartfritz:backgroundStacked}Specifies a background drawable for a second stacked row of the action bar.
{@link #ActionBar_contentInsetEnd org.muctec.smartfritz:contentInsetEnd}Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetEndWithActions org.muctec.smartfritz:contentInsetEndWithActions}Minimum inset for content views within a bar when actions from a menu + * are present.
{@link #ActionBar_contentInsetLeft org.muctec.smartfritz:contentInsetLeft}Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetRight org.muctec.smartfritz:contentInsetRight}Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetStart org.muctec.smartfritz:contentInsetStart}Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetStartWithNavigation org.muctec.smartfritz:contentInsetStartWithNavigation}Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button.
{@link #ActionBar_customNavigationLayout org.muctec.smartfritz:customNavigationLayout}Specifies a layout for custom navigation.
{@link #ActionBar_displayOptions org.muctec.smartfritz:displayOptions}Options affecting how the action bar is displayed.
{@link #ActionBar_divider org.muctec.smartfritz:divider}Specifies the drawable used for item dividers.
{@link #ActionBar_elevation org.muctec.smartfritz:elevation}Elevation for the action bar itself
{@link #ActionBar_height org.muctec.smartfritz:height}
{@link #ActionBar_hideOnContentScroll org.muctec.smartfritz:hideOnContentScroll}Set true to hide the action bar on a vertical nested scroll of content.
{@link #ActionBar_homeAsUpIndicator org.muctec.smartfritz:homeAsUpIndicator}Specifies a drawable to use for the 'home as up' indicator.
{@link #ActionBar_homeLayout org.muctec.smartfritz:homeLayout}Specifies a layout to use for the "home" section of the action bar.
{@link #ActionBar_icon org.muctec.smartfritz:icon}
{@link #ActionBar_indeterminateProgressStyle org.muctec.smartfritz:indeterminateProgressStyle}Specifies a style resource to use for an indeterminate progress spinner.
{@link #ActionBar_itemPadding org.muctec.smartfritz:itemPadding}Specifies padding that should be applied to the left and right sides of + * system-provided items in the bar.
{@link #ActionBar_logo org.muctec.smartfritz:logo}Specifies the drawable used for the application logo.
{@link #ActionBar_navigationMode org.muctec.smartfritz:navigationMode}The type of navigation to use.
{@link #ActionBar_popupTheme org.muctec.smartfritz:popupTheme}Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar.
{@link #ActionBar_progressBarPadding org.muctec.smartfritz:progressBarPadding}Specifies the horizontal padding on either end for an embedded progress bar.
{@link #ActionBar_progressBarStyle org.muctec.smartfritz:progressBarStyle}Specifies a style resource to use for an embedded progress bar.
{@link #ActionBar_subtitle org.muctec.smartfritz:subtitle}Specifies subtitle text used for navigationMode="normal"
{@link #ActionBar_subtitleTextStyle org.muctec.smartfritz:subtitleTextStyle}Specifies a style to use for subtitle text.
{@link #ActionBar_title org.muctec.smartfritz:title}
{@link #ActionBar_titleTextStyle org.muctec.smartfritz:titleTextStyle}Specifies a style to use for title text.
+ * @see #ActionBar_background + * @see #ActionBar_backgroundSplit + * @see #ActionBar_backgroundStacked + * @see #ActionBar_contentInsetEnd + * @see #ActionBar_contentInsetEndWithActions + * @see #ActionBar_contentInsetLeft + * @see #ActionBar_contentInsetRight + * @see #ActionBar_contentInsetStart + * @see #ActionBar_contentInsetStartWithNavigation + * @see #ActionBar_customNavigationLayout + * @see #ActionBar_displayOptions + * @see #ActionBar_divider + * @see #ActionBar_elevation + * @see #ActionBar_height + * @see #ActionBar_hideOnContentScroll + * @see #ActionBar_homeAsUpIndicator + * @see #ActionBar_homeLayout + * @see #ActionBar_icon + * @see #ActionBar_indeterminateProgressStyle + * @see #ActionBar_itemPadding + * @see #ActionBar_logo + * @see #ActionBar_navigationMode + * @see #ActionBar_popupTheme + * @see #ActionBar_progressBarPadding + * @see #ActionBar_progressBarStyle + * @see #ActionBar_subtitle + * @see #ActionBar_subtitleTextStyle + * @see #ActionBar_title + * @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar={ + 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030091, + 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, + 0x7f030096, 0x7f0300a4, 0x7f0300a9, 0x7f0300aa, + 0x7f0300b5, 0x7f0300df, 0x7f0300e4, 0x7f0300e9, + 0x7f0300ea, 0x7f0300ec, 0x7f0300f6, 0x7f030100, + 0x7f030123, 0x7f03012f, 0x7f030140, 0x7f030144, + 0x7f030145, 0x7f030173, 0x7f030176, 0x7f0301bb, + 0x7f0301c5 + }; + /** + *

+ * @attr description + * Specifies a background drawable for the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:background + */ + public static final int ActionBar_background=0; + /** + *

+ * @attr description + * Specifies a background drawable for the bottom component of a split action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundSplit + */ + public static final int ActionBar_backgroundSplit=1; + /** + *

+ * @attr description + * Specifies a background drawable for a second stacked row of the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundStacked + */ + public static final int ActionBar_backgroundStacked=2; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd=3; + /** + *

+ * @attr description + * Minimum inset for content views within a bar when actions from a menu + * are present. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions=4; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft=5; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetRight + */ + public static final int ActionBar_contentInsetRight=6; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetStart + */ + public static final int ActionBar_contentInsetStart=7; + /** + *

+ * @attr description + * Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation=8; + /** + *

+ * @attr description + * Specifies a layout for custom navigation. Overrides navigationMode. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout=9; + /** + *

+ * @attr description + * Options affecting how the action bar is displayed. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
+ * + * @attr name org.muctec.smartfritz:displayOptions + */ + public static final int ActionBar_displayOptions=10; + /** + *

+ * @attr description + * Specifies the drawable used for item dividers. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:divider + */ + public static final int ActionBar_divider=11; + /** + *

+ * @attr description + * Elevation for the action bar itself + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:elevation + */ + public static final int ActionBar_elevation=12; + /** + *

+ * @attr description + * Specifies a fixed height. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:height + */ + public static final int ActionBar_height=13; + /** + *

+ * @attr description + * Set true to hide the action bar on a vertical nested scroll of content. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll=14; + /** + *

+ * @attr description + * Up navigation glyph + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator=15; + /** + *

+ * @attr description + * Specifies a layout to use for the "home" section of the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:homeLayout + */ + public static final int ActionBar_homeLayout=16; + /** + *

+ * @attr description + * Specifies the drawable used for the application icon. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:icon + */ + public static final int ActionBar_icon=17; + /** + *

+ * @attr description + * Specifies a style resource to use for an indeterminate progress spinner. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle=18; + /** + *

+ * @attr description + * Specifies padding that should be applied to the left and right sides of + * system-provided items in the bar. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:itemPadding + */ + public static final int ActionBar_itemPadding=19; + /** + *

+ * @attr description + * Specifies the drawable used for the application logo. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:logo + */ + public static final int ActionBar_logo=20; + /** + *

+ * @attr description + * The type of navigation to use. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
listMode1The action bar will use a selection list for navigation.
normal0Normal static title text
tabMode2The action bar will use a series of horizontal tabs for navigation.
+ * + * @attr name org.muctec.smartfritz:navigationMode + */ + public static final int ActionBar_navigationMode=21; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:popupTheme + */ + public static final int ActionBar_popupTheme=22; + /** + *

+ * @attr description + * Specifies the horizontal padding on either end for an embedded progress bar. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:progressBarPadding + */ + public static final int ActionBar_progressBarPadding=23; + /** + *

+ * @attr description + * Specifies a style resource to use for an embedded progress bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:progressBarStyle + */ + public static final int ActionBar_progressBarStyle=24; + /** + *

+ * @attr description + * Specifies subtitle text used for navigationMode="normal" + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:subtitle + */ + public static final int ActionBar_subtitle=25; + /** + *

+ * @attr description + * Specifies a style to use for subtitle text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle=26; + /** + *

+ * @attr description + * Specifies title text used for navigationMode="normal" + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:title + */ + public static final int ActionBar_title=27; + /** + *

+ * @attr description + * Specifies a style to use for title text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:titleTextStyle + */ + public static final int ActionBar_titleTextStyle=28; + /** + * Attributes that can be used with a ActionBarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ * @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout={ + 0x010100b3 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #ActionBarLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity=0; + /** + * Attributes that can be used with a ActionMenuItemView. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ * @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView={ + 0x0101013f + }; + /** + *

This symbol is the offset where the {@link android.R.attr#minWidth} + * attribute's value can be found in the {@link #ActionMenuItemView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth=0; + public static final int[] ActionMenuView={ + }; + /** + * Attributes that can be used with a ActionMode. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ActionMode_background org.muctec.smartfritz:background}Specifies a background drawable for the action bar.
{@link #ActionMode_backgroundSplit org.muctec.smartfritz:backgroundSplit}Specifies a background drawable for the bottom component of a split action bar.
{@link #ActionMode_closeItemLayout org.muctec.smartfritz:closeItemLayout}Specifies a layout to use for the "close" item at the starting edge.
{@link #ActionMode_height org.muctec.smartfritz:height}
{@link #ActionMode_subtitleTextStyle org.muctec.smartfritz:subtitleTextStyle}Specifies a style to use for subtitle text.
{@link #ActionMode_titleTextStyle org.muctec.smartfritz:titleTextStyle}Specifies a style to use for title text.
+ * @see #ActionMode_background + * @see #ActionMode_backgroundSplit + * @see #ActionMode_closeItemLayout + * @see #ActionMode_height + * @see #ActionMode_subtitleTextStyle + * @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode={ + 0x7f030031, 0x7f030032, 0x7f03007e, 0x7f0300df, + 0x7f030176, 0x7f0301c5 + }; + /** + *

+ * @attr description + * Specifies a background for the action mode bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:background + */ + public static final int ActionMode_background=0; + /** + *

+ * @attr description + * Specifies a background for the split action mode bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundSplit + */ + public static final int ActionMode_backgroundSplit=1; + /** + *

+ * @attr description + * Specifies a layout to use for the "close" item at the starting edge. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:closeItemLayout + */ + public static final int ActionMode_closeItemLayout=2; + /** + *

+ * @attr description + * Specifies a fixed height for the action mode bar. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:height + */ + public static final int ActionMode_height=3; + /** + *

+ * @attr description + * Specifies a style to use for subtitle text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle=4; + /** + *

+ * @attr description + * Specifies a style to use for title text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:titleTextStyle + */ + public static final int ActionMode_titleTextStyle=5; + /** + * Attributes that can be used with a ActivityChooserView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable org.muctec.smartfritz:expandActivityOverflowButtonDrawable}The drawable to show in the button for expanding the activities overflow popup.
{@link #ActivityChooserView_initialActivityCount org.muctec.smartfritz:initialActivityCount}The maximal number of items initially shown in the activity list.
+ * @see #ActivityChooserView_expandActivityOverflowButtonDrawable + * @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView={ + 0x7f0300ba, 0x7f0300f7 + }; + /** + *

+ * @attr description + * The drawable to show in the button for expanding the activities overflow popup. + * Note: Clients would like to set this drawable + * as a clue about the action the chosen activity will perform. For + * example, if share activity is to be chosen the drawable should + * give a clue that sharing is to be performed. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; + /** + *

+ * @attr description + * The maximal number of items initially shown in the activity list. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount=1; + /** + * Attributes that can be used with a AlertDialog. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonIconDimen org.muctec.smartfritz:buttonIconDimen}
{@link #AlertDialog_buttonPanelSideLayout org.muctec.smartfritz:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout org.muctec.smartfritz:listItemLayout}
{@link #AlertDialog_listLayout org.muctec.smartfritz:listLayout}
{@link #AlertDialog_multiChoiceItemLayout org.muctec.smartfritz:multiChoiceItemLayout}
{@link #AlertDialog_showTitle org.muctec.smartfritz:showTitle}
{@link #AlertDialog_singleChoiceItemLayout org.muctec.smartfritz:singleChoiceItemLayout}
+ * @see #AlertDialog_android_layout + * @see #AlertDialog_buttonIconDimen + * @see #AlertDialog_buttonPanelSideLayout + * @see #AlertDialog_listItemLayout + * @see #AlertDialog_listLayout + * @see #AlertDialog_multiChoiceItemLayout + * @see #AlertDialog_showTitle + * @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog={ + 0x010100f2, 0x7f030052, 0x7f030053, 0x7f03011a, + 0x7f03011b, 0x7f03012c, 0x7f03015b, 0x7f03015c + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:layout + */ + public static final int AlertDialog_android_layout=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#buttonIconDimen} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:buttonIconDimen + */ + public static final int AlertDialog_buttonIconDimen=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#buttonPanelSideLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#listItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:listItemLayout + */ + public static final int AlertDialog_listItemLayout=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#listLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:listLayout + */ + public static final int AlertDialog_listLayout=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#multiChoiceItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#showTitle} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:showTitle + */ + public static final int AlertDialog_showTitle=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#singleChoiceItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout=7; + /** + * Attributes that can be used with a AnimatedStateListDrawableCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AnimatedStateListDrawableCompat_android_dither android:dither}
{@link #AnimatedStateListDrawableCompat_android_visible android:visible}
{@link #AnimatedStateListDrawableCompat_android_variablePadding android:variablePadding}
{@link #AnimatedStateListDrawableCompat_android_constantSize android:constantSize}
{@link #AnimatedStateListDrawableCompat_android_enterFadeDuration android:enterFadeDuration}
{@link #AnimatedStateListDrawableCompat_android_exitFadeDuration android:exitFadeDuration}
+ * @see #AnimatedStateListDrawableCompat_android_dither + * @see #AnimatedStateListDrawableCompat_android_visible + * @see #AnimatedStateListDrawableCompat_android_variablePadding + * @see #AnimatedStateListDrawableCompat_android_constantSize + * @see #AnimatedStateListDrawableCompat_android_enterFadeDuration + * @see #AnimatedStateListDrawableCompat_android_exitFadeDuration + */ + public static final int[] AnimatedStateListDrawableCompat={ + 0x0101011c, 0x01010194, 0x01010195, 0x01010196, + 0x0101030c, 0x0101030d + }; + /** + *

+ * @attr description + * Enables or disables dithering of the bitmap if the bitmap does not have the + * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + * an RGB 565 screen). + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:dither + */ + public static final int AnimatedStateListDrawableCompat_android_dither=0; + /** + *

+ * @attr description + * Indicates whether the drawable should be initially visible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int AnimatedStateListDrawableCompat_android_visible=1; + /** + *

+ * @attr description + * If true, allows the drawable's padding to change based on the + * current state that is selected. If false, the padding will + * stay the same (based on the maximum padding of all the states). + * Enabling this feature requires that the owner of the drawable + * deal with performing layout when the state changes, which is + * often not supported. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:variablePadding + */ + public static final int AnimatedStateListDrawableCompat_android_variablePadding=2; + /** + *

+ * @attr description + * If true, the drawable's reported internal size will remain + * constant as the state changes; the size is the maximum of all + * of the states. If false, the size will vary based on the + * current state. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:constantSize + */ + public static final int AnimatedStateListDrawableCompat_android_constantSize=3; + /** + *

+ * @attr description + * Amount of time (in milliseconds) to fade in a new state drawable. + * + *

May be an integer value, such as "100". + * + * @attr name android:enterFadeDuration + */ + public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration=4; + /** + *

+ * @attr description + * Amount of time (in milliseconds) to fade out an old state drawable. + * + *

May be an integer value, such as "100". + * + * @attr name android:exitFadeDuration + */ + public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration=5; + /** + * Attributes that can be used with a AnimatedStateListDrawableItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #AnimatedStateListDrawableItem_android_id android:id}
{@link #AnimatedStateListDrawableItem_android_drawable android:drawable}
+ * @see #AnimatedStateListDrawableItem_android_id + * @see #AnimatedStateListDrawableItem_android_drawable + */ + public static final int[] AnimatedStateListDrawableItem={ + 0x010100d0, 0x01010199 + }; + /** + *

+ * @attr description + * Keyframe identifier for use in specifying transitions. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int AnimatedStateListDrawableItem_android_id=0; + /** + *

+ * @attr description + * Reference to a drawable resource to use for the frame. If not + * given, the drawable must be defined by the first child tag. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:drawable + */ + public static final int AnimatedStateListDrawableItem_android_drawable=1; + /** + * Attributes that can be used with a AnimatedStateListDrawableTransition. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AnimatedStateListDrawableTransition_android_drawable android:drawable}
{@link #AnimatedStateListDrawableTransition_android_toId android:toId}
{@link #AnimatedStateListDrawableTransition_android_fromId android:fromId}
{@link #AnimatedStateListDrawableTransition_android_reversible android:reversible}
+ * @see #AnimatedStateListDrawableTransition_android_drawable + * @see #AnimatedStateListDrawableTransition_android_toId + * @see #AnimatedStateListDrawableTransition_android_fromId + * @see #AnimatedStateListDrawableTransition_android_reversible + */ + public static final int[] AnimatedStateListDrawableTransition={ + 0x01010199, 0x01010449, 0x0101044a, 0x0101044b + }; + /** + *

+ * @attr description + * Reference to a animation drawable resource to use for the frame. If not + * given, the animation drawable must be defined by the first child tag. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:drawable + */ + public static final int AnimatedStateListDrawableTransition_android_drawable=0; + /** + *

+ * @attr description + * Keyframe identifier for the ending state. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:toId + */ + public static final int AnimatedStateListDrawableTransition_android_toId=1; + /** + *

+ * @attr description + * Keyframe identifier for the starting state. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:fromId + */ + public static final int AnimatedStateListDrawableTransition_android_fromId=2; + /** + *

+ * @attr description + * Whether this transition is reversible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:reversible + */ + public static final int AnimatedStateListDrawableTransition_android_reversible=3; + /** + * Attributes that can be used with a AppBarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_elevation org.muctec.smartfritz:elevation}Elevation for the action bar itself
{@link #AppBarLayout_expanded org.muctec.smartfritz:expanded}
{@link #AppBarLayout_liftOnScroll org.muctec.smartfritz:liftOnScroll}
+ * @see #AppBarLayout_android_background + * @see #AppBarLayout_android_touchscreenBlocksFocus + * @see #AppBarLayout_android_keyboardNavigationCluster + * @see #AppBarLayout_elevation + * @see #AppBarLayout_expanded + * @see #AppBarLayout_liftOnScroll + */ + public static final int[] AppBarLayout={ + 0x010100d4, 0x0101048f, 0x01010540, 0x7f0300b5, + 0x7f0300bb, 0x7f030115 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#background} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:background + */ + public static final int AppBarLayout_android_background=0; + /** + *

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus=1; + /** + *

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster=2; + /** + *

+ * @attr description + * Elevation for the action bar itself + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:elevation + */ + public static final int AppBarLayout_elevation=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expanded} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:expanded + */ + public static final int AppBarLayout_expanded=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#liftOnScroll} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:liftOnScroll + */ + public static final int AppBarLayout_liftOnScroll=5; + /** + * Attributes that can be used with a AppBarLayoutStates. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed org.muctec.smartfritz:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible org.muctec.smartfritz:state_collapsible}
{@link #AppBarLayoutStates_state_liftable org.muctec.smartfritz:state_liftable}
{@link #AppBarLayoutStates_state_lifted org.muctec.smartfritz:state_lifted}
+ * @see #AppBarLayoutStates_state_collapsed + * @see #AppBarLayoutStates_state_collapsible + * @see #AppBarLayoutStates_state_liftable + * @see #AppBarLayoutStates_state_lifted + */ + public static final int[] AppBarLayoutStates={ + 0x7f030169, 0x7f03016a, 0x7f03016b, 0x7f03016c + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#state_collapsed} + * attribute's value can be found in the {@link #AppBarLayoutStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#state_collapsible} + * attribute's value can be found in the {@link #AppBarLayoutStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#state_liftable} + * attribute's value can be found in the {@link #AppBarLayoutStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:state_liftable + */ + public static final int AppBarLayoutStates_state_liftable=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#state_lifted} + * attribute's value can be found in the {@link #AppBarLayoutStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:state_lifted + */ + public static final int AppBarLayoutStates_state_lifted=3; + /** + * Attributes that can be used with a AppBarLayout_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags org.muctec.smartfritz:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator org.muctec.smartfritz:layout_scrollInterpolator}
+ * @see #AppBarLayout_Layout_layout_scrollFlags + * @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout={ + 0x7f030113, 0x7f030114 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#layout_scrollFlags} + * attribute's value can be found in the {@link #AppBarLayout_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
enterAlways4
enterAlwaysCollapsed8
exitUntilCollapsed2
scroll1
snap10
snapMargins20
+ * + * @attr name org.muctec.smartfritz:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#layout_scrollInterpolator} + * attribute's value can be found in the {@link #AppBarLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator=1; + /** + * Attributes that can be used with a AppCompatImageView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat org.muctec.smartfritz:srcCompat}Sets a drawable as the content of this ImageView.
{@link #AppCompatImageView_tint org.muctec.smartfritz:tint}Tint to apply to the image source.
{@link #AppCompatImageView_tintMode org.muctec.smartfritz:tintMode}Blending mode used to apply the image source tint.
+ * @see #AppCompatImageView_android_src + * @see #AppCompatImageView_srcCompat + * @see #AppCompatImageView_tint + * @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView={ + 0x01010119, 0x7f030166, 0x7f0301b9, 0x7f0301ba + }; + /** + *

This symbol is the offset where the {@link android.R.attr#src} + * attribute's value can be found in the {@link #AppCompatImageView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:src + */ + public static final int AppCompatImageView_android_src=0; + /** + *

+ * @attr description + * Sets a drawable as the content of this ImageView. Allows the use of vector drawable + * when running on older versions of the platform. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:srcCompat + */ + public static final int AppCompatImageView_srcCompat=1; + /** + *

+ * @attr description + * Tint to apply to the image source. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tint + */ + public static final int AppCompatImageView_tint=2; + /** + *

+ * @attr description + * Blending mode used to apply the image source tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:tintMode + */ + public static final int AppCompatImageView_tintMode=3; + /** + * Attributes that can be used with a AppCompatSeekBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark org.muctec.smartfritz:tickMark}Drawable displayed at each progress position on a seekbar.
{@link #AppCompatSeekBar_tickMarkTint org.muctec.smartfritz:tickMarkTint}Tint to apply to the tick mark drawable.
{@link #AppCompatSeekBar_tickMarkTintMode org.muctec.smartfritz:tickMarkTintMode}Blending mode used to apply the tick mark tint.
+ * @see #AppCompatSeekBar_android_thumb + * @see #AppCompatSeekBar_tickMark + * @see #AppCompatSeekBar_tickMarkTint + * @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar={ + 0x01010142, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#thumb} + * attribute's value can be found in the {@link #AppCompatSeekBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb=0; + /** + *

+ * @attr description + * Drawable displayed at each progress position on a seekbar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:tickMark + */ + public static final int AppCompatSeekBar_tickMark=1; + /** + *

+ * @attr description + * Tint to apply to the tick mark drawable. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint=2; + /** + *

+ * @attr description + * Blending mode used to apply the tick mark tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode=3; + /** + * Attributes that can be used with a AppCompatTextHelper. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
+ * @see #AppCompatTextHelper_android_textAppearance + * @see #AppCompatTextHelper_android_drawableTop + * @see #AppCompatTextHelper_android_drawableBottom + * @see #AppCompatTextHelper_android_drawableLeft + * @see #AppCompatTextHelper_android_drawableRight + * @see #AppCompatTextHelper_android_drawableStart + * @see #AppCompatTextHelper_android_drawableEnd + */ + public static final int[] AppCompatTextHelper={ + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableTop} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop=1; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableBottom} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom=2; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableLeft} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft=3; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableRight} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight=4; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableStart} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart=5; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableEnd} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd=6; + /** + * Attributes that can be used with a AppCompatTextView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize org.muctec.smartfritz:autoSizeMaxTextSize}The maximum text size constraint to be used when auto-sizing text.
{@link #AppCompatTextView_autoSizeMinTextSize org.muctec.smartfritz:autoSizeMinTextSize}The minimum text size constraint to be used when auto-sizing text.
{@link #AppCompatTextView_autoSizePresetSizes org.muctec.smartfritz:autoSizePresetSizes}Resource array of dimensions to be used in conjunction with + * autoSizeTextType set to uniform.
{@link #AppCompatTextView_autoSizeStepGranularity org.muctec.smartfritz:autoSizeStepGranularity}Specify the auto-size step size if autoSizeTextType is set to + * uniform.
{@link #AppCompatTextView_autoSizeTextType org.muctec.smartfritz:autoSizeTextType}Specify the type of auto-size.
{@link #AppCompatTextView_firstBaselineToTopHeight org.muctec.smartfritz:firstBaselineToTopHeight}Distance from the top of the TextView to the first text baseline.
{@link #AppCompatTextView_fontFamily org.muctec.smartfritz:fontFamily}The attribute for the font family.
{@link #AppCompatTextView_lastBaselineToBottomHeight org.muctec.smartfritz:lastBaselineToBottomHeight}Distance from the bottom of the TextView to the last text baseline.
{@link #AppCompatTextView_lineHeight org.muctec.smartfritz:lineHeight}Explicit height between lines of text.
{@link #AppCompatTextView_textAllCaps org.muctec.smartfritz:textAllCaps}Present the text in ALL CAPS.
+ * @see #AppCompatTextView_android_textAppearance + * @see #AppCompatTextView_autoSizeMaxTextSize + * @see #AppCompatTextView_autoSizeMinTextSize + * @see #AppCompatTextView_autoSizePresetSizes + * @see #AppCompatTextView_autoSizeStepGranularity + * @see #AppCompatTextView_autoSizeTextType + * @see #AppCompatTextView_firstBaselineToTopHeight + * @see #AppCompatTextView_fontFamily + * @see #AppCompatTextView_lastBaselineToBottomHeight + * @see #AppCompatTextView_lineHeight + * @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView={ + 0x01010034, 0x7f03002c, 0x7f03002d, 0x7f03002e, + 0x7f03002f, 0x7f030030, 0x7f0300ce, 0x7f0300d1, + 0x7f030108, 0x7f030116, 0x7f030196 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance=0; + /** + *

+ * @attr description + * The maximum text size constraint to be used when auto-sizing text. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize=1; + /** + *

+ * @attr description + * The minimum text size constraint to be used when auto-sizing text. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize=2; + /** + *

+ * @attr description + * Resource array of dimensions to be used in conjunction with + * autoSizeTextType set to uniform. Overrides + * autoSizeStepGranularity if set. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes=3; + /** + *

+ * @attr description + * Specify the auto-size step size if autoSizeTextType is set to + * uniform. The default is 1px. Overwrites + * autoSizePresetSizes if set. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity=4; + /** + *

+ * @attr description + * Specify the type of auto-size. Note that this feature is not supported by EditText, + * works only for TextView. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
none0No auto-sizing (default).
uniform1Uniform horizontal and vertical text size scaling to fit within the + * container.
+ * + * @attr name org.muctec.smartfritz:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType=5; + /** + *

+ * @attr description + * Distance from the top of the TextView to the first text baseline. If set, this + * overrides the value set for paddingTop. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:firstBaselineToTopHeight + */ + public static final int AppCompatTextView_firstBaselineToTopHeight=6; + /** + *

+ * @attr description + * The attribute for the font family. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:fontFamily + */ + public static final int AppCompatTextView_fontFamily=7; + /** + *

+ * @attr description + * Distance from the bottom of the TextView to the last text baseline. If set, this + * overrides the value set for paddingBottom. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:lastBaselineToBottomHeight + */ + public static final int AppCompatTextView_lastBaselineToBottomHeight=8; + /** + *

+ * @attr description + * Explicit height between lines of text. If set, this will override the values set + * for lineSpacingExtra and lineSpacingMultiplier. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:lineHeight + */ + public static final int AppCompatTextView_lineHeight=9; + /** + *

+ * @attr description + * Present the text in ALL CAPS. This may use a small-caps form when available. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps=10; + /** + * Attributes that can be used with a AppCompatTheme. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_actionBarDivider org.muctec.smartfritz:actionBarDivider}Custom divider drawable to use for elements in the action bar.
{@link #AppCompatTheme_actionBarItemBackground org.muctec.smartfritz:actionBarItemBackground}Custom item state list drawable background for action bar items.
{@link #AppCompatTheme_actionBarPopupTheme org.muctec.smartfritz:actionBarPopupTheme}Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar.
{@link #AppCompatTheme_actionBarSize org.muctec.smartfritz:actionBarSize}Size of the Action Bar, including the contextual + * bar used to present Action Modes.
{@link #AppCompatTheme_actionBarSplitStyle org.muctec.smartfritz:actionBarSplitStyle}Reference to a style for the split Action Bar.
{@link #AppCompatTheme_actionBarStyle org.muctec.smartfritz:actionBarStyle}Reference to a style for the Action Bar
{@link #AppCompatTheme_actionBarTabBarStyle org.muctec.smartfritz:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle org.muctec.smartfritz:actionBarTabStyle}Default style for tabs within an action bar
{@link #AppCompatTheme_actionBarTabTextStyle org.muctec.smartfritz:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme org.muctec.smartfritz:actionBarTheme}Reference to a theme that should be used to inflate the + * action bar.
{@link #AppCompatTheme_actionBarWidgetTheme org.muctec.smartfritz:actionBarWidgetTheme}Reference to a theme that should be used to inflate widgets + * and layouts destined for the action bar.
{@link #AppCompatTheme_actionButtonStyle org.muctec.smartfritz:actionButtonStyle}Default action button style.
{@link #AppCompatTheme_actionDropDownStyle org.muctec.smartfritz:actionDropDownStyle}Default ActionBar dropdown style.
{@link #AppCompatTheme_actionMenuTextAppearance org.muctec.smartfritz:actionMenuTextAppearance}TextAppearance style that will be applied to text that + * appears within action menu items.
{@link #AppCompatTheme_actionMenuTextColor org.muctec.smartfritz:actionMenuTextColor}Color for text that appears within action menu items.
{@link #AppCompatTheme_actionModeBackground org.muctec.smartfritz:actionModeBackground}Background drawable to use for action mode UI
{@link #AppCompatTheme_actionModeCloseButtonStyle org.muctec.smartfritz:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable org.muctec.smartfritz:actionModeCloseDrawable}Drawable to use for the close action mode button
{@link #AppCompatTheme_actionModeCopyDrawable org.muctec.smartfritz:actionModeCopyDrawable}Drawable to use for the Copy action button in Contextual Action Bar
{@link #AppCompatTheme_actionModeCutDrawable org.muctec.smartfritz:actionModeCutDrawable}Drawable to use for the Cut action button in Contextual Action Bar
{@link #AppCompatTheme_actionModeFindDrawable org.muctec.smartfritz:actionModeFindDrawable}Drawable to use for the Find action button in WebView selection action modes
{@link #AppCompatTheme_actionModePasteDrawable org.muctec.smartfritz:actionModePasteDrawable}Drawable to use for the Paste action button in Contextual Action Bar
{@link #AppCompatTheme_actionModePopupWindowStyle org.muctec.smartfritz:actionModePopupWindowStyle}PopupWindow style to use for action modes when showing as a window overlay.
{@link #AppCompatTheme_actionModeSelectAllDrawable org.muctec.smartfritz:actionModeSelectAllDrawable}Drawable to use for the Select all action button in Contextual Action Bar
{@link #AppCompatTheme_actionModeShareDrawable org.muctec.smartfritz:actionModeShareDrawable}Drawable to use for the Share action button in WebView selection action modes
{@link #AppCompatTheme_actionModeSplitBackground org.muctec.smartfritz:actionModeSplitBackground}Background drawable to use for action mode UI in the lower split bar
{@link #AppCompatTheme_actionModeStyle org.muctec.smartfritz:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable org.muctec.smartfritz:actionModeWebSearchDrawable}Drawable to use for the Web Search action button in WebView selection action modes
{@link #AppCompatTheme_actionOverflowButtonStyle org.muctec.smartfritz:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle org.muctec.smartfritz:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle org.muctec.smartfritz:activityChooserViewStyle}Default ActivityChooserView style.
{@link #AppCompatTheme_alertDialogButtonGroupStyle org.muctec.smartfritz:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons org.muctec.smartfritz:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle org.muctec.smartfritz:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme org.muctec.smartfritz:alertDialogTheme}Theme to use for alert dialogs spawned from this theme.
{@link #AppCompatTheme_autoCompleteTextViewStyle org.muctec.smartfritz:autoCompleteTextViewStyle}Default AutoCompleteTextView style.
{@link #AppCompatTheme_borderlessButtonStyle org.muctec.smartfritz:borderlessButtonStyle}Style for buttons without an explicit border, often used in groups.
{@link #AppCompatTheme_buttonBarButtonStyle org.muctec.smartfritz:buttonBarButtonStyle}Style for buttons within button bars
{@link #AppCompatTheme_buttonBarNegativeButtonStyle org.muctec.smartfritz:buttonBarNegativeButtonStyle}Style for the "negative" buttons within button bars
{@link #AppCompatTheme_buttonBarNeutralButtonStyle org.muctec.smartfritz:buttonBarNeutralButtonStyle}Style for the "neutral" buttons within button bars
{@link #AppCompatTheme_buttonBarPositiveButtonStyle org.muctec.smartfritz:buttonBarPositiveButtonStyle}Style for the "positive" buttons within button bars
{@link #AppCompatTheme_buttonBarStyle org.muctec.smartfritz:buttonBarStyle}Style for button bars
{@link #AppCompatTheme_buttonStyle org.muctec.smartfritz:buttonStyle}Normal Button style.
{@link #AppCompatTheme_buttonStyleSmall org.muctec.smartfritz:buttonStyleSmall}Small Button style.
{@link #AppCompatTheme_checkboxStyle org.muctec.smartfritz:checkboxStyle}Default Checkbox style.
{@link #AppCompatTheme_checkedTextViewStyle org.muctec.smartfritz:checkedTextViewStyle}Default CheckedTextView style.
{@link #AppCompatTheme_colorAccent org.muctec.smartfritz:colorAccent}Bright complement to the primary branding color.
{@link #AppCompatTheme_colorBackgroundFloating org.muctec.smartfritz:colorBackgroundFloating}Default color of background imagery for floating components, ex.
{@link #AppCompatTheme_colorButtonNormal org.muctec.smartfritz:colorButtonNormal}The color applied to framework buttons in their normal state.
{@link #AppCompatTheme_colorControlActivated org.muctec.smartfritz:colorControlActivated}The color applied to framework controls in their activated (ex.
{@link #AppCompatTheme_colorControlHighlight org.muctec.smartfritz:colorControlHighlight}The color applied to framework control highlights (ex.
{@link #AppCompatTheme_colorControlNormal org.muctec.smartfritz:colorControlNormal}The color applied to framework controls in their normal state.
{@link #AppCompatTheme_colorError org.muctec.smartfritz:colorError}Color used for error states and things that need to be drawn to + * the user's attention.
{@link #AppCompatTheme_colorPrimary org.muctec.smartfritz:colorPrimary}The primary branding color for the app.
{@link #AppCompatTheme_colorPrimaryDark org.muctec.smartfritz:colorPrimaryDark}Dark variant of the primary branding color.
{@link #AppCompatTheme_colorSwitchThumbNormal org.muctec.smartfritz:colorSwitchThumbNormal}The color applied to framework switch thumbs in their normal state.
{@link #AppCompatTheme_controlBackground org.muctec.smartfritz:controlBackground}The background used by framework controls.
{@link #AppCompatTheme_dialogCornerRadius org.muctec.smartfritz:dialogCornerRadius}Preferred corner radius of dialogs.
{@link #AppCompatTheme_dialogPreferredPadding org.muctec.smartfritz:dialogPreferredPadding}Preferred padding for dialog content.
{@link #AppCompatTheme_dialogTheme org.muctec.smartfritz:dialogTheme}Theme to use for dialogs spawned from this theme.
{@link #AppCompatTheme_dividerHorizontal org.muctec.smartfritz:dividerHorizontal}A drawable that may be used as a horizontal divider between visual elements.
{@link #AppCompatTheme_dividerVertical org.muctec.smartfritz:dividerVertical}A drawable that may be used as a vertical divider between visual elements.
{@link #AppCompatTheme_dropDownListViewStyle org.muctec.smartfritz:dropDownListViewStyle}ListPopupWindow compatibility
{@link #AppCompatTheme_dropdownListPreferredItemHeight org.muctec.smartfritz:dropdownListPreferredItemHeight}The preferred item height for dropdown lists.
{@link #AppCompatTheme_editTextBackground org.muctec.smartfritz:editTextBackground}EditText background drawable.
{@link #AppCompatTheme_editTextColor org.muctec.smartfritz:editTextColor}EditText text foreground color.
{@link #AppCompatTheme_editTextStyle org.muctec.smartfritz:editTextStyle}Default EditText style.
{@link #AppCompatTheme_homeAsUpIndicator org.muctec.smartfritz:homeAsUpIndicator}Specifies a drawable to use for the 'home as up' indicator.
{@link #AppCompatTheme_imageButtonStyle org.muctec.smartfritz:imageButtonStyle}ImageButton background drawable.
{@link #AppCompatTheme_listChoiceBackgroundIndicator org.muctec.smartfritz:listChoiceBackgroundIndicator}Drawable used as a background for selected list items.
{@link #AppCompatTheme_listDividerAlertDialog org.muctec.smartfritz:listDividerAlertDialog}The list divider used in alert dialogs.
{@link #AppCompatTheme_listMenuViewStyle org.muctec.smartfritz:listMenuViewStyle}Default menu-style ListView style.
{@link #AppCompatTheme_listPopupWindowStyle org.muctec.smartfritz:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight org.muctec.smartfritz:listPreferredItemHeight}The preferred list item height.
{@link #AppCompatTheme_listPreferredItemHeightLarge org.muctec.smartfritz:listPreferredItemHeightLarge}A larger, more robust list item height.
{@link #AppCompatTheme_listPreferredItemHeightSmall org.muctec.smartfritz:listPreferredItemHeightSmall}A smaller, sleeker list item height.
{@link #AppCompatTheme_listPreferredItemPaddingLeft org.muctec.smartfritz:listPreferredItemPaddingLeft}The preferred padding along the left edge of list items.
{@link #AppCompatTheme_listPreferredItemPaddingRight org.muctec.smartfritz:listPreferredItemPaddingRight}The preferred padding along the right edge of list items.
{@link #AppCompatTheme_panelBackground org.muctec.smartfritz:panelBackground}The background of a panel when it is inset from the left and right edges of the screen.
{@link #AppCompatTheme_panelMenuListTheme org.muctec.smartfritz:panelMenuListTheme}Default Panel Menu style.
{@link #AppCompatTheme_panelMenuListWidth org.muctec.smartfritz:panelMenuListWidth}Default Panel Menu width.
{@link #AppCompatTheme_popupMenuStyle org.muctec.smartfritz:popupMenuStyle}Default PopupMenu style.
{@link #AppCompatTheme_popupWindowStyle org.muctec.smartfritz:popupWindowStyle}Default PopupWindow style.
{@link #AppCompatTheme_radioButtonStyle org.muctec.smartfritz:radioButtonStyle}Default RadioButton style.
{@link #AppCompatTheme_ratingBarStyle org.muctec.smartfritz:ratingBarStyle}Default RatingBar style.
{@link #AppCompatTheme_ratingBarStyleIndicator org.muctec.smartfritz:ratingBarStyleIndicator}Indicator RatingBar style.
{@link #AppCompatTheme_ratingBarStyleSmall org.muctec.smartfritz:ratingBarStyleSmall}Small indicator RatingBar style.
{@link #AppCompatTheme_searchViewStyle org.muctec.smartfritz:searchViewStyle}Style for the search query widget.
{@link #AppCompatTheme_seekBarStyle org.muctec.smartfritz:seekBarStyle}Default SeekBar style.
{@link #AppCompatTheme_selectableItemBackground org.muctec.smartfritz:selectableItemBackground}A style that may be applied to buttons or other selectable items + * that should react to pressed and focus states, but that do not + * have a clear visual border along the edges.
{@link #AppCompatTheme_selectableItemBackgroundBorderless org.muctec.smartfritz:selectableItemBackgroundBorderless}Background drawable for borderless standalone items that need focus/pressed states.
{@link #AppCompatTheme_spinnerDropDownItemStyle org.muctec.smartfritz:spinnerDropDownItemStyle}Default Spinner style.
{@link #AppCompatTheme_spinnerStyle org.muctec.smartfritz:spinnerStyle}Default Spinner style.
{@link #AppCompatTheme_switchStyle org.muctec.smartfritz:switchStyle}Default style for the Switch widget.
{@link #AppCompatTheme_textAppearanceLargePopupMenu org.muctec.smartfritz:textAppearanceLargePopupMenu}Text color, typeface, size, and style for the text inside of a popup menu.
{@link #AppCompatTheme_textAppearanceListItem org.muctec.smartfritz:textAppearanceListItem}The preferred TextAppearance for the primary text of list items.
{@link #AppCompatTheme_textAppearanceListItemSecondary org.muctec.smartfritz:textAppearanceListItemSecondary}The preferred TextAppearance for the secondary text of list items.
{@link #AppCompatTheme_textAppearanceListItemSmall org.muctec.smartfritz:textAppearanceListItemSmall}The preferred TextAppearance for the primary text of small list items.
{@link #AppCompatTheme_textAppearancePopupMenuHeader org.muctec.smartfritz:textAppearancePopupMenuHeader}Text color, typeface, size, and style for header text inside of a popup menu.
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle org.muctec.smartfritz:textAppearanceSearchResultSubtitle}Text color, typeface, size, and style for system search result subtitle.
{@link #AppCompatTheme_textAppearanceSearchResultTitle org.muctec.smartfritz:textAppearanceSearchResultTitle}Text color, typeface, size, and style for system search result title.
{@link #AppCompatTheme_textAppearanceSmallPopupMenu org.muctec.smartfritz:textAppearanceSmallPopupMenu}Text color, typeface, size, and style for small text inside of a popup menu.
{@link #AppCompatTheme_textColorAlertDialogListItem org.muctec.smartfritz:textColorAlertDialogListItem}Color of list item text in alert dialogs.
{@link #AppCompatTheme_textColorSearchUrl org.muctec.smartfritz:textColorSearchUrl}Text color for urls in search suggestions, used by things like global search
{@link #AppCompatTheme_toolbarNavigationButtonStyle org.muctec.smartfritz:toolbarNavigationButtonStyle}Default Toolar NavigationButtonStyle
{@link #AppCompatTheme_toolbarStyle org.muctec.smartfritz:toolbarStyle}Default Toolbar style.
{@link #AppCompatTheme_tooltipForegroundColor org.muctec.smartfritz:tooltipForegroundColor}Foreground color to use for tooltips
{@link #AppCompatTheme_tooltipFrameBackground org.muctec.smartfritz:tooltipFrameBackground}Background to use for tooltips
{@link #AppCompatTheme_viewInflaterClass org.muctec.smartfritz:viewInflaterClass}
{@link #AppCompatTheme_windowActionBar org.muctec.smartfritz:windowActionBar}Flag indicating whether this window should have an Action Bar + * in place of the usual title bar.
{@link #AppCompatTheme_windowActionBarOverlay org.muctec.smartfritz:windowActionBarOverlay}Flag indicating whether this window's Action Bar should overlay + * application content.
{@link #AppCompatTheme_windowActionModeOverlay org.muctec.smartfritz:windowActionModeOverlay}Flag indicating whether action modes should overlay window content + * when there is not reserved space for their UI (such as an Action Bar).
{@link #AppCompatTheme_windowFixedHeightMajor org.muctec.smartfritz:windowFixedHeightMajor}A fixed height for the window along the major axis of the screen, + * that is, when in portrait.
{@link #AppCompatTheme_windowFixedHeightMinor org.muctec.smartfritz:windowFixedHeightMinor}A fixed height for the window along the minor axis of the screen, + * that is, when in landscape.
{@link #AppCompatTheme_windowFixedWidthMajor org.muctec.smartfritz:windowFixedWidthMajor}A fixed width for the window along the major axis of the screen, + * that is, when in landscape.
{@link #AppCompatTheme_windowFixedWidthMinor org.muctec.smartfritz:windowFixedWidthMinor}A fixed width for the window along the minor axis of the screen, + * that is, when in portrait.
{@link #AppCompatTheme_windowMinWidthMajor org.muctec.smartfritz:windowMinWidthMajor}The minimum width the window is allowed to be, along the major + * axis of the screen.
{@link #AppCompatTheme_windowMinWidthMinor org.muctec.smartfritz:windowMinWidthMinor}The minimum width the window is allowed to be, along the minor + * axis of the screen.
{@link #AppCompatTheme_windowNoTitle org.muctec.smartfritz:windowNoTitle}Flag indicating whether there should be no title on this window.
+ * @see #AppCompatTheme_android_windowIsFloating + * @see #AppCompatTheme_android_windowAnimationStyle + * @see #AppCompatTheme_actionBarDivider + * @see #AppCompatTheme_actionBarItemBackground + * @see #AppCompatTheme_actionBarPopupTheme + * @see #AppCompatTheme_actionBarSize + * @see #AppCompatTheme_actionBarSplitStyle + * @see #AppCompatTheme_actionBarStyle + * @see #AppCompatTheme_actionBarTabBarStyle + * @see #AppCompatTheme_actionBarTabStyle + * @see #AppCompatTheme_actionBarTabTextStyle + * @see #AppCompatTheme_actionBarTheme + * @see #AppCompatTheme_actionBarWidgetTheme + * @see #AppCompatTheme_actionButtonStyle + * @see #AppCompatTheme_actionDropDownStyle + * @see #AppCompatTheme_actionMenuTextAppearance + * @see #AppCompatTheme_actionMenuTextColor + * @see #AppCompatTheme_actionModeBackground + * @see #AppCompatTheme_actionModeCloseButtonStyle + * @see #AppCompatTheme_actionModeCloseDrawable + * @see #AppCompatTheme_actionModeCopyDrawable + * @see #AppCompatTheme_actionModeCutDrawable + * @see #AppCompatTheme_actionModeFindDrawable + * @see #AppCompatTheme_actionModePasteDrawable + * @see #AppCompatTheme_actionModePopupWindowStyle + * @see #AppCompatTheme_actionModeSelectAllDrawable + * @see #AppCompatTheme_actionModeShareDrawable + * @see #AppCompatTheme_actionModeSplitBackground + * @see #AppCompatTheme_actionModeStyle + * @see #AppCompatTheme_actionModeWebSearchDrawable + * @see #AppCompatTheme_actionOverflowButtonStyle + * @see #AppCompatTheme_actionOverflowMenuStyle + * @see #AppCompatTheme_activityChooserViewStyle + * @see #AppCompatTheme_alertDialogButtonGroupStyle + * @see #AppCompatTheme_alertDialogCenterButtons + * @see #AppCompatTheme_alertDialogStyle + * @see #AppCompatTheme_alertDialogTheme + * @see #AppCompatTheme_autoCompleteTextViewStyle + * @see #AppCompatTheme_borderlessButtonStyle + * @see #AppCompatTheme_buttonBarButtonStyle + * @see #AppCompatTheme_buttonBarNegativeButtonStyle + * @see #AppCompatTheme_buttonBarNeutralButtonStyle + * @see #AppCompatTheme_buttonBarPositiveButtonStyle + * @see #AppCompatTheme_buttonBarStyle + * @see #AppCompatTheme_buttonStyle + * @see #AppCompatTheme_buttonStyleSmall + * @see #AppCompatTheme_checkboxStyle + * @see #AppCompatTheme_checkedTextViewStyle + * @see #AppCompatTheme_colorAccent + * @see #AppCompatTheme_colorBackgroundFloating + * @see #AppCompatTheme_colorButtonNormal + * @see #AppCompatTheme_colorControlActivated + * @see #AppCompatTheme_colorControlHighlight + * @see #AppCompatTheme_colorControlNormal + * @see #AppCompatTheme_colorError + * @see #AppCompatTheme_colorPrimary + * @see #AppCompatTheme_colorPrimaryDark + * @see #AppCompatTheme_colorSwitchThumbNormal + * @see #AppCompatTheme_controlBackground + * @see #AppCompatTheme_dialogCornerRadius + * @see #AppCompatTheme_dialogPreferredPadding + * @see #AppCompatTheme_dialogTheme + * @see #AppCompatTheme_dividerHorizontal + * @see #AppCompatTheme_dividerVertical + * @see #AppCompatTheme_dropDownListViewStyle + * @see #AppCompatTheme_dropdownListPreferredItemHeight + * @see #AppCompatTheme_editTextBackground + * @see #AppCompatTheme_editTextColor + * @see #AppCompatTheme_editTextStyle + * @see #AppCompatTheme_homeAsUpIndicator + * @see #AppCompatTheme_imageButtonStyle + * @see #AppCompatTheme_listChoiceBackgroundIndicator + * @see #AppCompatTheme_listDividerAlertDialog + * @see #AppCompatTheme_listMenuViewStyle + * @see #AppCompatTheme_listPopupWindowStyle + * @see #AppCompatTheme_listPreferredItemHeight + * @see #AppCompatTheme_listPreferredItemHeightLarge + * @see #AppCompatTheme_listPreferredItemHeightSmall + * @see #AppCompatTheme_listPreferredItemPaddingLeft + * @see #AppCompatTheme_listPreferredItemPaddingRight + * @see #AppCompatTheme_panelBackground + * @see #AppCompatTheme_panelMenuListTheme + * @see #AppCompatTheme_panelMenuListWidth + * @see #AppCompatTheme_popupMenuStyle + * @see #AppCompatTheme_popupWindowStyle + * @see #AppCompatTheme_radioButtonStyle + * @see #AppCompatTheme_ratingBarStyle + * @see #AppCompatTheme_ratingBarStyleIndicator + * @see #AppCompatTheme_ratingBarStyleSmall + * @see #AppCompatTheme_searchViewStyle + * @see #AppCompatTheme_seekBarStyle + * @see #AppCompatTheme_selectableItemBackground + * @see #AppCompatTheme_selectableItemBackgroundBorderless + * @see #AppCompatTheme_spinnerDropDownItemStyle + * @see #AppCompatTheme_spinnerStyle + * @see #AppCompatTheme_switchStyle + * @see #AppCompatTheme_textAppearanceLargePopupMenu + * @see #AppCompatTheme_textAppearanceListItem + * @see #AppCompatTheme_textAppearanceListItemSecondary + * @see #AppCompatTheme_textAppearanceListItemSmall + * @see #AppCompatTheme_textAppearancePopupMenuHeader + * @see #AppCompatTheme_textAppearanceSearchResultSubtitle + * @see #AppCompatTheme_textAppearanceSearchResultTitle + * @see #AppCompatTheme_textAppearanceSmallPopupMenu + * @see #AppCompatTheme_textColorAlertDialogListItem + * @see #AppCompatTheme_textColorSearchUrl + * @see #AppCompatTheme_toolbarNavigationButtonStyle + * @see #AppCompatTheme_toolbarStyle + * @see #AppCompatTheme_tooltipForegroundColor + * @see #AppCompatTheme_tooltipFrameBackground + * @see #AppCompatTheme_viewInflaterClass + * @see #AppCompatTheme_windowActionBar + * @see #AppCompatTheme_windowActionBarOverlay + * @see #AppCompatTheme_windowActionModeOverlay + * @see #AppCompatTheme_windowFixedHeightMajor + * @see #AppCompatTheme_windowFixedHeightMinor + * @see #AppCompatTheme_windowFixedWidthMajor + * @see #AppCompatTheme_windowFixedWidthMinor + * @see #AppCompatTheme_windowMinWidthMajor + * @see #AppCompatTheme_windowMinWidthMinor + * @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme={ + 0x01010057, 0x010100ae, 0x7f030000, 0x7f030001, + 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, + 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, + 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, + 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, + 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, + 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, + 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, + 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, + 0x7f030025, 0x7f03002b, 0x7f03003e, 0x7f03004c, + 0x7f03004d, 0x7f03004e, 0x7f03004f, 0x7f030050, + 0x7f030054, 0x7f030055, 0x7f03005f, 0x7f030064, + 0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087, + 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, + 0x7f03008c, 0x7f03008e, 0x7f03009d, 0x7f0300a6, + 0x7f0300a7, 0x7f0300a8, 0x7f0300ab, 0x7f0300ad, + 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3, + 0x7f0300b4, 0x7f0300e9, 0x7f0300f5, 0x7f030118, + 0x7f030119, 0x7f03011c, 0x7f03011d, 0x7f03011e, + 0x7f03011f, 0x7f030120, 0x7f030121, 0x7f030122, + 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013f, + 0x7f030141, 0x7f030148, 0x7f030149, 0x7f03014a, + 0x7f03014b, 0x7f030153, 0x7f030154, 0x7f030155, + 0x7f030156, 0x7f030163, 0x7f030164, 0x7f03017a, + 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, + 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, + 0x7f0301ac, 0x7f0301ad, 0x7f0301c7, 0x7f0301c8, + 0x7f0301c9, 0x7f0301ca, 0x7f0301d1, 0x7f0301d3, + 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, + 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, + 0x7f0301dc + }; + /** + *

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating=0; + /** + *

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle=1; + /** + *

+ * @attr description + * Custom divider drawable to use for elements in the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider=2; + /** + *

+ * @attr description + * Custom item state list drawable background for action bar items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground=3; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme=4; + /** + *

+ * @attr description + * Size of the Action Bar, including the contextual + * bar used to present Action Modes. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrap_content0
+ * + * @attr name org.muctec.smartfritz:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize=5; + /** + *

+ * @attr description + * Reference to a style for the split Action Bar. This style + * controls the split component that holds the menu/action + * buttons. actionBarStyle is still used for the primary + * bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle=6; + /** + *

+ * @attr description + * Reference to a style for the Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#actionBarTabBarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle=8; + /** + *

+ * @attr description + * Default style for tabs within an action bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#actionBarTabTextStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle=10; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate the + * action bar. This will be inherited by any widget inflated + * into the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme=11; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate widgets + * and layouts destined for the action bar. Most of the time + * this will be a reference to the current theme, but when + * the action bar has a significantly different contrast + * profile than the rest of the activity the difference + * can become important. If this is set to @null the current + * theme will be used. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme=12; + /** + *

+ * @attr description + * Default action button style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle=13; + /** + *

+ * @attr description + * Default ActionBar dropdown style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle=14; + /** + *

+ * @attr description + * TextAppearance style that will be applied to text that + * appears within action menu items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance=15; + /** + *

+ * @attr description + * Color for text that appears within action menu items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor=16; + /** + *

+ * @attr description + * Background drawable to use for action mode UI + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground=17; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#actionModeCloseButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle=18; + /** + *

+ * @attr description + * Drawable to use for the close action mode button + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable=19; + /** + *

+ * @attr description + * Drawable to use for the Copy action button in Contextual Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable=20; + /** + *

+ * @attr description + * Drawable to use for the Cut action button in Contextual Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable=21; + /** + *

+ * @attr description + * Drawable to use for the Find action button in WebView selection action modes + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable=22; + /** + *

+ * @attr description + * Drawable to use for the Paste action button in Contextual Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable=23; + /** + *

+ * @attr description + * PopupWindow style to use for action modes when showing as a window overlay. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle=24; + /** + *

+ * @attr description + * Drawable to use for the Select all action button in Contextual Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable=25; + /** + *

+ * @attr description + * Drawable to use for the Share action button in WebView selection action modes + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable=26; + /** + *

+ * @attr description + * Background drawable to use for action mode UI in the lower split bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground=27; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#actionModeStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle=28; + /** + *

+ * @attr description + * Drawable to use for the Web Search action button in WebView selection action modes + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable=29; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#actionOverflowButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle=30; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#actionOverflowMenuStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle=31; + /** + *

+ * @attr description + * Default ActivityChooserView style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle=32; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#alertDialogButtonGroupStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#alertDialogCenterButtons} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons=34; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#alertDialogStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle=35; + /** + *

+ * @attr description + * Theme to use for alert dialogs spawned from this theme. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme=36; + /** + *

+ * @attr description + * Default AutoCompleteTextView style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle=37; + /** + *

+ * @attr description + * Style for buttons without an explicit border, often used in groups. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle=38; + /** + *

+ * @attr description + * Style for buttons within button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle=39; + /** + *

+ * @attr description + * Style for the "negative" buttons within button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; + /** + *

+ * @attr description + * Style for the "neutral" buttons within button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; + /** + *

+ * @attr description + * Style for the "positive" buttons within button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; + /** + *

+ * @attr description + * Style for button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle=43; + /** + *

+ * @attr description + * Normal Button style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle=44; + /** + *

+ * @attr description + * Small Button style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall=45; + /** + *

+ * @attr description + * Default Checkbox style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle=46; + /** + *

+ * @attr description + * Default CheckedTextView style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle=47; + /** + *

+ * @attr description + * Bright complement to the primary branding color. By default, this is the color applied + * to framework controls (via colorControlActivated). + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorAccent + */ + public static final int AppCompatTheme_colorAccent=48; + /** + *

+ * @attr description + * Default color of background imagery for floating components, ex. dialogs, popups, and cards. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating=49; + /** + *

+ * @attr description + * The color applied to framework buttons in their normal state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal=50; + /** + *

+ * @attr description + * The color applied to framework controls in their activated (ex. checked) state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated=51; + /** + *

+ * @attr description + * The color applied to framework control highlights (ex. ripples, list selectors). + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight=52; + /** + *

+ * @attr description + * The color applied to framework controls in their normal state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal=53; + /** + *

+ * @attr description + * Color used for error states and things that need to be drawn to + * the user's attention. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorError + */ + public static final int AppCompatTheme_colorError=54; + /** + *

+ * @attr description + * The primary branding color for the app. By default, this is the color applied to the + * action bar background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary=55; + /** + *

+ * @attr description + * Dark variant of the primary branding color. By default, this is the color applied to + * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark=56; + /** + *

+ * @attr description + * The color applied to framework switch thumbs in their normal state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal=57; + /** + *

+ * @attr description + * The background used by framework controls. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:controlBackground + */ + public static final int AppCompatTheme_controlBackground=58; + /** + *

+ * @attr description + * Preferred corner radius of dialogs. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:dialogCornerRadius + */ + public static final int AppCompatTheme_dialogCornerRadius=59; + /** + *

+ * @attr description + * Preferred padding for dialog content. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding=60; + /** + *

+ * @attr description + * Theme to use for dialogs spawned from this theme. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme=61; + /** + *

+ * @attr description + * A drawable that may be used as a horizontal divider between visual elements. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal=62; + /** + *

+ * @attr description + * A drawable that may be used as a vertical divider between visual elements. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical=63; + /** + *

+ * @attr description + * ListPopupWindow compatibility + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle=64; + /** + *

+ * @attr description + * The preferred item height for dropdown lists. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight=65; + /** + *

+ * @attr description + * EditText background drawable. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground=66; + /** + *

+ * @attr description + * EditText text foreground color. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:editTextColor + */ + public static final int AppCompatTheme_editTextColor=67; + /** + *

+ * @attr description + * Default EditText style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle=68; + /** + *

+ * @attr description + * Specifies a drawable to use for the 'home as up' indicator. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator=69; + /** + *

+ * @attr description + * ImageButton background drawable. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle=70; + /** + *

+ * @attr description + * Drawable used as a background for selected list items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator=71; + /** + *

+ * @attr description + * The list divider used in alert dialogs. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog=72; + /** + *

+ * @attr description + * Default menu-style ListView style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle=73; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#listPopupWindowStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle=74; + /** + *

+ * @attr description + * The preferred list item height. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight=75; + /** + *

+ * @attr description + * A larger, more robust list item height. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge=76; + /** + *

+ * @attr description + * A smaller, sleeker list item height. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall=77; + /** + *

+ * @attr description + * The preferred padding along the left edge of list items. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft=78; + /** + *

+ * @attr description + * The preferred padding along the right edge of list items. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight=79; + /** + *

+ * @attr description + * The background of a panel when it is inset from the left and right edges of the screen. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:panelBackground + */ + public static final int AppCompatTheme_panelBackground=80; + /** + *

+ * @attr description + * Default Panel Menu style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme=81; + /** + *

+ * @attr description + * Default Panel Menu width. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth=82; + /** + *

+ * @attr description + * Default PopupMenu style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle=83; + /** + *

+ * @attr description + * Default PopupWindow style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle=84; + /** + *

+ * @attr description + * Default RadioButton style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle=85; + /** + *

+ * @attr description + * Default RatingBar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle=86; + /** + *

+ * @attr description + * Indicator RatingBar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator=87; + /** + *

+ * @attr description + * Small indicator RatingBar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall=88; + /** + *

+ * @attr description + * Style for the search query widget. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle=89; + /** + *

+ * @attr description + * Default SeekBar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle=90; + /** + *

+ * @attr description + * A style that may be applied to buttons or other selectable items + * that should react to pressed and focus states, but that do not + * have a clear visual border along the edges. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground=91; + /** + *

+ * @attr description + * Background drawable for borderless standalone items that need focus/pressed states. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless=92; + /** + *

+ * @attr description + * Default Spinner style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle=93; + /** + *

+ * @attr description + * Default Spinner style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle=94; + /** + *

+ * @attr description + * Default style for the Switch widget. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:switchStyle + */ + public static final int AppCompatTheme_switchStyle=95; + /** + *

+ * @attr description + * Text color, typeface, size, and style for the text inside of a popup menu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu=96; + /** + *

+ * @attr description + * The preferred TextAppearance for the primary text of list items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem=97; + /** + *

+ * @attr description + * The preferred TextAppearance for the secondary text of list items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary=98; + /** + *

+ * @attr description + * The preferred TextAppearance for the primary text of small list items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall=99; + /** + *

+ * @attr description + * Text color, typeface, size, and style for header text inside of a popup menu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader=100; + /** + *

+ * @attr description + * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=101; + /** + *

+ * @attr description + * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle=102; + /** + *

+ * @attr description + * Text color, typeface, size, and style for small text inside of a popup menu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu=103; + /** + *

+ * @attr description + * Color of list item text in alert dialogs. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem=104; + /** + *

+ * @attr description + * Text color for urls in search suggestions, used by things like global search + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl=105; + /** + *

+ * @attr description + * Default Toolar NavigationButtonStyle + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle=106; + /** + *

+ * @attr description + * Default Toolbar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle=107; + /** + *

+ * @attr description + * Foreground color to use for tooltips + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor=108; + /** + *

+ * @attr description + * Background to use for tooltips + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground=109; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#viewInflaterClass} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:viewInflaterClass + */ + public static final int AppCompatTheme_viewInflaterClass=110; + /** + *

+ * @attr description + * Flag indicating whether this window should have an Action Bar + * in place of the usual title bar. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar=111; + /** + *

+ * @attr description + * Flag indicating whether this window's Action Bar should overlay + * application content. Does nothing if the window would not + * have an Action Bar. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay=112; + /** + *

+ * @attr description + * Flag indicating whether action modes should overlay window content + * when there is not reserved space for their UI (such as an Action Bar). + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay=113; + /** + *

+ * @attr description + * A fixed height for the window along the major axis of the screen, + * that is, when in portrait. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor=114; + /** + *

+ * @attr description + * A fixed height for the window along the minor axis of the screen, + * that is, when in landscape. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor=115; + /** + *

+ * @attr description + * A fixed width for the window along the major axis of the screen, + * that is, when in landscape. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor=116; + /** + *

+ * @attr description + * A fixed width for the window along the minor axis of the screen, + * that is, when in portrait. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor=117; + /** + *

+ * @attr description + * The minimum width the window is allowed to be, along the major + * axis of the screen. That is, when in landscape. Can be either + * an absolute dimension or a fraction of the screen size in that + * dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor=118; + /** + *

+ * @attr description + * The minimum width the window is allowed to be, along the minor + * axis of the screen. That is, when in portrait. Can be either + * an absolute dimension or a fraction of the screen size in that + * dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor=119; + /** + *

+ * @attr description + * Flag indicating whether there should be no title on this window. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle=120; + /** + * Attributes that can be used with a BottomAppBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #BottomAppBar_backgroundTint org.muctec.smartfritz:backgroundTint}Tint to apply to the background.
{@link #BottomAppBar_fabAlignmentMode org.muctec.smartfritz:fabAlignmentMode}
{@link #BottomAppBar_fabCradleMargin org.muctec.smartfritz:fabCradleMargin}
{@link #BottomAppBar_fabCradleRoundedCornerRadius org.muctec.smartfritz:fabCradleRoundedCornerRadius}
{@link #BottomAppBar_fabCradleVerticalOffset org.muctec.smartfritz:fabCradleVerticalOffset}
{@link #BottomAppBar_hideOnScroll org.muctec.smartfritz:hideOnScroll}
+ * @see #BottomAppBar_backgroundTint + * @see #BottomAppBar_fabAlignmentMode + * @see #BottomAppBar_fabCradleMargin + * @see #BottomAppBar_fabCradleRoundedCornerRadius + * @see #BottomAppBar_fabCradleVerticalOffset + * @see #BottomAppBar_hideOnScroll + */ + public static final int[] BottomAppBar={ + 0x7f030034, 0x7f0300c3, 0x7f0300c4, 0x7f0300c5, + 0x7f0300c6, 0x7f0300e5 + }; + /** + *

+ * @attr description + * Tint to apply to the background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundTint + */ + public static final int BottomAppBar_backgroundTint=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fabAlignmentMode} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
center0
end1
+ * + * @attr name org.muctec.smartfritz:fabAlignmentMode + */ + public static final int BottomAppBar_fabAlignmentMode=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fabCradleMargin} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:fabCradleMargin + */ + public static final int BottomAppBar_fabCradleMargin=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fabCradleRoundedCornerRadius} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:fabCradleRoundedCornerRadius + */ + public static final int BottomAppBar_fabCradleRoundedCornerRadius=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fabCradleVerticalOffset} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:fabCradleVerticalOffset + */ + public static final int BottomAppBar_fabCradleVerticalOffset=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hideOnScroll} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:hideOnScroll + */ + public static final int BottomAppBar_hideOnScroll=5; + /** + * Attributes that can be used with a BottomNavigationView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #BottomNavigationView_elevation org.muctec.smartfritz:elevation}Elevation for the action bar itself
{@link #BottomNavigationView_itemBackground org.muctec.smartfritz:itemBackground}
{@link #BottomNavigationView_itemHorizontalTranslationEnabled org.muctec.smartfritz:itemHorizontalTranslationEnabled}
{@link #BottomNavigationView_itemIconSize org.muctec.smartfritz:itemIconSize}
{@link #BottomNavigationView_itemIconTint org.muctec.smartfritz:itemIconTint}
{@link #BottomNavigationView_itemTextAppearanceActive org.muctec.smartfritz:itemTextAppearanceActive}
{@link #BottomNavigationView_itemTextAppearanceInactive org.muctec.smartfritz:itemTextAppearanceInactive}
{@link #BottomNavigationView_itemTextColor org.muctec.smartfritz:itemTextColor}
{@link #BottomNavigationView_labelVisibilityMode org.muctec.smartfritz:labelVisibilityMode}
{@link #BottomNavigationView_menu org.muctec.smartfritz:menu}
+ * @see #BottomNavigationView_elevation + * @see #BottomNavigationView_itemBackground + * @see #BottomNavigationView_itemHorizontalTranslationEnabled + * @see #BottomNavigationView_itemIconSize + * @see #BottomNavigationView_itemIconTint + * @see #BottomNavigationView_itemTextAppearanceActive + * @see #BottomNavigationView_itemTextAppearanceInactive + * @see #BottomNavigationView_itemTextColor + * @see #BottomNavigationView_labelVisibilityMode + * @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView={ + 0x7f0300b5, 0x7f0300fa, 0x7f0300fc, 0x7f0300fe, + 0x7f0300ff, 0x7f030103, 0x7f030104, 0x7f030105, + 0x7f030107, 0x7f03012b + }; + /** + *

+ * @attr description + * Elevation for the action bar itself + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:elevation + */ + public static final int BottomNavigationView_elevation=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemBackground} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:itemBackground + */ + public static final int BottomNavigationView_itemBackground=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemHorizontalTranslationEnabled} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:itemHorizontalTranslationEnabled + */ + public static final int BottomNavigationView_itemHorizontalTranslationEnabled=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemIconSize} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:itemIconSize + */ + public static final int BottomNavigationView_itemIconSize=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemIconTint} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemTextAppearanceActive} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:itemTextAppearanceActive + */ + public static final int BottomNavigationView_itemTextAppearanceActive=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemTextAppearanceInactive} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:itemTextAppearanceInactive + */ + public static final int BottomNavigationView_itemTextAppearanceInactive=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemTextColor} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#labelVisibilityMode} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
labeled1
selected0
unlabeled2
+ * + * @attr name org.muctec.smartfritz:labelVisibilityMode + */ + public static final int BottomNavigationView_labelVisibilityMode=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#menu} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:menu + */ + public static final int BottomNavigationView_menu=9; + /** + * Attributes that can be used with a BottomSheetBehavior_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_fitToContents org.muctec.smartfritz:behavior_fitToContents}
{@link #BottomSheetBehavior_Layout_behavior_hideable org.muctec.smartfritz:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight org.muctec.smartfritz:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed org.muctec.smartfritz:behavior_skipCollapsed}
+ * @see #BottomSheetBehavior_Layout_behavior_fitToContents + * @see #BottomSheetBehavior_Layout_behavior_hideable + * @see #BottomSheetBehavior_Layout_behavior_peekHeight + * @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout={ + 0x7f030038, 0x7f030039, 0x7f03003b, 0x7f03003c + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#behavior_fitToContents} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:behavior_fitToContents + */ + public static final int BottomSheetBehavior_Layout_behavior_fitToContents=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#behavior_hideable} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#behavior_peekHeight} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
+ * + * @attr name org.muctec.smartfritz:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#behavior_skipCollapsed} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed=3; + /** + * Attributes that can be used with a ButtonBarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ButtonBarLayout_allowStacking org.muctec.smartfritz:allowStacking}Whether to automatically stack the buttons when there is not + * enough space to lay them out side-by-side.
+ * @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout={ + 0x7f030026 + }; + /** + *

+ * @attr description + * Whether to automatically stack the buttons when there is not + * enough space to lay them out side-by-side. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:allowStacking + */ + public static final int ButtonBarLayout_allowStacking=0; + /** + * Attributes that can be used with a CardView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #CardView_android_minWidth android:minWidth}
{@link #CardView_android_minHeight android:minHeight}
{@link #CardView_cardBackgroundColor org.muctec.smartfritz:cardBackgroundColor}Background color for CardView.
{@link #CardView_cardCornerRadius org.muctec.smartfritz:cardCornerRadius}Corner radius for CardView.
{@link #CardView_cardElevation org.muctec.smartfritz:cardElevation}Elevation for CardView.
{@link #CardView_cardMaxElevation org.muctec.smartfritz:cardMaxElevation}Maximum Elevation for CardView.
{@link #CardView_cardPreventCornerOverlap org.muctec.smartfritz:cardPreventCornerOverlap}Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners.
{@link #CardView_cardUseCompatPadding org.muctec.smartfritz:cardUseCompatPadding}Add padding in API v21+ as well to have the same measurements with previous versions.
{@link #CardView_contentPadding org.muctec.smartfritz:contentPadding}Inner padding between the edges of the Card and children of the CardView.
{@link #CardView_contentPaddingBottom org.muctec.smartfritz:contentPaddingBottom}Inner padding between the bottom edge of the Card and children of the CardView.
{@link #CardView_contentPaddingLeft org.muctec.smartfritz:contentPaddingLeft}Inner padding between the left edge of the Card and children of the CardView.
{@link #CardView_contentPaddingRight org.muctec.smartfritz:contentPaddingRight}Inner padding between the right edge of the Card and children of the CardView.
{@link #CardView_contentPaddingTop org.muctec.smartfritz:contentPaddingTop}Inner padding between the top edge of the Card and children of the CardView.
+ * @see #CardView_android_minWidth + * @see #CardView_android_minHeight + * @see #CardView_cardBackgroundColor + * @see #CardView_cardCornerRadius + * @see #CardView_cardElevation + * @see #CardView_cardMaxElevation + * @see #CardView_cardPreventCornerOverlap + * @see #CardView_cardUseCompatPadding + * @see #CardView_contentPadding + * @see #CardView_contentPaddingBottom + * @see #CardView_contentPaddingLeft + * @see #CardView_contentPaddingRight + * @see #CardView_contentPaddingTop + */ + public static final int[] CardView={ + 0x0101013f, 0x01010140, 0x7f030058, 0x7f030059, + 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, + 0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a, + 0x7f03009b + }; + /** + *

+ * @attr description + * Workaround to read user defined minimum width + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int CardView_android_minWidth=0; + /** + *

+ * @attr description + * Workaround to read user defined minimum height + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int CardView_android_minHeight=1; + /** + *

+ * @attr description + * Background color for CardView. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:cardBackgroundColor + */ + public static final int CardView_cardBackgroundColor=2; + /** + *

+ * @attr description + * Corner radius for CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:cardCornerRadius + */ + public static final int CardView_cardCornerRadius=3; + /** + *

+ * @attr description + * Elevation for CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:cardElevation + */ + public static final int CardView_cardElevation=4; + /** + *

+ * @attr description + * Maximum Elevation for CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:cardMaxElevation + */ + public static final int CardView_cardMaxElevation=5; + /** + *

+ * @attr description + * Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:cardPreventCornerOverlap + */ + public static final int CardView_cardPreventCornerOverlap=6; + /** + *

+ * @attr description + * Add padding in API v21+ as well to have the same measurements with previous versions. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:cardUseCompatPadding + */ + public static final int CardView_cardUseCompatPadding=7; + /** + *

+ * @attr description + * Inner padding between the edges of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentPadding + */ + public static final int CardView_contentPadding=8; + /** + *

+ * @attr description + * Inner padding between the bottom edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentPaddingBottom + */ + public static final int CardView_contentPaddingBottom=9; + /** + *

+ * @attr description + * Inner padding between the left edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentPaddingLeft + */ + public static final int CardView_contentPaddingLeft=10; + /** + *

+ * @attr description + * Inner padding between the right edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentPaddingRight + */ + public static final int CardView_contentPaddingRight=11; + /** + *

+ * @attr description + * Inner padding between the top edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentPaddingTop + */ + public static final int CardView_contentPaddingTop=12; + /** + * Attributes that can be used with a Chip. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Chip_android_textAppearance android:textAppearance}
{@link #Chip_android_ellipsize android:ellipsize}
{@link #Chip_android_maxWidth android:maxWidth}
{@link #Chip_android_text android:text}
{@link #Chip_android_checkable android:checkable}
{@link #Chip_checkedIcon org.muctec.smartfritz:checkedIcon}
{@link #Chip_checkedIconEnabled org.muctec.smartfritz:checkedIconEnabled}
{@link #Chip_checkedIconVisible org.muctec.smartfritz:checkedIconVisible}
{@link #Chip_chipBackgroundColor org.muctec.smartfritz:chipBackgroundColor}
{@link #Chip_chipCornerRadius org.muctec.smartfritz:chipCornerRadius}
{@link #Chip_chipEndPadding org.muctec.smartfritz:chipEndPadding}
{@link #Chip_chipIcon org.muctec.smartfritz:chipIcon}
{@link #Chip_chipIconEnabled org.muctec.smartfritz:chipIconEnabled}
{@link #Chip_chipIconSize org.muctec.smartfritz:chipIconSize}
{@link #Chip_chipIconTint org.muctec.smartfritz:chipIconTint}
{@link #Chip_chipIconVisible org.muctec.smartfritz:chipIconVisible}
{@link #Chip_chipMinHeight org.muctec.smartfritz:chipMinHeight}
{@link #Chip_chipStartPadding org.muctec.smartfritz:chipStartPadding}
{@link #Chip_chipStrokeColor org.muctec.smartfritz:chipStrokeColor}
{@link #Chip_chipStrokeWidth org.muctec.smartfritz:chipStrokeWidth}
{@link #Chip_closeIcon org.muctec.smartfritz:closeIcon}Close button icon
{@link #Chip_closeIconEnabled org.muctec.smartfritz:closeIconEnabled}
{@link #Chip_closeIconEndPadding org.muctec.smartfritz:closeIconEndPadding}
{@link #Chip_closeIconSize org.muctec.smartfritz:closeIconSize}
{@link #Chip_closeIconStartPadding org.muctec.smartfritz:closeIconStartPadding}
{@link #Chip_closeIconTint org.muctec.smartfritz:closeIconTint}
{@link #Chip_closeIconVisible org.muctec.smartfritz:closeIconVisible}
{@link #Chip_hideMotionSpec org.muctec.smartfritz:hideMotionSpec}
{@link #Chip_iconEndPadding org.muctec.smartfritz:iconEndPadding}
{@link #Chip_iconStartPadding org.muctec.smartfritz:iconStartPadding}
{@link #Chip_rippleColor org.muctec.smartfritz:rippleColor}
{@link #Chip_showMotionSpec org.muctec.smartfritz:showMotionSpec}
{@link #Chip_textEndPadding org.muctec.smartfritz:textEndPadding}
{@link #Chip_textStartPadding org.muctec.smartfritz:textStartPadding}
+ * @see #Chip_android_textAppearance + * @see #Chip_android_ellipsize + * @see #Chip_android_maxWidth + * @see #Chip_android_text + * @see #Chip_android_checkable + * @see #Chip_checkedIcon + * @see #Chip_checkedIconEnabled + * @see #Chip_checkedIconVisible + * @see #Chip_chipBackgroundColor + * @see #Chip_chipCornerRadius + * @see #Chip_chipEndPadding + * @see #Chip_chipIcon + * @see #Chip_chipIconEnabled + * @see #Chip_chipIconSize + * @see #Chip_chipIconTint + * @see #Chip_chipIconVisible + * @see #Chip_chipMinHeight + * @see #Chip_chipStartPadding + * @see #Chip_chipStrokeColor + * @see #Chip_chipStrokeWidth + * @see #Chip_closeIcon + * @see #Chip_closeIconEnabled + * @see #Chip_closeIconEndPadding + * @see #Chip_closeIconSize + * @see #Chip_closeIconStartPadding + * @see #Chip_closeIconTint + * @see #Chip_closeIconVisible + * @see #Chip_hideMotionSpec + * @see #Chip_iconEndPadding + * @see #Chip_iconStartPadding + * @see #Chip_rippleColor + * @see #Chip_showMotionSpec + * @see #Chip_textEndPadding + * @see #Chip_textStartPadding + */ + public static final int[] Chip={ + 0x01010034, 0x010100ab, 0x0101011f, 0x0101014f, + 0x010101e5, 0x7f030061, 0x7f030062, 0x7f030063, + 0x7f030065, 0x7f030066, 0x7f030067, 0x7f030069, + 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f03006d, + 0x7f03006e, 0x7f030073, 0x7f030074, 0x7f030075, + 0x7f030077, 0x7f030078, 0x7f030079, 0x7f03007a, + 0x7f03007b, 0x7f03007c, 0x7f03007d, 0x7f0300e3, + 0x7f0300ed, 0x7f0300f1, 0x7f03014d, 0x7f030159, + 0x7f0301ae, 0x7f0301b0 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int Chip_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link android.R.attr#ellipsize} + * attribute's value can be found in the {@link #Chip} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
end3
marquee4
middle2
none0
start1
+ * + * @attr name android:ellipsize + */ + public static final int Chip_android_ellipsize=1; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int Chip_android_maxWidth=2; + /** + *

This symbol is the offset where the {@link android.R.attr#text} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:text + */ + public static final int Chip_android_text=3; + /** + *

This symbol is the offset where the {@link android.R.attr#checkable} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checkable + */ + public static final int Chip_android_checkable=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#checkedIcon} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:checkedIcon + */ + public static final int Chip_checkedIcon=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#checkedIconEnabled} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:checkedIconEnabled + */ + public static final int Chip_checkedIconEnabled=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#checkedIconVisible} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:checkedIconVisible + */ + public static final int Chip_checkedIconVisible=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipBackgroundColor} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:chipBackgroundColor + */ + public static final int Chip_chipBackgroundColor=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipCornerRadius} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipCornerRadius + */ + public static final int Chip_chipCornerRadius=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipEndPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipEndPadding + */ + public static final int Chip_chipEndPadding=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipIcon} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:chipIcon + */ + public static final int Chip_chipIcon=11; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipIconEnabled} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:chipIconEnabled + */ + public static final int Chip_chipIconEnabled=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipIconSize} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipIconSize + */ + public static final int Chip_chipIconSize=13; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipIconTint} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:chipIconTint + */ + public static final int Chip_chipIconTint=14; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipIconVisible} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:chipIconVisible + */ + public static final int Chip_chipIconVisible=15; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipMinHeight} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipMinHeight + */ + public static final int Chip_chipMinHeight=16; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipStartPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipStartPadding + */ + public static final int Chip_chipStartPadding=17; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipStrokeColor} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:chipStrokeColor + */ + public static final int Chip_chipStrokeColor=18; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipStrokeWidth} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipStrokeWidth + */ + public static final int Chip_chipStrokeWidth=19; + /** + *

+ * @attr description + * Close button icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:closeIcon + */ + public static final int Chip_closeIcon=20; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#closeIconEnabled} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:closeIconEnabled + */ + public static final int Chip_closeIconEnabled=21; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#closeIconEndPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:closeIconEndPadding + */ + public static final int Chip_closeIconEndPadding=22; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#closeIconSize} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:closeIconSize + */ + public static final int Chip_closeIconSize=23; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#closeIconStartPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:closeIconStartPadding + */ + public static final int Chip_closeIconStartPadding=24; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#closeIconTint} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:closeIconTint + */ + public static final int Chip_closeIconTint=25; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#closeIconVisible} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:closeIconVisible + */ + public static final int Chip_closeIconVisible=26; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hideMotionSpec} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:hideMotionSpec + */ + public static final int Chip_hideMotionSpec=27; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#iconEndPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:iconEndPadding + */ + public static final int Chip_iconEndPadding=28; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#iconStartPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:iconStartPadding + */ + public static final int Chip_iconStartPadding=29; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#rippleColor} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:rippleColor + */ + public static final int Chip_rippleColor=30; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#showMotionSpec} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:showMotionSpec + */ + public static final int Chip_showMotionSpec=31; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textEndPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:textEndPadding + */ + public static final int Chip_textEndPadding=32; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textStartPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:textStartPadding + */ + public static final int Chip_textStartPadding=33; + /** + * Attributes that can be used with a ChipGroup. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ChipGroup_checkedChip org.muctec.smartfritz:checkedChip}
{@link #ChipGroup_chipSpacing org.muctec.smartfritz:chipSpacing}
{@link #ChipGroup_chipSpacingHorizontal org.muctec.smartfritz:chipSpacingHorizontal}
{@link #ChipGroup_chipSpacingVertical org.muctec.smartfritz:chipSpacingVertical}
{@link #ChipGroup_singleLine org.muctec.smartfritz:singleLine}
{@link #ChipGroup_singleSelection org.muctec.smartfritz:singleSelection}
+ * @see #ChipGroup_checkedChip + * @see #ChipGroup_chipSpacing + * @see #ChipGroup_chipSpacingHorizontal + * @see #ChipGroup_chipSpacingVertical + * @see #ChipGroup_singleLine + * @see #ChipGroup_singleSelection + */ + public static final int[] ChipGroup={ + 0x7f030060, 0x7f03006f, 0x7f030070, 0x7f030071, + 0x7f03015d, 0x7f03015e + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#checkedChip} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:checkedChip + */ + public static final int ChipGroup_checkedChip=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipSpacing} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipSpacing + */ + public static final int ChipGroup_chipSpacing=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipSpacingHorizontal} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipSpacingHorizontal + */ + public static final int ChipGroup_chipSpacingHorizontal=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipSpacingVertical} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipSpacingVertical + */ + public static final int ChipGroup_chipSpacingVertical=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#singleLine} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:singleLine + */ + public static final int ChipGroup_singleLine=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#singleSelection} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:singleSelection + */ + public static final int ChipGroup_singleSelection=5; + /** + * Attributes that can be used with a CollapsingToolbarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity org.muctec.smartfritz:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance org.muctec.smartfritz:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim org.muctec.smartfritz:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity org.muctec.smartfritz:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin org.muctec.smartfritz:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom org.muctec.smartfritz:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd org.muctec.smartfritz:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart org.muctec.smartfritz:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop org.muctec.smartfritz:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance org.muctec.smartfritz:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration org.muctec.smartfritz:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger org.muctec.smartfritz:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim org.muctec.smartfritz:statusBarScrim}
{@link #CollapsingToolbarLayout_title org.muctec.smartfritz:title}
{@link #CollapsingToolbarLayout_titleEnabled org.muctec.smartfritz:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId org.muctec.smartfritz:toolbarId}
+ * @see #CollapsingToolbarLayout_collapsedTitleGravity + * @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + * @see #CollapsingToolbarLayout_contentScrim + * @see #CollapsingToolbarLayout_expandedTitleGravity + * @see #CollapsingToolbarLayout_expandedTitleMargin + * @see #CollapsingToolbarLayout_expandedTitleMarginBottom + * @see #CollapsingToolbarLayout_expandedTitleMarginEnd + * @see #CollapsingToolbarLayout_expandedTitleMarginStart + * @see #CollapsingToolbarLayout_expandedTitleMarginTop + * @see #CollapsingToolbarLayout_expandedTitleTextAppearance + * @see #CollapsingToolbarLayout_scrimAnimationDuration + * @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + * @see #CollapsingToolbarLayout_statusBarScrim + * @see #CollapsingToolbarLayout_title + * @see #CollapsingToolbarLayout_titleEnabled + * @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout={ + 0x7f030081, 0x7f030082, 0x7f03009c, 0x7f0300bc, + 0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, + 0x7f0300c1, 0x7f0300c2, 0x7f03014e, 0x7f030150, + 0x7f03016e, 0x7f0301bb, 0x7f0301bc, 0x7f0301c6 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#collapsedTitleGravity} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
end800005
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name org.muctec.smartfritz:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#collapsedTitleTextAppearance} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#contentScrim} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleGravity} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
end800005
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name org.muctec.smartfritz:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleMargin} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleMarginBottom} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleMarginEnd} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleMarginStart} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleMarginTop} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleTextAppearance} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#scrimAnimationDuration} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#scrimVisibleHeightTrigger} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger=11; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#statusBarScrim} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#title} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:title + */ + public static final int CollapsingToolbarLayout_title=13; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#titleEnabled} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled=14; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#toolbarId} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId=15; + /** + * Attributes that can be used with a CollapsingToolbarLayout_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode org.muctec.smartfritz:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier org.muctec.smartfritz:layout_collapseParallaxMultiplier}
+ * @see #CollapsingToolbarLayout_Layout_layout_collapseMode + * @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout={ + 0x7f03010e, 0x7f03010f + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#layout_collapseMode} + * attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
none0
parallax2
pin1
+ * + * @attr name org.muctec.smartfritz:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#layout_collapseParallaxMultiplier} + * attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name org.muctec.smartfritz:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier=1; + /** + * Attributes that can be used with a ColorStateListItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ColorStateListItem_android_color android:color}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_alpha org.muctec.smartfritz:alpha}Alpha multiplier applied to the base color.
+ * @see #ColorStateListItem_android_color + * @see #ColorStateListItem_android_alpha + * @see #ColorStateListItem_alpha + */ + public static final int[] ColorStateListItem={ + 0x010101a5, 0x0101031f, 0x7f030027 + }; + /** + *

+ * @attr description + * Base color for this state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:color + */ + public static final int ColorStateListItem_android_color=0; + /** + *

This symbol is the offset where the {@link android.R.attr#alpha} + * attribute's value can be found in the {@link #ColorStateListItem} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha=1; + /** + *

+ * @attr description + * Alpha multiplier applied to the base color. + * + *

May be a floating point value, such as "1.2". + * + * @attr name org.muctec.smartfritz:alpha + */ + public static final int ColorStateListItem_alpha=2; + /** + * Attributes that can be used with a CompoundButton. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint org.muctec.smartfritz:buttonTint}Tint to apply to the button drawable.
{@link #CompoundButton_buttonTintMode org.muctec.smartfritz:buttonTintMode}Blending mode used to apply the button tint.
+ * @see #CompoundButton_android_button + * @see #CompoundButton_buttonTint + * @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton={ + 0x01010107, 0x7f030056, 0x7f030057 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#button} + * attribute's value can be found in the {@link #CompoundButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:button + */ + public static final int CompoundButton_android_button=0; + /** + *

+ * @attr description + * Tint to apply to the button drawable. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:buttonTint + */ + public static final int CompoundButton_buttonTint=1; + /** + *

+ * @attr description + * Blending mode used to apply the button tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode=2; + /** + * Attributes that can be used with a CoordinatorLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #CoordinatorLayout_keylines org.muctec.smartfritz:keylines}A reference to an array of integers representing the + * locations of horizontal keylines in dp from the starting edge.
{@link #CoordinatorLayout_statusBarBackground org.muctec.smartfritz:statusBarBackground}Drawable to display behind the status bar when the view is set to draw behind it.
+ * @see #CoordinatorLayout_keylines + * @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout={ + 0x7f030106, 0x7f03016d + }; + /** + *

+ * @attr description + * A reference to an array of integers representing the + * locations of horizontal keylines in dp from the starting edge. + * Child views can refer to these keylines for alignment using + * layout_keyline="index" where index is a 0-based index into + * this array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:keylines + */ + public static final int CoordinatorLayout_keylines=0; + /** + *

+ * @attr description + * Drawable to display behind the status bar when the view is set to draw behind it. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground=1; + /** + * Attributes that can be used with a CoordinatorLayout_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor org.muctec.smartfritz:layout_anchor}The id of an anchor view that this view should position relative to.
{@link #CoordinatorLayout_Layout_layout_anchorGravity org.muctec.smartfritz:layout_anchorGravity}Specifies how an object should position relative to an anchor, on both the X and Y axes, + * within its parent's bounds.
{@link #CoordinatorLayout_Layout_layout_behavior org.muctec.smartfritz:layout_behavior}The class name of a Behavior class defining special runtime behavior + * for this child view.
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges org.muctec.smartfritz:layout_dodgeInsetEdges}Specifies how this view dodges the inset edges of the CoordinatorLayout.
{@link #CoordinatorLayout_Layout_layout_insetEdge org.muctec.smartfritz:layout_insetEdge}Specifies how this view insets the CoordinatorLayout and make some other views + * dodge it.
{@link #CoordinatorLayout_Layout_layout_keyline org.muctec.smartfritz:layout_keyline}The index of a keyline this view should position relative to.
+ * @see #CoordinatorLayout_Layout_android_layout_gravity + * @see #CoordinatorLayout_Layout_layout_anchor + * @see #CoordinatorLayout_Layout_layout_anchorGravity + * @see #CoordinatorLayout_Layout_layout_behavior + * @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + * @see #CoordinatorLayout_Layout_layout_insetEdge + * @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout={ + 0x010100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, + 0x7f030110, 0x7f030111, 0x7f030112 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity=0; + /** + *

+ * @attr description + * The id of an anchor view that this view should position relative to. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor=1; + /** + *

+ * @attr description + * Specifies how an object should position relative to an anchor, on both the X and Y axes, + * within its parent's bounds. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
center11Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
center_horizontal1Place object in the horizontal center of its container, not changing its size.
center_vertical10Place object in the vertical center of its container, not changing its size.
clip_horizontal8Additional option that can be set to have the left and/or right edges of + * the child clipped to its container's bounds. + * The clip will be based on the horizontal gravity: a left gravity will clip the right + * edge, a right gravity will clip the left edge, and neither will clip both edges.
clip_vertical80Additional option that can be set to have the top and/or bottom edges of + * the child clipped to its container's bounds. + * The clip will be based on the vertical gravity: a top gravity will clip the bottom + * edge, a bottom gravity will clip the top edge, and neither will clip both edges.
end800005Push object to the end of its container, not changing its size.
fill77Grow the horizontal and vertical size of the object if needed so it completely fills its container.
fill_horizontal7Grow the horizontal size of the object if needed so it completely fills its container.
fill_vertical70Grow the vertical size of the object if needed so it completely fills its container.
left3Push object to the left of its container, not changing its size.
right5Push object to the right of its container, not changing its size.
start800003Push object to the beginning of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ * + * @attr name org.muctec.smartfritz:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity=2; + /** + *

+ * @attr description + * The class name of a Behavior class defining special runtime behavior + * for this child view. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior=3; + /** + *

+ * @attr description + * Specifies how this view dodges the inset edges of the CoordinatorLayout. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
all77Dodge all the inset edges.
bottom50Dodge the bottom inset edge.
end800005Dodge the end inset edge.
left3Dodge the left inset edge.
none0Don't dodge any edges
right5Dodge the right inset edge.
start800003Dodge the start inset edge.
top30Dodge the top inset edge.
+ * + * @attr name org.muctec.smartfritz:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4; + /** + *

+ * @attr description + * Specifies how this view insets the CoordinatorLayout and make some other views + * dodge it. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Inset the bottom edge.
end800005Inset the end edge.
left3Inset the left edge.
none0Don't inset.
right5Inset the right edge.
start800003Inset the start edge.
top30Inset the top edge.
+ * + * @attr name org.muctec.smartfritz:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge=5; + /** + *

+ * @attr description + * The index of a keyline this view should position relative to. + * android:layout_gravity will affect how the view aligns to the + * specified keyline. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline=6; + /** + * Attributes that can be used with a DesignTheme. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme org.muctec.smartfritz:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle org.muctec.smartfritz:bottomSheetStyle}
+ * @see #DesignTheme_bottomSheetDialogTheme + * @see #DesignTheme_bottomSheetStyle + */ + public static final int[] DesignTheme={ + 0x7f030041, 0x7f030042 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#bottomSheetDialogTheme} + * attribute's value can be found in the {@link #DesignTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#bottomSheetStyle} + * attribute's value can be found in the {@link #DesignTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle=1; + /** + * Attributes that can be used with a DrawerArrowToggle. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength org.muctec.smartfritz:arrowHeadLength}The length of the arrow head when formed to make an arrow
{@link #DrawerArrowToggle_arrowShaftLength org.muctec.smartfritz:arrowShaftLength}The length of the shaft when formed to make an arrow
{@link #DrawerArrowToggle_barLength org.muctec.smartfritz:barLength}The length of the bars when they are parallel to each other
{@link #DrawerArrowToggle_color org.muctec.smartfritz:color}The drawing color for the bars
{@link #DrawerArrowToggle_drawableSize org.muctec.smartfritz:drawableSize}The total size of the drawable
{@link #DrawerArrowToggle_gapBetweenBars org.muctec.smartfritz:gapBetweenBars}The max gap between the bars when they are parallel to each other
{@link #DrawerArrowToggle_spinBars org.muctec.smartfritz:spinBars}Whether bars should rotate or not during transition
{@link #DrawerArrowToggle_thickness org.muctec.smartfritz:thickness}The thickness (stroke size) for the bar paint
+ * @see #DrawerArrowToggle_arrowHeadLength + * @see #DrawerArrowToggle_arrowShaftLength + * @see #DrawerArrowToggle_barLength + * @see #DrawerArrowToggle_color + * @see #DrawerArrowToggle_drawableSize + * @see #DrawerArrowToggle_gapBetweenBars + * @see #DrawerArrowToggle_spinBars + * @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle={ + 0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030083, + 0x7f0300ae, 0x7f0300dc, 0x7f030162, 0x7f0301b2 + }; + /** + *

+ * @attr description + * The length of the arrow head when formed to make an arrow + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength=0; + /** + *

+ * @attr description + * The length of the shaft when formed to make an arrow + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength=1; + /** + *

+ * @attr description + * The length of the bars when they are parallel to each other + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:barLength + */ + public static final int DrawerArrowToggle_barLength=2; + /** + *

+ * @attr description + * The drawing color for the bars + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:color + */ + public static final int DrawerArrowToggle_color=3; + /** + *

+ * @attr description + * The total size of the drawable + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize=4; + /** + *

+ * @attr description + * The max gap between the bars when they are parallel to each other + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars=5; + /** + *

+ * @attr description + * Whether bars should rotate or not during transition + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:spinBars + */ + public static final int DrawerArrowToggle_spinBars=6; + /** + *

+ * @attr description + * The thickness (stroke size) for the bar paint + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:thickness + */ + public static final int DrawerArrowToggle_thickness=7; + /** + * Attributes that can be used with a FloatingActionButton. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #FloatingActionButton_backgroundTint org.muctec.smartfritz:backgroundTint}Tint to apply to the background.
{@link #FloatingActionButton_backgroundTintMode org.muctec.smartfritz:backgroundTintMode}Blending mode used to apply the background tint.
{@link #FloatingActionButton_borderWidth org.muctec.smartfritz:borderWidth}
{@link #FloatingActionButton_elevation org.muctec.smartfritz:elevation}Elevation for the action bar itself
{@link #FloatingActionButton_fabCustomSize org.muctec.smartfritz:fabCustomSize}
{@link #FloatingActionButton_fabSize org.muctec.smartfritz:fabSize}
{@link #FloatingActionButton_hideMotionSpec org.muctec.smartfritz:hideMotionSpec}
{@link #FloatingActionButton_hoveredFocusedTranslationZ org.muctec.smartfritz:hoveredFocusedTranslationZ}
{@link #FloatingActionButton_maxImageSize org.muctec.smartfritz:maxImageSize}
{@link #FloatingActionButton_pressedTranslationZ org.muctec.smartfritz:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor org.muctec.smartfritz:rippleColor}
{@link #FloatingActionButton_showMotionSpec org.muctec.smartfritz:showMotionSpec}
{@link #FloatingActionButton_useCompatPadding org.muctec.smartfritz:useCompatPadding}
+ * @see #FloatingActionButton_backgroundTint + * @see #FloatingActionButton_backgroundTintMode + * @see #FloatingActionButton_borderWidth + * @see #FloatingActionButton_elevation + * @see #FloatingActionButton_fabCustomSize + * @see #FloatingActionButton_fabSize + * @see #FloatingActionButton_hideMotionSpec + * @see #FloatingActionButton_hoveredFocusedTranslationZ + * @see #FloatingActionButton_maxImageSize + * @see #FloatingActionButton_pressedTranslationZ + * @see #FloatingActionButton_rippleColor + * @see #FloatingActionButton_showMotionSpec + * @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton={ + 0x7f030034, 0x7f030035, 0x7f03003d, 0x7f0300b5, + 0x7f0300c7, 0x7f0300c8, 0x7f0300e3, 0x7f0300eb, + 0x7f030129, 0x7f030143, 0x7f03014d, 0x7f030159, + 0x7f0301d0 + }; + /** + *

+ * @attr description + * Tint to apply to the background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint=0; + /** + *

+ * @attr description + * Blending mode used to apply the background tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#borderWidth} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:borderWidth + */ + public static final int FloatingActionButton_borderWidth=2; + /** + *

+ * @attr description + * Elevation for the action bar itself + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:elevation + */ + public static final int FloatingActionButton_elevation=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fabCustomSize} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:fabCustomSize + */ + public static final int FloatingActionButton_fabCustomSize=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fabSize} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
mini1
normal0
+ * + * @attr name org.muctec.smartfritz:fabSize + */ + public static final int FloatingActionButton_fabSize=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hideMotionSpec} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:hideMotionSpec + */ + public static final int FloatingActionButton_hideMotionSpec=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hoveredFocusedTranslationZ} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:hoveredFocusedTranslationZ + */ + public static final int FloatingActionButton_hoveredFocusedTranslationZ=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#maxImageSize} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:maxImageSize + */ + public static final int FloatingActionButton_maxImageSize=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#pressedTranslationZ} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#rippleColor} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:rippleColor + */ + public static final int FloatingActionButton_rippleColor=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#showMotionSpec} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:showMotionSpec + */ + public static final int FloatingActionButton_showMotionSpec=11; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#useCompatPadding} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding=12; + /** + * Attributes that can be used with a FloatingActionButton_Behavior_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide org.muctec.smartfritz:behavior_autoHide}
+ * @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout={ + 0x7f030037 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#behavior_autoHide} + * attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide=0; + /** + * Attributes that can be used with a FlowLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #FlowLayout_itemSpacing org.muctec.smartfritz:itemSpacing}
{@link #FlowLayout_lineSpacing org.muctec.smartfritz:lineSpacing}
+ * @see #FlowLayout_itemSpacing + * @see #FlowLayout_lineSpacing + */ + public static final int[] FlowLayout={ + 0x7f030101, 0x7f030117 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemSpacing} + * attribute's value can be found in the {@link #FlowLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:itemSpacing + */ + public static final int FlowLayout_itemSpacing=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#lineSpacing} + * attribute's value can be found in the {@link #FlowLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:lineSpacing + */ + public static final int FlowLayout_lineSpacing=1; + /** + * Attributes that can be used with a FontFamily. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #FontFamily_fontProviderAuthority org.muctec.smartfritz:fontProviderAuthority}The authority of the Font Provider to be used for the request.
{@link #FontFamily_fontProviderCerts org.muctec.smartfritz:fontProviderCerts}The sets of hashes for the certificates the provider should be signed with.
{@link #FontFamily_fontProviderFetchStrategy org.muctec.smartfritz:fontProviderFetchStrategy}The strategy to be used when fetching font data from a font provider in XML layouts.
{@link #FontFamily_fontProviderFetchTimeout org.muctec.smartfritz:fontProviderFetchTimeout}The length of the timeout during fetching.
{@link #FontFamily_fontProviderPackage org.muctec.smartfritz:fontProviderPackage}The package for the Font Provider to be used for the request.
{@link #FontFamily_fontProviderQuery org.muctec.smartfritz:fontProviderQuery}The query to be sent over to the provider.
+ * @see #FontFamily_fontProviderAuthority + * @see #FontFamily_fontProviderCerts + * @see #FontFamily_fontProviderFetchStrategy + * @see #FontFamily_fontProviderFetchTimeout + * @see #FontFamily_fontProviderPackage + * @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily={ + 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, + 0x7f0300d6, 0x7f0300d7 + }; + /** + *

+ * @attr description + * The authority of the Font Provider to be used for the request. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority=0; + /** + *

+ * @attr description + * The sets of hashes for the certificates the provider should be signed with. This is + * used to verify the identity of the provider, and is only required if the provider is not + * part of the system image. This value may point to one list or a list of lists, where each + * individual list represents one collection of signature hashes. Refer to your font provider's + * documentation for these values. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts=1; + /** + *

+ * @attr description + * The strategy to be used when fetching font data from a font provider in XML layouts. + * This attribute is ignored when the resource is loaded from code, as it is equivalent to the + * choice of API between {@link + * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + * {@link + * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + * (async). + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
async1The async font fetch works as follows. + * First, check the local cache, then if the requeted font is not cached, trigger a + * request the font and continue with layout inflation. Once the font fetch succeeds, the + * target text view will be refreshed with the downloaded font data. The + * fontProviderFetchTimeout will be ignored if async loading is specified.
blocking0The blocking font fetch works as follows. + * First, check the local cache, then if the requested font is not cached, request the + * font from the provider and wait until it is finished. You can change the length of + * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + * default typeface will be used instead.
+ * + * @attr name org.muctec.smartfritz:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy=2; + /** + *

+ * @attr description + * The length of the timeout during fetching. + * + *

May be an integer value, such as "100". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
foreverffffffffA special value for the timeout. In this case, the blocking font fetching will not + * timeout and wait until a reply is received from the font provider.
+ * + * @attr name org.muctec.smartfritz:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout=3; + /** + *

+ * @attr description + * The package for the Font Provider to be used for the request. This is used to verify + * the identity of the provider. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage=4; + /** + *

+ * @attr description + * The query to be sent over to the provider. Refer to your font provider's documentation + * on the format of this string. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery=5; + /** + * Attributes that can be used with a FontFamilyFont. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #FontFamilyFont_android_font android:font}
{@link #FontFamilyFont_android_fontWeight android:fontWeight}
{@link #FontFamilyFont_android_fontStyle android:fontStyle}
{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}
{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}
{@link #FontFamilyFont_font org.muctec.smartfritz:font}The reference to the font file to be used.
{@link #FontFamilyFont_fontStyle org.muctec.smartfritz:fontStyle}The style of the given font file.
{@link #FontFamilyFont_fontVariationSettings org.muctec.smartfritz:fontVariationSettings}The variation settings to be applied to the font.
{@link #FontFamilyFont_fontWeight org.muctec.smartfritz:fontWeight}The weight of the given font file.
{@link #FontFamilyFont_ttcIndex org.muctec.smartfritz:ttcIndex}The index of the font in the tcc font file.
+ * @see #FontFamilyFont_android_font + * @see #FontFamilyFont_android_fontWeight + * @see #FontFamilyFont_android_fontStyle + * @see #FontFamilyFont_android_ttcIndex + * @see #FontFamilyFont_android_fontVariationSettings + * @see #FontFamilyFont_font + * @see #FontFamilyFont_fontStyle + * @see #FontFamilyFont_fontVariationSettings + * @see #FontFamilyFont_fontWeight + * @see #FontFamilyFont_ttcIndex + */ + public static final int[] FontFamilyFont={ + 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, + 0x01010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, + 0x7f0300da, 0x7f0301cf + }; + /** + *

This symbol is the offset where the {@link android.R.attr#font} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:font + */ + public static final int FontFamilyFont_android_font=0; + /** + *

This symbol is the offset where the {@link android.R.attr#fontWeight} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:fontWeight + */ + public static final int FontFamilyFont_android_fontWeight=1; + /** + *

+ * @attr description + * References to the framework attrs + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
italic1
normal0
+ * + * @attr name android:fontStyle + */ + public static final int FontFamilyFont_android_fontStyle=2; + /** + *

This symbol is the offset where the {@link android.R.attr#ttcIndex} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:ttcIndex + */ + public static final int FontFamilyFont_android_ttcIndex=3; + /** + *

This symbol is the offset where the {@link android.R.attr#fontVariationSettings} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:fontVariationSettings + */ + public static final int FontFamilyFont_android_fontVariationSettings=4; + /** + *

+ * @attr description + * The reference to the font file to be used. This should be a file in the res/font folder + * and should therefore have an R reference value. E.g. @font/myfont + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:font + */ + public static final int FontFamilyFont_font=5; + /** + *

+ * @attr description + * The style of the given font file. This will be used when the font is being loaded into + * the font stack and will override any style information in the font's header tables. If + * unspecified, the value in the font's header tables will be used. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
italic1
normal0
+ * + * @attr name org.muctec.smartfritz:fontStyle + */ + public static final int FontFamilyFont_fontStyle=6; + /** + *

+ * @attr description + * The variation settings to be applied to the font. The string should be in the following + * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + * used, or the font used does not support variation settings, this attribute needs not be + * specified. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:fontVariationSettings + */ + public static final int FontFamilyFont_fontVariationSettings=7; + /** + *

+ * @attr description + * The weight of the given font file. This will be used when the font is being loaded into + * the font stack and will override any weight information in the font's header tables. Must + * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + * in the font's header tables will be used. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:fontWeight + */ + public static final int FontFamilyFont_fontWeight=8; + /** + *

+ * @attr description + * The index of the font in the tcc font file. If the font file referenced is not in the + * tcc format, this attribute needs not be specified. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:ttcIndex + */ + public static final int FontFamilyFont_ttcIndex=9; + /** + * Attributes that can be used with a ForegroundLinearLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding org.muctec.smartfritz:foregroundInsidePadding}
+ * @see #ForegroundLinearLayout_android_foreground + * @see #ForegroundLinearLayout_android_foregroundGravity + * @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout={ + 0x01010109, 0x01010200, 0x7f0300db + }; + /** + *

This symbol is the offset where the {@link android.R.attr#foreground} + * attribute's value can be found in the {@link #ForegroundLinearLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground=0; + /** + *

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + * attribute's value can be found in the {@link #ForegroundLinearLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
fill77
fill_horizontal7
fill_vertical70
left3
right5
top30
+ * + * @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#foregroundInsidePadding} + * attribute's value can be found in the {@link #ForegroundLinearLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding=2; + /** + * Attributes that can be used with a GradientColor. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #GradientColor_android_startColor android:startColor}
{@link #GradientColor_android_endColor android:endColor}
{@link #GradientColor_android_type android:type}
{@link #GradientColor_android_centerX android:centerX}
{@link #GradientColor_android_centerY android:centerY}
{@link #GradientColor_android_gradientRadius android:gradientRadius}
{@link #GradientColor_android_tileMode android:tileMode}
{@link #GradientColor_android_centerColor android:centerColor}
{@link #GradientColor_android_startX android:startX}
{@link #GradientColor_android_startY android:startY}
{@link #GradientColor_android_endX android:endX}
{@link #GradientColor_android_endY android:endY}
+ * @see #GradientColor_android_startColor + * @see #GradientColor_android_endColor + * @see #GradientColor_android_type + * @see #GradientColor_android_centerX + * @see #GradientColor_android_centerY + * @see #GradientColor_android_gradientRadius + * @see #GradientColor_android_tileMode + * @see #GradientColor_android_centerColor + * @see #GradientColor_android_startX + * @see #GradientColor_android_startY + * @see #GradientColor_android_endX + * @see #GradientColor_android_endY + */ + public static final int[] GradientColor={ + 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, + 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, + 0x01010510, 0x01010511, 0x01010512, 0x01010513 + }; + /** + *

+ * @attr description + * Start color of the gradient. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:startColor + */ + public static final int GradientColor_android_startColor=0; + /** + *

+ * @attr description + * End color of the gradient. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:endColor + */ + public static final int GradientColor_android_endColor=1; + /** + *

+ * @attr description + * Type of gradient. The default type is linear. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
linear0
radial1
sweep2
+ * + * @attr name android:type + */ + public static final int GradientColor_android_type=2; + /** + *

+ * @attr description + * X coordinate of the center of the gradient within the path. + * + *

May be a floating point value, such as "1.2". + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:centerX + */ + public static final int GradientColor_android_centerX=3; + /** + *

+ * @attr description + * Y coordinate of the center of the gradient within the path. + * + *

May be a floating point value, such as "1.2". + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:centerY + */ + public static final int GradientColor_android_centerY=4; + /** + *

+ * @attr description + * Radius of the gradient, used only with radial gradient. + * + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:gradientRadius + */ + public static final int GradientColor_android_gradientRadius=5; + /** + *

+ * @attr description + * Defines the tile mode of the gradient. SweepGradient doesn't support tiling. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
clamp0
disabledffffffff
mirror2
repeat1
+ * + * @attr name android:tileMode + */ + public static final int GradientColor_android_tileMode=6; + /** + *

+ * @attr description + * Optional center color. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:centerColor + */ + public static final int GradientColor_android_centerColor=7; + /** + *

+ * @attr description + * X coordinate of the start point origin of the gradient. + * Defined in same coordinates as the path itself + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:startX + */ + public static final int GradientColor_android_startX=8; + /** + *

+ * @attr description + * Y coordinate of the start point of the gradient within the shape. + * Defined in same coordinates as the path itself + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:startY + */ + public static final int GradientColor_android_startY=9; + /** + *

+ * @attr description + * X coordinate of the end point origin of the gradient. + * Defined in same coordinates as the path itself + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:endX + */ + public static final int GradientColor_android_endX=10; + /** + *

+ * @attr description + * Y coordinate of the end point of the gradient within the shape. + * Defined in same coordinates as the path itself + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:endY + */ + public static final int GradientColor_android_endY=11; + /** + * Attributes that can be used with a GradientColorItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #GradientColorItem_android_color android:color}
{@link #GradientColorItem_android_offset android:offset}
+ * @see #GradientColorItem_android_color + * @see #GradientColorItem_android_offset + */ + public static final int[] GradientColorItem={ + 0x010101a5, 0x01010514 + }; + /** + *

+ * @attr description + * The current color for the offset inside the gradient. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:color + */ + public static final int GradientColorItem_android_color=0; + /** + *

+ * @attr description + * The offset (or ratio) of this current color item inside the gradient. + * The value is only meaningful when it is between 0 and 1. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:offset + */ + public static final int GradientColorItem_android_offset=1; + /** + * Attributes that can be used with a LinearLayoutCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider org.muctec.smartfritz:divider}Specifies the drawable used for item dividers.
{@link #LinearLayoutCompat_dividerPadding org.muctec.smartfritz:dividerPadding}Size of padding on either end of a divider.
{@link #LinearLayoutCompat_measureWithLargestChild org.muctec.smartfritz:measureWithLargestChild}When set to true, all children with a weight will be considered having + * the minimum size of the largest child.
{@link #LinearLayoutCompat_showDividers org.muctec.smartfritz:showDividers}Setting for which dividers to show.
+ * @see #LinearLayoutCompat_android_gravity + * @see #LinearLayoutCompat_android_orientation + * @see #LinearLayoutCompat_android_baselineAligned + * @see #LinearLayoutCompat_android_baselineAlignedChildIndex + * @see #LinearLayoutCompat_android_weightSum + * @see #LinearLayoutCompat_divider + * @see #LinearLayoutCompat_dividerPadding + * @see #LinearLayoutCompat_measureWithLargestChild + * @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat={ + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f0300aa, 0x7f0300ac, 0x7f03012a, + 0x7f030158 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#gravity} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity=0; + /** + *

+ * @attr description + * Should the layout be a column or a row? Use "horizontal" + * for a row, "vertical" for a column. The default is + * horizontal. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation=1; + /** + *

+ * @attr description + * When set to false, prevents the layout from aligning its children's + * baselines. This attribute is particularly useful when the children + * use different values for gravity. The default value is true. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned=2; + /** + *

+ * @attr description + * When a linear layout is part of another layout that is baseline + * aligned, it can specify which of its children to baseline align to + * (that is, which child TextView). + * + *

May be an integer value, such as "100". + * + * @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3; + /** + *

+ * @attr description + * Defines the maximum weight sum. If unspecified, the sum is computed + * by adding the layout_weight of all of the children. This can be + * used for instance to give a single child 50% of the total available + * space by giving it a layout_weight of 0.5 and setting the weightSum + * to 1.0. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum=4; + /** + *

+ * @attr description + * Drawable to use as a vertical divider between buttons. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:divider + */ + public static final int LinearLayoutCompat_divider=5; + /** + *

+ * @attr description + * Size of padding on either end of a divider. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding=6; + /** + *

+ * @attr description + * When set to true, all children with a weight will be considered having + * the minimum size of the largest child. If false, all children are + * measured normally. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild=7; + /** + *

+ * @attr description + * Setting for which dividers to show. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
beginning1
end4
middle2
none0
+ * + * @attr name org.muctec.smartfritz:showDividers + */ + public static final int LinearLayoutCompat_showDividers=8; + /** + * Attributes that can be used with a LinearLayoutCompat_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
+ * @see #LinearLayoutCompat_Layout_android_layout_gravity + * @see #LinearLayoutCompat_Layout_android_layout_width + * @see #LinearLayoutCompat_Layout_android_layout_height + * @see #LinearLayoutCompat_Layout_android_layout_weight + */ + public static final int[] LinearLayoutCompat_Layout={ + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity=0; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_width} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width=1; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_height} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height=2; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_weight} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight=3; + /** + * Attributes that can be used with a ListPopupWindow. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ * @see #ListPopupWindow_android_dropDownHorizontalOffset + * @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow={ + 0x010102ac, 0x010102ad + }; + /** + *

+ * @attr description + * Amount of pixels by which the drop down should be offset horizontally. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset=0; + /** + *

+ * @attr description + * Amount of pixels by which the drop down should be offset vertically. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset=1; + /** + * Attributes that can be used with a MaterialButton. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialButton_android_insetLeft android:insetLeft}
{@link #MaterialButton_android_insetRight android:insetRight}
{@link #MaterialButton_android_insetTop android:insetTop}
{@link #MaterialButton_android_insetBottom android:insetBottom}
{@link #MaterialButton_backgroundTint org.muctec.smartfritz:backgroundTint}Tint to apply to the background.
{@link #MaterialButton_backgroundTintMode org.muctec.smartfritz:backgroundTintMode}Blending mode used to apply the background tint.
{@link #MaterialButton_cornerRadius org.muctec.smartfritz:cornerRadius}
{@link #MaterialButton_icon org.muctec.smartfritz:icon}
{@link #MaterialButton_iconGravity org.muctec.smartfritz:iconGravity}
{@link #MaterialButton_iconPadding org.muctec.smartfritz:iconPadding}
{@link #MaterialButton_iconSize org.muctec.smartfritz:iconSize}
{@link #MaterialButton_iconTint org.muctec.smartfritz:iconTint}Tint to apply to the icon.
{@link #MaterialButton_iconTintMode org.muctec.smartfritz:iconTintMode}Blending mode used to apply the icon tint.
{@link #MaterialButton_rippleColor org.muctec.smartfritz:rippleColor}
{@link #MaterialButton_strokeColor org.muctec.smartfritz:strokeColor}
{@link #MaterialButton_strokeWidth org.muctec.smartfritz:strokeWidth}
+ * @see #MaterialButton_android_insetLeft + * @see #MaterialButton_android_insetRight + * @see #MaterialButton_android_insetTop + * @see #MaterialButton_android_insetBottom + * @see #MaterialButton_backgroundTint + * @see #MaterialButton_backgroundTintMode + * @see #MaterialButton_cornerRadius + * @see #MaterialButton_icon + * @see #MaterialButton_iconGravity + * @see #MaterialButton_iconPadding + * @see #MaterialButton_iconSize + * @see #MaterialButton_iconTint + * @see #MaterialButton_iconTintMode + * @see #MaterialButton_rippleColor + * @see #MaterialButton_strokeColor + * @see #MaterialButton_strokeWidth + */ + public static final int[] MaterialButton={ + 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, + 0x7f030034, 0x7f030035, 0x7f03009f, 0x7f0300ec, + 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f2, + 0x7f0300f3, 0x7f03014d, 0x7f03016f, 0x7f030170 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#insetLeft} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetLeft + */ + public static final int MaterialButton_android_insetLeft=0; + /** + *

This symbol is the offset where the {@link android.R.attr#insetRight} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetRight + */ + public static final int MaterialButton_android_insetRight=1; + /** + *

This symbol is the offset where the {@link android.R.attr#insetTop} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetTop + */ + public static final int MaterialButton_android_insetTop=2; + /** + *

This symbol is the offset where the {@link android.R.attr#insetBottom} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetBottom + */ + public static final int MaterialButton_android_insetBottom=3; + /** + *

+ * @attr description + * Tint to apply to the background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundTint + */ + public static final int MaterialButton_backgroundTint=4; + /** + *

+ * @attr description + * Blending mode used to apply the background tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:backgroundTintMode + */ + public static final int MaterialButton_backgroundTintMode=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#cornerRadius} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:cornerRadius + */ + public static final int MaterialButton_cornerRadius=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#icon} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:icon + */ + public static final int MaterialButton_icon=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#iconGravity} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
start1
textStart2
+ * + * @attr name org.muctec.smartfritz:iconGravity + */ + public static final int MaterialButton_iconGravity=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#iconPadding} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:iconPadding + */ + public static final int MaterialButton_iconPadding=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#iconSize} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:iconSize + */ + public static final int MaterialButton_iconSize=10; + /** + *

+ * @attr description + * Tint to apply to the icon. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:iconTint + */ + public static final int MaterialButton_iconTint=11; + /** + *

+ * @attr description + * Blending mode used to apply the icon tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the icon with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the icon, but with the icon’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the icon. The icon’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the icon. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:iconTintMode + */ + public static final int MaterialButton_iconTintMode=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#rippleColor} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:rippleColor + */ + public static final int MaterialButton_rippleColor=13; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#strokeColor} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:strokeColor + */ + public static final int MaterialButton_strokeColor=14; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#strokeWidth} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:strokeWidth + */ + public static final int MaterialButton_strokeWidth=15; + /** + * Attributes that can be used with a MaterialCardView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialCardView_strokeColor org.muctec.smartfritz:strokeColor}
{@link #MaterialCardView_strokeWidth org.muctec.smartfritz:strokeWidth}
+ * @see #MaterialCardView_strokeColor + * @see #MaterialCardView_strokeWidth + */ + public static final int[] MaterialCardView={ + 0x7f03016f, 0x7f030170 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#strokeColor} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:strokeColor + */ + public static final int MaterialCardView_strokeColor=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#strokeWidth} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:strokeWidth + */ + public static final int MaterialCardView_strokeWidth=1; + /** + * Attributes that can be used with a MaterialComponentsTheme. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialComponentsTheme_bottomSheetDialogTheme org.muctec.smartfritz:bottomSheetDialogTheme}
{@link #MaterialComponentsTheme_bottomSheetStyle org.muctec.smartfritz:bottomSheetStyle}
{@link #MaterialComponentsTheme_chipGroupStyle org.muctec.smartfritz:chipGroupStyle}
{@link #MaterialComponentsTheme_chipStandaloneStyle org.muctec.smartfritz:chipStandaloneStyle}
{@link #MaterialComponentsTheme_chipStyle org.muctec.smartfritz:chipStyle}
{@link #MaterialComponentsTheme_colorAccent org.muctec.smartfritz:colorAccent}Bright complement to the primary branding color.
{@link #MaterialComponentsTheme_colorBackgroundFloating org.muctec.smartfritz:colorBackgroundFloating}Default color of background imagery for floating components, ex.
{@link #MaterialComponentsTheme_colorPrimary org.muctec.smartfritz:colorPrimary}The primary branding color for the app.
{@link #MaterialComponentsTheme_colorPrimaryDark org.muctec.smartfritz:colorPrimaryDark}Dark variant of the primary branding color.
{@link #MaterialComponentsTheme_colorSecondary org.muctec.smartfritz:colorSecondary}
{@link #MaterialComponentsTheme_editTextStyle org.muctec.smartfritz:editTextStyle}Default EditText style.
{@link #MaterialComponentsTheme_floatingActionButtonStyle org.muctec.smartfritz:floatingActionButtonStyle}
{@link #MaterialComponentsTheme_materialButtonStyle org.muctec.smartfritz:materialButtonStyle}
{@link #MaterialComponentsTheme_materialCardViewStyle org.muctec.smartfritz:materialCardViewStyle}
{@link #MaterialComponentsTheme_navigationViewStyle org.muctec.smartfritz:navigationViewStyle}
{@link #MaterialComponentsTheme_scrimBackground org.muctec.smartfritz:scrimBackground}
{@link #MaterialComponentsTheme_snackbarButtonStyle org.muctec.smartfritz:snackbarButtonStyle}
{@link #MaterialComponentsTheme_tabStyle org.muctec.smartfritz:tabStyle}
{@link #MaterialComponentsTheme_textAppearanceBody1 org.muctec.smartfritz:textAppearanceBody1}
{@link #MaterialComponentsTheme_textAppearanceBody2 org.muctec.smartfritz:textAppearanceBody2}
{@link #MaterialComponentsTheme_textAppearanceButton org.muctec.smartfritz:textAppearanceButton}
{@link #MaterialComponentsTheme_textAppearanceCaption org.muctec.smartfritz:textAppearanceCaption}
{@link #MaterialComponentsTheme_textAppearanceHeadline1 org.muctec.smartfritz:textAppearanceHeadline1}
{@link #MaterialComponentsTheme_textAppearanceHeadline2 org.muctec.smartfritz:textAppearanceHeadline2}
{@link #MaterialComponentsTheme_textAppearanceHeadline3 org.muctec.smartfritz:textAppearanceHeadline3}
{@link #MaterialComponentsTheme_textAppearanceHeadline4 org.muctec.smartfritz:textAppearanceHeadline4}
{@link #MaterialComponentsTheme_textAppearanceHeadline5 org.muctec.smartfritz:textAppearanceHeadline5}
{@link #MaterialComponentsTheme_textAppearanceHeadline6 org.muctec.smartfritz:textAppearanceHeadline6}
{@link #MaterialComponentsTheme_textAppearanceOverline org.muctec.smartfritz:textAppearanceOverline}
{@link #MaterialComponentsTheme_textAppearanceSubtitle1 org.muctec.smartfritz:textAppearanceSubtitle1}
{@link #MaterialComponentsTheme_textAppearanceSubtitle2 org.muctec.smartfritz:textAppearanceSubtitle2}
{@link #MaterialComponentsTheme_textInputStyle org.muctec.smartfritz:textInputStyle}
+ * @see #MaterialComponentsTheme_bottomSheetDialogTheme + * @see #MaterialComponentsTheme_bottomSheetStyle + * @see #MaterialComponentsTheme_chipGroupStyle + * @see #MaterialComponentsTheme_chipStandaloneStyle + * @see #MaterialComponentsTheme_chipStyle + * @see #MaterialComponentsTheme_colorAccent + * @see #MaterialComponentsTheme_colorBackgroundFloating + * @see #MaterialComponentsTheme_colorPrimary + * @see #MaterialComponentsTheme_colorPrimaryDark + * @see #MaterialComponentsTheme_colorSecondary + * @see #MaterialComponentsTheme_editTextStyle + * @see #MaterialComponentsTheme_floatingActionButtonStyle + * @see #MaterialComponentsTheme_materialButtonStyle + * @see #MaterialComponentsTheme_materialCardViewStyle + * @see #MaterialComponentsTheme_navigationViewStyle + * @see #MaterialComponentsTheme_scrimBackground + * @see #MaterialComponentsTheme_snackbarButtonStyle + * @see #MaterialComponentsTheme_tabStyle + * @see #MaterialComponentsTheme_textAppearanceBody1 + * @see #MaterialComponentsTheme_textAppearanceBody2 + * @see #MaterialComponentsTheme_textAppearanceButton + * @see #MaterialComponentsTheme_textAppearanceCaption + * @see #MaterialComponentsTheme_textAppearanceHeadline1 + * @see #MaterialComponentsTheme_textAppearanceHeadline2 + * @see #MaterialComponentsTheme_textAppearanceHeadline3 + * @see #MaterialComponentsTheme_textAppearanceHeadline4 + * @see #MaterialComponentsTheme_textAppearanceHeadline5 + * @see #MaterialComponentsTheme_textAppearanceHeadline6 + * @see #MaterialComponentsTheme_textAppearanceOverline + * @see #MaterialComponentsTheme_textAppearanceSubtitle1 + * @see #MaterialComponentsTheme_textAppearanceSubtitle2 + * @see #MaterialComponentsTheme_textInputStyle + */ + public static final int[] MaterialComponentsTheme={ + 0x7f030041, 0x7f030042, 0x7f030068, 0x7f030072, + 0x7f030076, 0x7f030084, 0x7f030085, 0x7f03008b, + 0x7f03008c, 0x7f03008d, 0x7f0300b4, 0x7f0300cf, + 0x7f030125, 0x7f030126, 0x7f030130, 0x7f03014f, + 0x7f03015f, 0x7f030192, 0x7f030197, 0x7f030198, + 0x7f030199, 0x7f03019a, 0x7f03019b, 0x7f03019c, + 0x7f03019d, 0x7f03019e, 0x7f03019f, 0x7f0301a0, + 0x7f0301a5, 0x7f0301aa, 0x7f0301ab, 0x7f0301af + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#bottomSheetDialogTheme} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:bottomSheetDialogTheme + */ + public static final int MaterialComponentsTheme_bottomSheetDialogTheme=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#bottomSheetStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:bottomSheetStyle + */ + public static final int MaterialComponentsTheme_bottomSheetStyle=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipGroupStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:chipGroupStyle + */ + public static final int MaterialComponentsTheme_chipGroupStyle=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipStandaloneStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:chipStandaloneStyle + */ + public static final int MaterialComponentsTheme_chipStandaloneStyle=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:chipStyle + */ + public static final int MaterialComponentsTheme_chipStyle=4; + /** + *

+ * @attr description + * Bright complement to the primary branding color. By default, this is the color applied + * to framework controls (via colorControlActivated). + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorAccent + */ + public static final int MaterialComponentsTheme_colorAccent=5; + /** + *

+ * @attr description + * Default color of background imagery for floating components, ex. dialogs, popups, and cards. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorBackgroundFloating + */ + public static final int MaterialComponentsTheme_colorBackgroundFloating=6; + /** + *

+ * @attr description + * The primary branding color for the app. By default, this is the color applied to the + * action bar background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorPrimary + */ + public static final int MaterialComponentsTheme_colorPrimary=7; + /** + *

+ * @attr description + * Dark variant of the primary branding color. By default, this is the color applied to + * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorPrimaryDark + */ + public static final int MaterialComponentsTheme_colorPrimaryDark=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#colorSecondary} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorSecondary + */ + public static final int MaterialComponentsTheme_colorSecondary=9; + /** + *

+ * @attr description + * Default EditText style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:editTextStyle + */ + public static final int MaterialComponentsTheme_editTextStyle=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#floatingActionButtonStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be an integer value, such as "100". + *

May be a boolean value, such as "true" or + * "false". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:floatingActionButtonStyle + */ + public static final int MaterialComponentsTheme_floatingActionButtonStyle=11; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#materialButtonStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:materialButtonStyle + */ + public static final int MaterialComponentsTheme_materialButtonStyle=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#materialCardViewStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:materialCardViewStyle + */ + public static final int MaterialComponentsTheme_materialCardViewStyle=13; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#navigationViewStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:navigationViewStyle + */ + public static final int MaterialComponentsTheme_navigationViewStyle=14; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#scrimBackground} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:scrimBackground + */ + public static final int MaterialComponentsTheme_scrimBackground=15; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#snackbarButtonStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:snackbarButtonStyle + */ + public static final int MaterialComponentsTheme_snackbarButtonStyle=16; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:tabStyle + */ + public static final int MaterialComponentsTheme_tabStyle=17; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceBody1} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceBody1 + */ + public static final int MaterialComponentsTheme_textAppearanceBody1=18; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceBody2} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceBody2 + */ + public static final int MaterialComponentsTheme_textAppearanceBody2=19; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceButton} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceButton + */ + public static final int MaterialComponentsTheme_textAppearanceButton=20; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceCaption} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceCaption + */ + public static final int MaterialComponentsTheme_textAppearanceCaption=21; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceHeadline1} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceHeadline1 + */ + public static final int MaterialComponentsTheme_textAppearanceHeadline1=22; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceHeadline2} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceHeadline2 + */ + public static final int MaterialComponentsTheme_textAppearanceHeadline2=23; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceHeadline3} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceHeadline3 + */ + public static final int MaterialComponentsTheme_textAppearanceHeadline3=24; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceHeadline4} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceHeadline4 + */ + public static final int MaterialComponentsTheme_textAppearanceHeadline4=25; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceHeadline5} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceHeadline5 + */ + public static final int MaterialComponentsTheme_textAppearanceHeadline5=26; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceHeadline6} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceHeadline6 + */ + public static final int MaterialComponentsTheme_textAppearanceHeadline6=27; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceOverline} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceOverline + */ + public static final int MaterialComponentsTheme_textAppearanceOverline=28; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceSubtitle1} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceSubtitle1 + */ + public static final int MaterialComponentsTheme_textAppearanceSubtitle1=29; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceSubtitle2} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceSubtitle2 + */ + public static final int MaterialComponentsTheme_textAppearanceSubtitle2=30; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textInputStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textInputStyle + */ + public static final int MaterialComponentsTheme_textInputStyle=31; + /** + * Attributes that can be used with a MenuGroup. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_visible android:visible}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
+ * @see #MenuGroup_android_enabled + * @see #MenuGroup_android_id + * @see #MenuGroup_android_visible + * @see #MenuGroup_android_menuCategory + * @see #MenuGroup_android_orderInCategory + * @see #MenuGroup_android_checkableBehavior + */ + public static final int[] MenuGroup={ + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** + *

+ * @attr description + * Whether the items are enabled. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int MenuGroup_android_enabled=0; + /** + *

+ * @attr description + * The ID of the group. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int MenuGroup_android_id=1; + /** + *

+ * @attr description + * Whether the items are shown/visible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int MenuGroup_android_visible=2; + /** + *

+ * @attr description + * The category applied to all items within this group. + * (This will be or'ed with the orderInCategory attribute.) + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
+ * + * @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory=3; + /** + *

+ * @attr description + * The order within the category applied to all items within this group. + * (This will be or'ed with the category attribute.) + * + *

May be an integer value, such as "100". + * + * @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory=4; + /** + *

+ * @attr description + * Whether the items are capable of displaying a check mark. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
all1
none0
single2
+ * + * @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior=5; + /** + * Attributes that can be used with a MenuItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_actionLayout org.muctec.smartfritz:actionLayout}An optional layout to be used as an action view.
{@link #MenuItem_actionProviderClass org.muctec.smartfritz:actionProviderClass}The name of an optional ActionProvider class to instantiate an action view + * and perform operations such as default action for that menu item.
{@link #MenuItem_actionViewClass org.muctec.smartfritz:actionViewClass}The name of an optional View class to instantiate and use as an + * action view.
{@link #MenuItem_alphabeticModifiers org.muctec.smartfritz:alphabeticModifiers}The alphabetic modifier key.
{@link #MenuItem_contentDescription org.muctec.smartfritz:contentDescription}The content description associated with the item.
{@link #MenuItem_iconTint org.muctec.smartfritz:iconTint}Tint to apply to the icon.
{@link #MenuItem_iconTintMode org.muctec.smartfritz:iconTintMode}Blending mode used to apply the icon tint.
{@link #MenuItem_numericModifiers org.muctec.smartfritz:numericModifiers}The numeric modifier key.
{@link #MenuItem_showAsAction org.muctec.smartfritz:showAsAction}How this item should display in the Action Bar, if present.
{@link #MenuItem_tooltipText org.muctec.smartfritz:tooltipText}The tooltip text associated with the item.
+ * @see #MenuItem_android_icon + * @see #MenuItem_android_enabled + * @see #MenuItem_android_id + * @see #MenuItem_android_checked + * @see #MenuItem_android_visible + * @see #MenuItem_android_menuCategory + * @see #MenuItem_android_orderInCategory + * @see #MenuItem_android_title + * @see #MenuItem_android_titleCondensed + * @see #MenuItem_android_alphabeticShortcut + * @see #MenuItem_android_numericShortcut + * @see #MenuItem_android_checkable + * @see #MenuItem_android_onClick + * @see #MenuItem_actionLayout + * @see #MenuItem_actionProviderClass + * @see #MenuItem_actionViewClass + * @see #MenuItem_alphabeticModifiers + * @see #MenuItem_contentDescription + * @see #MenuItem_iconTint + * @see #MenuItem_iconTintMode + * @see #MenuItem_numericModifiers + * @see #MenuItem_showAsAction + * @see #MenuItem_tooltipText + */ + public static final int[] MenuItem={ + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f03000d, 0x7f03001f, 0x7f030020, + 0x7f030028, 0x7f030090, 0x7f0300f2, 0x7f0300f3, + 0x7f030131, 0x7f030157, 0x7f0301cb + }; + /** + *

+ * @attr description + * The icon associated with this item. This icon will not always be shown, so + * the title should be sufficient in describing this item. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:icon + */ + public static final int MenuItem_android_icon=0; + /** + *

+ * @attr description + * Whether the item is enabled. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int MenuItem_android_enabled=1; + /** + *

+ * @attr description + * The ID of the item. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int MenuItem_android_id=2; + /** + *

+ * @attr description + * Whether the item is checked. Note that you must first have enabled checking with + * the checkable attribute or else the check mark will not appear. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checked + */ + public static final int MenuItem_android_checked=3; + /** + *

+ * @attr description + * Whether the item is shown/visible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int MenuItem_android_visible=4; + /** + *

+ * @attr description + * The category applied to the item. + * (This will be or'ed with the orderInCategory attribute.) + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
+ * + * @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory=5; + /** + *

+ * @attr description + * The order within the category applied to the item. + * (This will be or'ed with the category attribute.) + * + *

May be an integer value, such as "100". + * + * @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory=6; + /** + *

+ * @attr description + * The title associated with the item. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:title + */ + public static final int MenuItem_android_title=7; + /** + *

+ * @attr description + * The condensed title associated with the item. This is used in situations where the + * normal title may be too long to be displayed. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed=8; + /** + *

+ * @attr description + * The alphabetic shortcut key. This is the shortcut when using a keyboard + * with alphabetic keys. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut=9; + /** + *

+ * @attr description + * The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) + * keyboard. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut=10; + /** + *

+ * @attr description + * Whether the item is capable of displaying a check mark. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checkable + */ + public static final int MenuItem_android_checkable=11; + /** + *

+ * @attr description + * Name of a method on the Context used to inflate the menu that will be + * called when the item is clicked. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:onClick + */ + public static final int MenuItem_android_onClick=12; + /** + *

+ * @attr description + * An optional layout to be used as an action view. + * See {@link android.view.MenuItem#setActionView(android.view.View)} + * for more info. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionLayout + */ + public static final int MenuItem_actionLayout=13; + /** + *

+ * @attr description + * The name of an optional ActionProvider class to instantiate an action view + * and perform operations such as default action for that menu item. + * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} + * for more info. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:actionProviderClass + */ + public static final int MenuItem_actionProviderClass=14; + /** + *

+ * @attr description + * The name of an optional View class to instantiate and use as an + * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} + * for more info. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:actionViewClass + */ + public static final int MenuItem_actionViewClass=15; + /** + *

+ * @attr description + * The alphabetic modifier key. This is the modifier when using a keyboard + * with alphabetic keys. The values should be kept in sync with KeyEvent + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ * + * @attr name org.muctec.smartfritz:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers=16; + /** + *

+ * @attr description + * The content description associated with the item. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:contentDescription + */ + public static final int MenuItem_contentDescription=17; + /** + *

+ * @attr description + * Tint to apply to the icon. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:iconTint + */ + public static final int MenuItem_iconTint=18; + /** + *

+ * @attr description + * Blending mode used to apply the icon tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the icon with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the icon, but with the icon’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the icon. The icon’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the icon. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:iconTintMode + */ + public static final int MenuItem_iconTintMode=19; + /** + *

+ * @attr description + * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) + * keyboard. The values should be kept in sync with KeyEvent + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ * + * @attr name org.muctec.smartfritz:numericModifiers + */ + public static final int MenuItem_numericModifiers=20; + /** + *

+ * @attr description + * How this item should display in the Action Bar, if present. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
always2Always show this item in an actionbar, even if it would override + * the system's limits of how much stuff to put there. This may make + * your action bar look bad on some screens. In most cases you should + * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".
collapseActionView8This item's action view collapses to a normal menu + * item. When expanded, the action view takes over a + * larger segment of its container.
ifRoom1Show this item in an action bar if there is room for it as determined + * by the system. Favor this option over "always" where possible. + * Mutually exclusive with "never" and "always".
never0Never show this item in an action bar, show it in the overflow menu instead. + * Mutually exclusive with "ifRoom" and "always".
withText4When this item is shown as an action in the action bar, show a text + * label with it even if it has an icon representation.
+ * + * @attr name org.muctec.smartfritz:showAsAction + */ + public static final int MenuItem_showAsAction=21; + /** + *

+ * @attr description + * The tooltip text associated with the item. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:tooltipText + */ + public static final int MenuItem_tooltipText=22; + /** + * Attributes that can be used with a MenuView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_preserveIconSpacing org.muctec.smartfritz:preserveIconSpacing}Whether space should be reserved in layout when an icon is missing.
{@link #MenuView_subMenuArrow org.muctec.smartfritz:subMenuArrow}Drawable for the arrow icon indicating a particular item is a submenu.
+ * @see #MenuView_android_windowAnimationStyle + * @see #MenuView_android_itemTextAppearance + * @see #MenuView_android_horizontalDivider + * @see #MenuView_android_verticalDivider + * @see #MenuView_android_headerBackground + * @see #MenuView_android_itemBackground + * @see #MenuView_android_itemIconDisabledAlpha + * @see #MenuView_preserveIconSpacing + * @see #MenuView_subMenuArrow + */ + public static final int[] MenuView={ + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f030142, + 0x7f030171 + }; + /** + *

+ * @attr description + * Default animations for the menu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle=0; + /** + *

+ * @attr description + * Default appearance of menu item text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance=1; + /** + *

+ * @attr description + * Default horizontal divider between rows of menu items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider=2; + /** + *

+ * @attr description + * Default vertical divider between menu items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider=3; + /** + *

+ * @attr description + * Default background for the menu header. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground=4; + /** + *

+ * @attr description + * Default background for each menu item. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground=5; + /** + *

+ * @attr description + * Default disabled icon alpha for each menu item that shows an icon. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha=6; + /** + *

+ * @attr description + * Whether space should be reserved in layout when an icon is missing. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing=7; + /** + *

+ * @attr description + * Drawable for the arrow icon indicating a particular item is a submenu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:subMenuArrow + */ + public static final int MenuView_subMenuArrow=8; + /** + * Attributes that can be used with a NavigationView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation org.muctec.smartfritz:elevation}Elevation for the action bar itself
{@link #NavigationView_headerLayout org.muctec.smartfritz:headerLayout}
{@link #NavigationView_itemBackground org.muctec.smartfritz:itemBackground}
{@link #NavigationView_itemHorizontalPadding org.muctec.smartfritz:itemHorizontalPadding}
{@link #NavigationView_itemIconPadding org.muctec.smartfritz:itemIconPadding}
{@link #NavigationView_itemIconTint org.muctec.smartfritz:itemIconTint}
{@link #NavigationView_itemTextAppearance org.muctec.smartfritz:itemTextAppearance}
{@link #NavigationView_itemTextColor org.muctec.smartfritz:itemTextColor}
{@link #NavigationView_menu org.muctec.smartfritz:menu}
+ * @see #NavigationView_android_background + * @see #NavigationView_android_fitsSystemWindows + * @see #NavigationView_android_maxWidth + * @see #NavigationView_elevation + * @see #NavigationView_headerLayout + * @see #NavigationView_itemBackground + * @see #NavigationView_itemHorizontalPadding + * @see #NavigationView_itemIconPadding + * @see #NavigationView_itemIconTint + * @see #NavigationView_itemTextAppearance + * @see #NavigationView_itemTextColor + * @see #NavigationView_menu + */ + public static final int[] NavigationView={ + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f0300b5, + 0x7f0300de, 0x7f0300fa, 0x7f0300fb, 0x7f0300fd, + 0x7f0300ff, 0x7f030102, 0x7f030105, 0x7f03012b + }; + /** + *

This symbol is the offset where the {@link android.R.attr#background} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:background + */ + public static final int NavigationView_android_background=0; + /** + *

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows=1; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth=2; + /** + *

+ * @attr description + * Elevation for the action bar itself + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:elevation + */ + public static final int NavigationView_elevation=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#headerLayout} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:headerLayout + */ + public static final int NavigationView_headerLayout=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemBackground} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:itemBackground + */ + public static final int NavigationView_itemBackground=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemHorizontalPadding} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:itemHorizontalPadding + */ + public static final int NavigationView_itemHorizontalPadding=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemIconPadding} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:itemIconPadding + */ + public static final int NavigationView_itemIconPadding=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemIconTint} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:itemIconTint + */ + public static final int NavigationView_itemIconTint=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemTextAppearance} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemTextColor} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:itemTextColor + */ + public static final int NavigationView_itemTextColor=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#menu} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:menu + */ + public static final int NavigationView_menu=11; + /** + * Attributes that can be used with a PopupWindow. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_overlapAnchor org.muctec.smartfritz:overlapAnchor}Whether the popup window should overlap its anchor view.
+ * @see #PopupWindow_android_popupBackground + * @see #PopupWindow_android_popupAnimationStyle + * @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow={ + 0x01010176, 0x010102c9, 0x7f030132 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#popupBackground} + * attribute's value can be found in the {@link #PopupWindow} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground=0; + /** + *

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + * attribute's value can be found in the {@link #PopupWindow} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle=1; + /** + *

+ * @attr description + * Whether the popup window should overlap its anchor view. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor=2; + /** + * Attributes that can be used with a PopupWindowBackgroundState. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor org.muctec.smartfritz:state_above_anchor}State identifier indicating the popup will be above the anchor.
+ * @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState={ + 0x7f030168 + }; + /** + *

+ * @attr description + * State identifier indicating the popup will be above the anchor. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor=0; + /** + * Attributes that can be used with a RecycleListView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons org.muctec.smartfritz:paddingBottomNoButtons}Bottom padding to use when no buttons are present.
{@link #RecycleListView_paddingTopNoTitle org.muctec.smartfritz:paddingTopNoTitle}Top padding to use when no title is present.
+ * @see #RecycleListView_paddingBottomNoButtons + * @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView={ + 0x7f030133, 0x7f030136 + }; + /** + *

+ * @attr description + * Bottom padding to use when no buttons are present. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons=0; + /** + *

+ * @attr description + * Top padding to use when no title is present. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle=1; + /** + * Attributes that can be used with a RecyclerView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_fastScrollEnabled org.muctec.smartfritz:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable org.muctec.smartfritz:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable org.muctec.smartfritz:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable org.muctec.smartfritz:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable org.muctec.smartfritz:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager org.muctec.smartfritz:layoutManager}Class name of the Layout Manager to be used.
{@link #RecyclerView_reverseLayout org.muctec.smartfritz:reverseLayout}
{@link #RecyclerView_spanCount org.muctec.smartfritz:spanCount}
{@link #RecyclerView_stackFromEnd org.muctec.smartfritz:stackFromEnd}
+ * @see #RecyclerView_android_orientation + * @see #RecyclerView_android_descendantFocusability + * @see #RecyclerView_fastScrollEnabled + * @see #RecyclerView_fastScrollHorizontalThumbDrawable + * @see #RecyclerView_fastScrollHorizontalTrackDrawable + * @see #RecyclerView_fastScrollVerticalThumbDrawable + * @see #RecyclerView_fastScrollVerticalTrackDrawable + * @see #RecyclerView_layoutManager + * @see #RecyclerView_reverseLayout + * @see #RecyclerView_spanCount + * @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView={ + 0x010100c4, 0x010100f1, 0x7f0300c9, 0x7f0300ca, + 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f03010a, + 0x7f03014c, 0x7f030161, 0x7f030167 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#orientation} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int RecyclerView_android_orientation=0; + /** + *

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
afterDescendants1
beforeDescendants0
blocksDescendants2
+ * + * @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fastScrollEnabled} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fastScrollHorizontalThumbDrawable} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fastScrollHorizontalTrackDrawable} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fastScrollVerticalThumbDrawable} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fastScrollVerticalTrackDrawable} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable=6; + /** + *

+ * @attr description + * Class name of the Layout Manager to be used. + *

+ * The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager + * and have either a default constructor or constructor with the signature + * (android.content.Context, android.util.AttributeSet, int, int). + *

+ * If the name starts with a '.', application package is prefixed. + * Else, if the name contains a '.', the classname is assumed to be a full class name. + * Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:layoutManager + */ + public static final int RecyclerView_layoutManager=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#reverseLayout} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:reverseLayout + */ + public static final int RecyclerView_reverseLayout=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#spanCount} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:spanCount + */ + public static final int RecyclerView_spanCount=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#stackFromEnd} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd=10; + /** + * Attributes that can be used with a ScrimInsetsFrameLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground org.muctec.smartfritz:insetForeground}
+ * @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout={ + 0x7f0300f8 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#insetForeground} + * attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground=0; + /** + * Attributes that can be used with a ScrollingViewBehavior_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop org.muctec.smartfritz:behavior_overlapTop}
+ * @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout={ + 0x7f03003a + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#behavior_overlapTop} + * attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop=0; + /** + * Attributes that can be used with a SearchView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_closeIcon org.muctec.smartfritz:closeIcon}Close button icon
{@link #SearchView_commitIcon org.muctec.smartfritz:commitIcon}Commit icon shown in the query suggestion row
{@link #SearchView_defaultQueryHint org.muctec.smartfritz:defaultQueryHint}Default query hint used when {@code queryHint} is undefined and + * the search view's {@code SearchableInfo} does not provide a hint.
{@link #SearchView_goIcon org.muctec.smartfritz:goIcon}Go button icon
{@link #SearchView_iconifiedByDefault org.muctec.smartfritz:iconifiedByDefault}The default state of the SearchView.
{@link #SearchView_layout org.muctec.smartfritz:layout}The layout to use for the search view.
{@link #SearchView_queryBackground org.muctec.smartfritz:queryBackground}Background for the section containing the search query
{@link #SearchView_queryHint org.muctec.smartfritz:queryHint}An optional user-defined query hint string to be displayed in the empty query field.
{@link #SearchView_searchHintIcon org.muctec.smartfritz:searchHintIcon}Search icon displayed as a text field hint
{@link #SearchView_searchIcon org.muctec.smartfritz:searchIcon}Search icon
{@link #SearchView_submitBackground org.muctec.smartfritz:submitBackground}Background for the section containing the action (e.g.
{@link #SearchView_suggestionRowLayout org.muctec.smartfritz:suggestionRowLayout}Layout for query suggestion rows
{@link #SearchView_voiceIcon org.muctec.smartfritz:voiceIcon}Voice button icon
+ * @see #SearchView_android_focusable + * @see #SearchView_android_maxWidth + * @see #SearchView_android_inputType + * @see #SearchView_android_imeOptions + * @see #SearchView_closeIcon + * @see #SearchView_commitIcon + * @see #SearchView_defaultQueryHint + * @see #SearchView_goIcon + * @see #SearchView_iconifiedByDefault + * @see #SearchView_layout + * @see #SearchView_queryBackground + * @see #SearchView_queryHint + * @see #SearchView_searchHintIcon + * @see #SearchView_searchIcon + * @see #SearchView_submitBackground + * @see #SearchView_suggestionRowLayout + * @see #SearchView_voiceIcon + */ + public static final int[] SearchView={ + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f030077, 0x7f03008f, 0x7f0300a5, 0x7f0300dd, + 0x7f0300f4, 0x7f030109, 0x7f030146, 0x7f030147, + 0x7f030151, 0x7f030152, 0x7f030172, 0x7f030177, + 0x7f0301d2 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#focusable} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a boolean value, such as "true" or + * "false". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
auto10
+ * + * @attr name android:focusable + */ + public static final int SearchView_android_focusable=0; + /** + *

+ * @attr description + * An optional maximum width of the SearchView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth=1; + /** + *

+ * @attr description + * The input type to set on the query text field. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
date14
datetime4
none0
number2
numberDecimal2002
numberPassword12
numberSigned1002
phone3
text1
textAutoComplete10001
textAutoCorrect8001
textCapCharacters1001
textCapSentences4001
textCapWords2001
textEmailAddress21
textEmailSubject31
textFilterb1
textImeMultiLine40001
textLongMessage51
textMultiLine20001
textNoSuggestions80001
textPassword81
textPersonName61
textPhoneticc1
textPostalAddress71
textShortMessage41
textUri11
textVisiblePassword91
textWebEditTexta1
textWebEmailAddressd1
textWebPassworde1
time24
+ * + * @attr name android:inputType + */ + public static final int SearchView_android_inputType=2; + /** + *

+ * @attr description + * The IME options to set on the query text field. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
actionDone6
actionGo2
actionNext5
actionNone1
actionPrevious7
actionSearch3
actionSend4
actionUnspecified0
flagForceAscii80000000
flagNavigateNext8000000
flagNavigatePrevious4000000
flagNoAccessoryAction20000000
flagNoEnterAction40000000
flagNoExtractUi10000000
flagNoFullscreen2000000
flagNoPersonalizedLearning1000000
normal0
+ * + * @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions=3; + /** + *

+ * @attr description + * Close button icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:closeIcon + */ + public static final int SearchView_closeIcon=4; + /** + *

+ * @attr description + * Commit icon shown in the query suggestion row + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:commitIcon + */ + public static final int SearchView_commitIcon=5; + /** + *

+ * @attr description + * Default query hint used when {@code queryHint} is undefined and + * the search view's {@code SearchableInfo} does not provide a hint. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint=6; + /** + *

+ * @attr description + * Go button icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:goIcon + */ + public static final int SearchView_goIcon=7; + /** + *

+ * @attr description + * The default state of the SearchView. If true, it will be iconified when not in + * use and expanded when clicked. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault=8; + /** + *

+ * @attr description + * The layout to use for the search view. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:layout + */ + public static final int SearchView_layout=9; + /** + *

+ * @attr description + * Background for the section containing the search query + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:queryBackground + */ + public static final int SearchView_queryBackground=10; + /** + *

+ * @attr description + * An optional user-defined query hint string to be displayed in the empty query field. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:queryHint + */ + public static final int SearchView_queryHint=11; + /** + *

+ * @attr description + * Search icon displayed as a text field hint + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:searchHintIcon + */ + public static final int SearchView_searchHintIcon=12; + /** + *

+ * @attr description + * Search icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:searchIcon + */ + public static final int SearchView_searchIcon=13; + /** + *

+ * @attr description + * Background for the section containing the action (e.g. voice search) + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:submitBackground + */ + public static final int SearchView_submitBackground=14; + /** + *

+ * @attr description + * Layout for query suggestion rows + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout=15; + /** + *

+ * @attr description + * Voice button icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:voiceIcon + */ + public static final int SearchView_voiceIcon=16; + /** + * Attributes that can be used with a Snackbar. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #Snackbar_snackbarButtonStyle org.muctec.smartfritz:snackbarButtonStyle}
{@link #Snackbar_snackbarStyle org.muctec.smartfritz:snackbarStyle}
+ * @see #Snackbar_snackbarButtonStyle + * @see #Snackbar_snackbarStyle + */ + public static final int[] Snackbar={ + 0x7f03015f, 0x7f030160 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#snackbarButtonStyle} + * attribute's value can be found in the {@link #Snackbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:snackbarButtonStyle + */ + public static final int Snackbar_snackbarButtonStyle=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#snackbarStyle} + * attribute's value can be found in the {@link #Snackbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:snackbarStyle + */ + public static final int Snackbar_snackbarStyle=1; + /** + * Attributes that can be used with a SnackbarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation org.muctec.smartfritz:elevation}Elevation for the action bar itself
{@link #SnackbarLayout_maxActionInlineWidth org.muctec.smartfritz:maxActionInlineWidth}
+ * @see #SnackbarLayout_android_maxWidth + * @see #SnackbarLayout_elevation + * @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout={ + 0x0101011f, 0x7f0300b5, 0x7f030127 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth=0; + /** + *

+ * @attr description + * Elevation for the action bar itself + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:elevation + */ + public static final int SnackbarLayout_elevation=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#maxActionInlineWidth} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth=2; + /** + * Attributes that can be used with a Spinner. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_popupTheme org.muctec.smartfritz:popupTheme}Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar.
+ * @see #Spinner_android_entries + * @see #Spinner_android_popupBackground + * @see #Spinner_android_prompt + * @see #Spinner_android_dropDownWidth + * @see #Spinner_popupTheme + */ + public static final int[] Spinner={ + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f030140 + }; + /** + *

+ * @attr description + * Reference to an array resource that will populate the Spinner. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:entries + */ + public static final int Spinner_android_entries=0; + /** + *

+ * @attr description + * Background drawable to use for the dropdown in spinnerMode="dropdown". + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground=1; + /** + *

+ * @attr description + * The prompt to display when the spinner's dialog is shown. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:prompt + */ + public static final int Spinner_android_prompt=2; + /** + *

+ * @attr description + * Width of the dropdown in spinnerMode="dropdown". + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth=3; + /** + *

+ * @attr description + * Theme to use for the drop-down or dialog popup window. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:popupTheme + */ + public static final int Spinner_popupTheme=4; + /** + * Attributes that can be used with a StateListDrawable. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #StateListDrawable_android_dither android:dither}
{@link #StateListDrawable_android_visible android:visible}
{@link #StateListDrawable_android_variablePadding android:variablePadding}
{@link #StateListDrawable_android_constantSize android:constantSize}
{@link #StateListDrawable_android_enterFadeDuration android:enterFadeDuration}
{@link #StateListDrawable_android_exitFadeDuration android:exitFadeDuration}
+ * @see #StateListDrawable_android_dither + * @see #StateListDrawable_android_visible + * @see #StateListDrawable_android_variablePadding + * @see #StateListDrawable_android_constantSize + * @see #StateListDrawable_android_enterFadeDuration + * @see #StateListDrawable_android_exitFadeDuration + */ + public static final int[] StateListDrawable={ + 0x0101011c, 0x01010194, 0x01010195, 0x01010196, + 0x0101030c, 0x0101030d + }; + /** + *

+ * @attr description + * Enables or disables dithering of the bitmap if the bitmap does not have the + * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + * an RGB 565 screen). + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:dither + */ + public static final int StateListDrawable_android_dither=0; + /** + *

+ * @attr description + * Indicates whether the drawable should be initially visible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int StateListDrawable_android_visible=1; + /** + *

+ * @attr description + * If true, allows the drawable's padding to change based on the + * current state that is selected. If false, the padding will + * stay the same (based on the maximum padding of all the states). + * Enabling this feature requires that the owner of the drawable + * deal with performing layout when the state changes, which is + * often not supported. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:variablePadding + */ + public static final int StateListDrawable_android_variablePadding=2; + /** + *

+ * @attr description + * If true, the drawable's reported internal size will remain + * constant as the state changes; the size is the maximum of all + * of the states. If false, the size will vary based on the + * current state. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:constantSize + */ + public static final int StateListDrawable_android_constantSize=3; + /** + *

+ * @attr description + * Amount of time (in milliseconds) to fade in a new state drawable. + * + *

May be an integer value, such as "100". + * + * @attr name android:enterFadeDuration + */ + public static final int StateListDrawable_android_enterFadeDuration=4; + /** + *

+ * @attr description + * Amount of time (in milliseconds) to fade out an old state drawable. + * + *

May be an integer value, such as "100". + * + * @attr name android:exitFadeDuration + */ + public static final int StateListDrawable_android_exitFadeDuration=5; + /** + * Attributes that can be used with a StateListDrawableItem. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #StateListDrawableItem_android_drawable android:drawable}
+ * @see #StateListDrawableItem_android_drawable + */ + public static final int[] StateListDrawableItem={ + 0x01010199 + }; + /** + *

+ * @attr description + * Reference to a drawable resource to use for the state. If not + * given, the drawable must be defined by the first child tag. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:drawable + */ + public static final int StateListDrawableItem_android_drawable=0; + /** + * Attributes that can be used with a SwitchCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText org.muctec.smartfritz:showText}Whether to draw on/off text.
{@link #SwitchCompat_splitTrack org.muctec.smartfritz:splitTrack}Whether to split the track and leave a gap for the thumb drawable.
{@link #SwitchCompat_switchMinWidth org.muctec.smartfritz:switchMinWidth}Minimum width for the switch component
{@link #SwitchCompat_switchPadding org.muctec.smartfritz:switchPadding}Minimum space between the switch and caption text
{@link #SwitchCompat_switchTextAppearance org.muctec.smartfritz:switchTextAppearance}TextAppearance style for text displayed on the switch thumb.
{@link #SwitchCompat_thumbTextPadding org.muctec.smartfritz:thumbTextPadding}Amount of padding on either side of text within the switch thumb.
{@link #SwitchCompat_thumbTint org.muctec.smartfritz:thumbTint}Tint to apply to the thumb drawable.
{@link #SwitchCompat_thumbTintMode org.muctec.smartfritz:thumbTintMode}Blending mode used to apply the thumb tint.
{@link #SwitchCompat_track org.muctec.smartfritz:track}Drawable to use as the "track" that the switch thumb slides within.
{@link #SwitchCompat_trackTint org.muctec.smartfritz:trackTint}Tint to apply to the track.
{@link #SwitchCompat_trackTintMode org.muctec.smartfritz:trackTintMode}Blending mode used to apply the track tint.
+ * @see #SwitchCompat_android_textOn + * @see #SwitchCompat_android_textOff + * @see #SwitchCompat_android_thumb + * @see #SwitchCompat_showText + * @see #SwitchCompat_splitTrack + * @see #SwitchCompat_switchMinWidth + * @see #SwitchCompat_switchPadding + * @see #SwitchCompat_switchTextAppearance + * @see #SwitchCompat_thumbTextPadding + * @see #SwitchCompat_thumbTint + * @see #SwitchCompat_thumbTintMode + * @see #SwitchCompat_track + * @see #SwitchCompat_trackTint + * @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat={ + 0x01010124, 0x01010125, 0x01010142, 0x7f03015a, + 0x7f030165, 0x7f030178, 0x7f030179, 0x7f03017b, + 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301cc, + 0x7f0301cd, 0x7f0301ce + }; + /** + *

+ * @attr description + * Text to use when the switch is in the checked/"on" state. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn=0; + /** + *

+ * @attr description + * Text to use when the switch is in the unchecked/"off" state. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff=1; + /** + *

+ * @attr description + * Drawable to use as the "thumb" that switches back and forth. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb=2; + /** + *

+ * @attr description + * Whether to draw on/off text. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:showText + */ + public static final int SwitchCompat_showText=3; + /** + *

+ * @attr description + * Whether to split the track and leave a gap for the thumb drawable. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:splitTrack + */ + public static final int SwitchCompat_splitTrack=4; + /** + *

+ * @attr description + * Minimum width for the switch component + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth=5; + /** + *

+ * @attr description + * Minimum space between the switch and caption text + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:switchPadding + */ + public static final int SwitchCompat_switchPadding=6; + /** + *

+ * @attr description + * TextAppearance style for text displayed on the switch thumb. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance=7; + /** + *

+ * @attr description + * Amount of padding on either side of text within the switch thumb. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding=8; + /** + *

+ * @attr description + * Tint to apply to the thumb drawable. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:thumbTint + */ + public static final int SwitchCompat_thumbTint=9; + /** + *

+ * @attr description + * Blending mode used to apply the thumb tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode=10; + /** + *

+ * @attr description + * Drawable to use as the "track" that the switch thumb slides within. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:track + */ + public static final int SwitchCompat_track=11; + /** + *

+ * @attr description + * Tint to apply to the track. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:trackTint + */ + public static final int SwitchCompat_trackTint=12; + /** + *

+ * @attr description + * Blending mode used to apply the track tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:trackTintMode + */ + public static final int SwitchCompat_trackTintMode=13; + /** + * Attributes that can be used with a TabItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ * @see #TabItem_android_icon + * @see #TabItem_android_layout + * @see #TabItem_android_text + */ + public static final int[] TabItem={ + 0x01010002, 0x010100f2, 0x0101014f + }; + /** + *

This symbol is the offset where the {@link android.R.attr#icon} + * attribute's value can be found in the {@link #TabItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:icon + */ + public static final int TabItem_android_icon=0; + /** + *

This symbol is the offset where the {@link android.R.attr#layout} + * attribute's value can be found in the {@link #TabItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:layout + */ + public static final int TabItem_android_layout=1; + /** + *

This symbol is the offset where the {@link android.R.attr#text} + * attribute's value can be found in the {@link #TabItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:text + */ + public static final int TabItem_android_text=2; + /** + * Attributes that can be used with a TabLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #TabLayout_tabBackground org.muctec.smartfritz:tabBackground}
{@link #TabLayout_tabContentStart org.muctec.smartfritz:tabContentStart}
{@link #TabLayout_tabGravity org.muctec.smartfritz:tabGravity}
{@link #TabLayout_tabIconTint org.muctec.smartfritz:tabIconTint}
{@link #TabLayout_tabIconTintMode org.muctec.smartfritz:tabIconTintMode}
{@link #TabLayout_tabIndicator org.muctec.smartfritz:tabIndicator}
{@link #TabLayout_tabIndicatorAnimationDuration org.muctec.smartfritz:tabIndicatorAnimationDuration}
{@link #TabLayout_tabIndicatorColor org.muctec.smartfritz:tabIndicatorColor}
{@link #TabLayout_tabIndicatorFullWidth org.muctec.smartfritz:tabIndicatorFullWidth}
{@link #TabLayout_tabIndicatorGravity org.muctec.smartfritz:tabIndicatorGravity}
{@link #TabLayout_tabIndicatorHeight org.muctec.smartfritz:tabIndicatorHeight}
{@link #TabLayout_tabInlineLabel org.muctec.smartfritz:tabInlineLabel}
{@link #TabLayout_tabMaxWidth org.muctec.smartfritz:tabMaxWidth}
{@link #TabLayout_tabMinWidth org.muctec.smartfritz:tabMinWidth}
{@link #TabLayout_tabMode org.muctec.smartfritz:tabMode}
{@link #TabLayout_tabPadding org.muctec.smartfritz:tabPadding}
{@link #TabLayout_tabPaddingBottom org.muctec.smartfritz:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd org.muctec.smartfritz:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart org.muctec.smartfritz:tabPaddingStart}
{@link #TabLayout_tabPaddingTop org.muctec.smartfritz:tabPaddingTop}
{@link #TabLayout_tabRippleColor org.muctec.smartfritz:tabRippleColor}
{@link #TabLayout_tabSelectedTextColor org.muctec.smartfritz:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance org.muctec.smartfritz:tabTextAppearance}
{@link #TabLayout_tabTextColor org.muctec.smartfritz:tabTextColor}
{@link #TabLayout_tabUnboundedRipple org.muctec.smartfritz:tabUnboundedRipple}
+ * @see #TabLayout_tabBackground + * @see #TabLayout_tabContentStart + * @see #TabLayout_tabGravity + * @see #TabLayout_tabIconTint + * @see #TabLayout_tabIconTintMode + * @see #TabLayout_tabIndicator + * @see #TabLayout_tabIndicatorAnimationDuration + * @see #TabLayout_tabIndicatorColor + * @see #TabLayout_tabIndicatorFullWidth + * @see #TabLayout_tabIndicatorGravity + * @see #TabLayout_tabIndicatorHeight + * @see #TabLayout_tabInlineLabel + * @see #TabLayout_tabMaxWidth + * @see #TabLayout_tabMinWidth + * @see #TabLayout_tabMode + * @see #TabLayout_tabPadding + * @see #TabLayout_tabPaddingBottom + * @see #TabLayout_tabPaddingEnd + * @see #TabLayout_tabPaddingStart + * @see #TabLayout_tabPaddingTop + * @see #TabLayout_tabRippleColor + * @see #TabLayout_tabSelectedTextColor + * @see #TabLayout_tabTextAppearance + * @see #TabLayout_tabTextColor + * @see #TabLayout_tabUnboundedRipple + */ + public static final int[] TabLayout={ + 0x7f03017c, 0x7f03017d, 0x7f03017e, 0x7f03017f, + 0x7f030180, 0x7f030181, 0x7f030182, 0x7f030183, + 0x7f030184, 0x7f030185, 0x7f030186, 0x7f030187, + 0x7f030188, 0x7f030189, 0x7f03018a, 0x7f03018b, + 0x7f03018c, 0x7f03018d, 0x7f03018e, 0x7f03018f, + 0x7f030190, 0x7f030191, 0x7f030193, 0x7f030194, + 0x7f030195 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabBackground} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:tabBackground + */ + public static final int TabLayout_tabBackground=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabContentStart} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabContentStart + */ + public static final int TabLayout_tabContentStart=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabGravity} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
center1
fill0
+ * + * @attr name org.muctec.smartfritz:tabGravity + */ + public static final int TabLayout_tabGravity=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIconTint} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tabIconTint + */ + public static final int TabLayout_tabIconTint=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIconTintMode} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
+ * + * @attr name org.muctec.smartfritz:tabIconTintMode + */ + public static final int TabLayout_tabIconTintMode=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIndicator} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:tabIndicator + */ + public static final int TabLayout_tabIndicator=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIndicatorAnimationDuration} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:tabIndicatorAnimationDuration + */ + public static final int TabLayout_tabIndicatorAnimationDuration=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIndicatorColor} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIndicatorFullWidth} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:tabIndicatorFullWidth + */ + public static final int TabLayout_tabIndicatorFullWidth=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIndicatorGravity} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom0
center1
stretch3
top2
+ * + * @attr name org.muctec.smartfritz:tabIndicatorGravity + */ + public static final int TabLayout_tabIndicatorGravity=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIndicatorHeight} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabInlineLabel} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:tabInlineLabel + */ + public static final int TabLayout_tabInlineLabel=11; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabMaxWidth} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabMinWidth} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabMinWidth + */ + public static final int TabLayout_tabMinWidth=13; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabMode} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
fixed1
scrollable0
+ * + * @attr name org.muctec.smartfritz:tabMode + */ + public static final int TabLayout_tabMode=14; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabPadding} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabPadding + */ + public static final int TabLayout_tabPadding=15; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabPaddingBottom} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom=16; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabPaddingEnd} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd=17; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabPaddingStart} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart=18; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabPaddingTop} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop=19; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabRippleColor} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tabRippleColor + */ + public static final int TabLayout_tabRippleColor=20; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabSelectedTextColor} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor=21; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabTextAppearance} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance=22; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabTextColor} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tabTextColor + */ + public static final int TabLayout_tabTextColor=23; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabUnboundedRipple} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:tabUnboundedRipple + */ + public static final int TabLayout_tabUnboundedRipple=24; + /** + * Attributes that can be used with a TextAppearance. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_fontFamily org.muctec.smartfritz:fontFamily}The attribute for the font family.
{@link #TextAppearance_textAllCaps org.muctec.smartfritz:textAllCaps}Present the text in ALL CAPS.
+ * @see #TextAppearance_android_textSize + * @see #TextAppearance_android_typeface + * @see #TextAppearance_android_textStyle + * @see #TextAppearance_android_textColor + * @see #TextAppearance_android_textColorHint + * @see #TextAppearance_android_textColorLink + * @see #TextAppearance_android_shadowColor + * @see #TextAppearance_android_shadowDx + * @see #TextAppearance_android_shadowDy + * @see #TextAppearance_android_shadowRadius + * @see #TextAppearance_android_fontFamily + * @see #TextAppearance_fontFamily + * @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance={ + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f0300d1, + 0x7f030196 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textSize} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:textSize + */ + public static final int TextAppearance_android_textSize=0; + /** + *

This symbol is the offset where the {@link android.R.attr#typeface} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
monospace3
normal0
sans1
serif2
+ * + * @attr name android:typeface + */ + public static final int TextAppearance_android_typeface=1; + /** + *

This symbol is the offset where the {@link android.R.attr#textStyle} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
bold1
italic2
normal0
+ * + * @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle=2; + /** + *

This symbol is the offset where the {@link android.R.attr#textColor} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColor + */ + public static final int TextAppearance_android_textColor=3; + /** + *

This symbol is the offset where the {@link android.R.attr#textColorHint} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint=4; + /** + *

This symbol is the offset where the {@link android.R.attr#textColorLink} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink=5; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowColor} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor=6; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowDx} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx=7; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowDy} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy=8; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowRadius} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius=9; + /** + *

This symbol is the offset where the {@link android.R.attr#fontFamily} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily=10; + /** + *

+ * @attr description + * The attribute for the font family. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:fontFamily + */ + public static final int TextAppearance_fontFamily=11; + /** + *

+ * @attr description + * Present the text in ALL CAPS. This may use a small-caps form when available. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:textAllCaps + */ + public static final int TextAppearance_textAllCaps=12; + /** + * Attributes that can be used with a TextInputLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_boxBackgroundColor org.muctec.smartfritz:boxBackgroundColor}
{@link #TextInputLayout_boxBackgroundMode org.muctec.smartfritz:boxBackgroundMode}
{@link #TextInputLayout_boxCollapsedPaddingTop org.muctec.smartfritz:boxCollapsedPaddingTop}
{@link #TextInputLayout_boxCornerRadiusBottomEnd org.muctec.smartfritz:boxCornerRadiusBottomEnd}
{@link #TextInputLayout_boxCornerRadiusBottomStart org.muctec.smartfritz:boxCornerRadiusBottomStart}
{@link #TextInputLayout_boxCornerRadiusTopEnd org.muctec.smartfritz:boxCornerRadiusTopEnd}
{@link #TextInputLayout_boxCornerRadiusTopStart org.muctec.smartfritz:boxCornerRadiusTopStart}
{@link #TextInputLayout_boxStrokeColor org.muctec.smartfritz:boxStrokeColor}
{@link #TextInputLayout_boxStrokeWidth org.muctec.smartfritz:boxStrokeWidth}
{@link #TextInputLayout_counterEnabled org.muctec.smartfritz:counterEnabled}
{@link #TextInputLayout_counterMaxLength org.muctec.smartfritz:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance org.muctec.smartfritz:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance org.muctec.smartfritz:counterTextAppearance}
{@link #TextInputLayout_errorEnabled org.muctec.smartfritz:errorEnabled}
{@link #TextInputLayout_errorTextAppearance org.muctec.smartfritz:errorTextAppearance}
{@link #TextInputLayout_helperText org.muctec.smartfritz:helperText}
{@link #TextInputLayout_helperTextEnabled org.muctec.smartfritz:helperTextEnabled}
{@link #TextInputLayout_helperTextTextAppearance org.muctec.smartfritz:helperTextTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled org.muctec.smartfritz:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled org.muctec.smartfritz:hintEnabled}
{@link #TextInputLayout_hintTextAppearance org.muctec.smartfritz:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription org.muctec.smartfritz:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable org.muctec.smartfritz:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled org.muctec.smartfritz:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint org.muctec.smartfritz:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode org.muctec.smartfritz:passwordToggleTintMode}
+ * @see #TextInputLayout_android_textColorHint + * @see #TextInputLayout_android_hint + * @see #TextInputLayout_boxBackgroundColor + * @see #TextInputLayout_boxBackgroundMode + * @see #TextInputLayout_boxCollapsedPaddingTop + * @see #TextInputLayout_boxCornerRadiusBottomEnd + * @see #TextInputLayout_boxCornerRadiusBottomStart + * @see #TextInputLayout_boxCornerRadiusTopEnd + * @see #TextInputLayout_boxCornerRadiusTopStart + * @see #TextInputLayout_boxStrokeColor + * @see #TextInputLayout_boxStrokeWidth + * @see #TextInputLayout_counterEnabled + * @see #TextInputLayout_counterMaxLength + * @see #TextInputLayout_counterOverflowTextAppearance + * @see #TextInputLayout_counterTextAppearance + * @see #TextInputLayout_errorEnabled + * @see #TextInputLayout_errorTextAppearance + * @see #TextInputLayout_helperText + * @see #TextInputLayout_helperTextEnabled + * @see #TextInputLayout_helperTextTextAppearance + * @see #TextInputLayout_hintAnimationEnabled + * @see #TextInputLayout_hintEnabled + * @see #TextInputLayout_hintTextAppearance + * @see #TextInputLayout_passwordToggleContentDescription + * @see #TextInputLayout_passwordToggleDrawable + * @see #TextInputLayout_passwordToggleEnabled + * @see #TextInputLayout_passwordToggleTint + * @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout={ + 0x0101009a, 0x01010150, 0x7f030043, 0x7f030044, + 0x7f030045, 0x7f030046, 0x7f030047, 0x7f030048, + 0x7f030049, 0x7f03004a, 0x7f03004b, 0x7f0300a0, + 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f0300b8, + 0x7f0300b9, 0x7f0300e0, 0x7f0300e1, 0x7f0300e2, + 0x7f0300e6, 0x7f0300e7, 0x7f0300e8, 0x7f03013a, + 0x7f03013b, 0x7f03013c, 0x7f03013d, 0x7f03013e + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textColorHint} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint=0; + /** + *

This symbol is the offset where the {@link android.R.attr#hint} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:hint + */ + public static final int TextInputLayout_android_hint=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxBackgroundColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:boxBackgroundColor + */ + public static final int TextInputLayout_boxBackgroundColor=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxBackgroundMode} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
filled1
none0
outline2
+ * + * @attr name org.muctec.smartfritz:boxBackgroundMode + */ + public static final int TextInputLayout_boxBackgroundMode=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxCollapsedPaddingTop} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:boxCollapsedPaddingTop + */ + public static final int TextInputLayout_boxCollapsedPaddingTop=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxCornerRadiusBottomEnd} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:boxCornerRadiusBottomEnd + */ + public static final int TextInputLayout_boxCornerRadiusBottomEnd=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxCornerRadiusBottomStart} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:boxCornerRadiusBottomStart + */ + public static final int TextInputLayout_boxCornerRadiusBottomStart=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxCornerRadiusTopEnd} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:boxCornerRadiusTopEnd + */ + public static final int TextInputLayout_boxCornerRadiusTopEnd=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxCornerRadiusTopStart} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:boxCornerRadiusTopStart + */ + public static final int TextInputLayout_boxCornerRadiusTopStart=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxStrokeColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:boxStrokeColor + */ + public static final int TextInputLayout_boxStrokeColor=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxStrokeWidth} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:boxStrokeWidth + */ + public static final int TextInputLayout_boxStrokeWidth=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#counterEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:counterEnabled + */ + public static final int TextInputLayout_counterEnabled=11; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#counterMaxLength} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#counterOverflowTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance=13; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#counterTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance=14; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#errorEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:errorEnabled + */ + public static final int TextInputLayout_errorEnabled=15; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#errorTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance=16; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#helperText} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:helperText + */ + public static final int TextInputLayout_helperText=17; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#helperTextEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:helperTextEnabled + */ + public static final int TextInputLayout_helperTextEnabled=18; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#helperTextTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:helperTextTextAppearance + */ + public static final int TextInputLayout_helperTextTextAppearance=19; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hintAnimationEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled=20; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hintEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:hintEnabled + */ + public static final int TextInputLayout_hintEnabled=21; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hintTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance=22; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#passwordToggleContentDescription} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription=23; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#passwordToggleDrawable} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable=24; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#passwordToggleEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled=25; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#passwordToggleTint} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint=26; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#passwordToggleTintMode} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
+ * + * @attr name org.muctec.smartfritz:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode=27; + /** + * Attributes that can be used with a ThemeEnforcement. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ThemeEnforcement_android_textAppearance android:textAppearance}
{@link #ThemeEnforcement_enforceMaterialTheme org.muctec.smartfritz:enforceMaterialTheme}
{@link #ThemeEnforcement_enforceTextAppearance org.muctec.smartfritz:enforceTextAppearance}
+ * @see #ThemeEnforcement_android_textAppearance + * @see #ThemeEnforcement_enforceMaterialTheme + * @see #ThemeEnforcement_enforceTextAppearance + */ + public static final int[] ThemeEnforcement={ + 0x01010034, 0x7f0300b6, 0x7f0300b7 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #ThemeEnforcement} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int ThemeEnforcement_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#enforceMaterialTheme} + * attribute's value can be found in the {@link #ThemeEnforcement} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:enforceMaterialTheme + */ + public static final int ThemeEnforcement_enforceMaterialTheme=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#enforceTextAppearance} + * attribute's value can be found in the {@link #ThemeEnforcement} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:enforceTextAppearance + */ + public static final int ThemeEnforcement_enforceTextAppearance=2; + /** + * Attributes that can be used with a Toolbar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity org.muctec.smartfritz:buttonGravity}
{@link #Toolbar_collapseContentDescription org.muctec.smartfritz:collapseContentDescription}Text to set as the content description for the collapse button.
{@link #Toolbar_collapseIcon org.muctec.smartfritz:collapseIcon}Icon drawable to use for the collapse button.
{@link #Toolbar_contentInsetEnd org.muctec.smartfritz:contentInsetEnd}Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetEndWithActions org.muctec.smartfritz:contentInsetEndWithActions}Minimum inset for content views within a bar when actions from a menu + * are present.
{@link #Toolbar_contentInsetLeft org.muctec.smartfritz:contentInsetLeft}Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetRight org.muctec.smartfritz:contentInsetRight}Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetStart org.muctec.smartfritz:contentInsetStart}Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetStartWithNavigation org.muctec.smartfritz:contentInsetStartWithNavigation}Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button.
{@link #Toolbar_logo org.muctec.smartfritz:logo}Specifies the drawable used for the application logo.
{@link #Toolbar_logoDescription org.muctec.smartfritz:logoDescription}A content description string to describe the appearance of the + * associated logo image.
{@link #Toolbar_maxButtonHeight org.muctec.smartfritz:maxButtonHeight}
{@link #Toolbar_navigationContentDescription org.muctec.smartfritz:navigationContentDescription}Text to set as the content description for the navigation button + * located at the start of the toolbar.
{@link #Toolbar_navigationIcon org.muctec.smartfritz:navigationIcon}Icon drawable to use for the navigation button located at + * the start of the toolbar.
{@link #Toolbar_popupTheme org.muctec.smartfritz:popupTheme}Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar.
{@link #Toolbar_subtitle org.muctec.smartfritz:subtitle}Specifies subtitle text used for navigationMode="normal"
{@link #Toolbar_subtitleTextAppearance org.muctec.smartfritz:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor org.muctec.smartfritz:subtitleTextColor}A color to apply to the subtitle string.
{@link #Toolbar_title org.muctec.smartfritz:title}
{@link #Toolbar_titleMargin org.muctec.smartfritz:titleMargin}Specifies extra space on the left, start, right and end sides + * of the toolbar's title.
{@link #Toolbar_titleMarginBottom org.muctec.smartfritz:titleMarginBottom}Specifies extra space on the bottom side of the toolbar's title.
{@link #Toolbar_titleMarginEnd org.muctec.smartfritz:titleMarginEnd}Specifies extra space on the end side of the toolbar's title.
{@link #Toolbar_titleMarginStart org.muctec.smartfritz:titleMarginStart}Specifies extra space on the start side of the toolbar's title.
{@link #Toolbar_titleMarginTop org.muctec.smartfritz:titleMarginTop}Specifies extra space on the top side of the toolbar's title.
{@link #Toolbar_titleMargins org.muctec.smartfritz:titleMargins}{@deprecated Use titleMargin}
{@link #Toolbar_titleTextAppearance org.muctec.smartfritz:titleTextAppearance}
{@link #Toolbar_titleTextColor org.muctec.smartfritz:titleTextColor}A color to apply to the title string.
+ * @see #Toolbar_android_gravity + * @see #Toolbar_android_minHeight + * @see #Toolbar_buttonGravity + * @see #Toolbar_collapseContentDescription + * @see #Toolbar_collapseIcon + * @see #Toolbar_contentInsetEnd + * @see #Toolbar_contentInsetEndWithActions + * @see #Toolbar_contentInsetLeft + * @see #Toolbar_contentInsetRight + * @see #Toolbar_contentInsetStart + * @see #Toolbar_contentInsetStartWithNavigation + * @see #Toolbar_logo + * @see #Toolbar_logoDescription + * @see #Toolbar_maxButtonHeight + * @see #Toolbar_navigationContentDescription + * @see #Toolbar_navigationIcon + * @see #Toolbar_popupTheme + * @see #Toolbar_subtitle + * @see #Toolbar_subtitleTextAppearance + * @see #Toolbar_subtitleTextColor + * @see #Toolbar_title + * @see #Toolbar_titleMargin + * @see #Toolbar_titleMarginBottom + * @see #Toolbar_titleMarginEnd + * @see #Toolbar_titleMarginStart + * @see #Toolbar_titleMarginTop + * @see #Toolbar_titleMargins + * @see #Toolbar_titleTextAppearance + * @see #Toolbar_titleTextColor + */ + @Deprecated + public static final int[] Toolbar={ + 0x010100af, 0x01010140, 0x7f030051, 0x7f03007f, + 0x7f030080, 0x7f030091, 0x7f030092, 0x7f030093, + 0x7f030094, 0x7f030095, 0x7f030096, 0x7f030123, + 0x7f030124, 0x7f030128, 0x7f03012d, 0x7f03012e, + 0x7f030140, 0x7f030173, 0x7f030174, 0x7f030175, + 0x7f0301bb, 0x7f0301bd, 0x7f0301be, 0x7f0301bf, + 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, + 0x7f0301c4 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#gravity} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:gravity + */ + public static final int Toolbar_android_gravity=0; + /** + *

This symbol is the offset where the {@link android.R.attr#minHeight} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#buttonGravity} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ * + * @attr name org.muctec.smartfritz:buttonGravity + */ + public static final int Toolbar_buttonGravity=2; + /** + *

+ * @attr description + * Text to set as the content description for the collapse button. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription=3; + /** + *

+ * @attr description + * Icon drawable to use for the collapse button. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:collapseIcon + */ + public static final int Toolbar_collapseIcon=4; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd=5; + /** + *

+ * @attr description + * Minimum inset for content views within a bar when actions from a menu + * are present. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions=6; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft=7; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetRight + */ + public static final int Toolbar_contentInsetRight=8; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetStart + */ + public static final int Toolbar_contentInsetStart=9; + /** + *

+ * @attr description + * Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation=10; + /** + *

+ * @attr description + * Drawable to set as the logo that appears at the starting side of + * the Toolbar, just after the navigation button. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:logo + */ + public static final int Toolbar_logo=11; + /** + *

+ * @attr description + * A content description string to describe the appearance of the + * associated logo image. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:logoDescription + */ + public static final int Toolbar_logoDescription=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#maxButtonHeight} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight=13; + /** + *

+ * @attr description + * Text to set as the content description for the navigation button + * located at the start of the toolbar. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription=14; + /** + *

+ * @attr description + * Icon drawable to use for the navigation button located at + * the start of the toolbar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:navigationIcon + */ + public static final int Toolbar_navigationIcon=15; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate popups + * shown by widgets in the toolbar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:popupTheme + */ + public static final int Toolbar_popupTheme=16; + /** + *

+ * @attr description + * Specifies subtitle text used for navigationMode="normal" + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:subtitle + */ + public static final int Toolbar_subtitle=17; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#subtitleTextAppearance} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance=18; + /** + *

+ * @attr description + * A color to apply to the subtitle string. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor=19; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#title} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:title + */ + public static final int Toolbar_title=20; + /** + *

+ * @attr description + * Specifies extra space on the left, start, right and end sides + * of the toolbar's title. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:titleMargin + */ + public static final int Toolbar_titleMargin=21; + /** + *

+ * @attr description + * Specifies extra space on the bottom side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom=22; + /** + *

+ * @attr description + * Specifies extra space on the end side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd=23; + /** + *

+ * @attr description + * Specifies extra space on the start side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:titleMarginStart + */ + public static final int Toolbar_titleMarginStart=24; + /** + *

+ * @attr description + * Specifies extra space on the top side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:titleMarginTop + */ + public static final int Toolbar_titleMarginTop=25; + /** + *

+ * @attr description + * {@deprecated Use titleMargin} + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:titleMargins + */ + @Deprecated + public static final int Toolbar_titleMargins=26; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#titleTextAppearance} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance=27; + /** + *

+ * @attr description + * A color to apply to the title string. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:titleTextColor + */ + public static final int Toolbar_titleTextColor=28; + /** + * Attributes that can be used with a View. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #View_android_theme android:theme}
{@link #View_android_focusable android:focusable}
{@link #View_paddingEnd org.muctec.smartfritz:paddingEnd}Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
{@link #View_paddingStart org.muctec.smartfritz:paddingStart}Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
{@link #View_theme org.muctec.smartfritz:theme}Deprecated.
+ * @see #View_android_theme + * @see #View_android_focusable + * @see #View_paddingEnd + * @see #View_paddingStart + * @see #View_theme + */ + public static final int[] View={ + 0x01010000, 0x010100da, 0x7f030134, 0x7f030135, + 0x7f0301b1 + }; + /** + *

+ * @attr description + * Specifies a theme override for a view. When a theme override is set, the + * view will be inflated using a {@link android.content.Context} themed with + * the specified resource. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:theme + */ + public static final int View_android_theme=0; + /** + *

+ * @attr description + * Boolean that controls whether a view can take focus. By default the user can not + * move focus to a view; by setting this attribute to true the view is + * allowed to take focus. This value does not impact the behavior of + * directly calling {@link android.view.View#requestFocus}, which will + * always request focus regardless of this view. It only impacts where + * focus navigation will try to move focus. + * + *

May be a boolean value, such as "true" or + * "false". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
auto10
+ * + * @attr name android:focusable + */ + public static final int View_android_focusable=1; + /** + *

+ * @attr description + * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:paddingEnd + */ + public static final int View_paddingEnd=2; + /** + *

+ * @attr description + * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:paddingStart + */ + public static final int View_paddingStart=3; + /** + *

+ * @attr description + * Deprecated. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:theme + */ + public static final int View_theme=4; + /** + * Attributes that can be used with a ViewBackgroundHelper. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint org.muctec.smartfritz:backgroundTint}Tint to apply to the background.
{@link #ViewBackgroundHelper_backgroundTintMode org.muctec.smartfritz:backgroundTintMode}Blending mode used to apply the background tint.
+ * @see #ViewBackgroundHelper_android_background + * @see #ViewBackgroundHelper_backgroundTint + * @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper={ + 0x010100d4, 0x7f030034, 0x7f030035 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#background} + * attribute's value can be found in the {@link #ViewBackgroundHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background=0; + /** + *

+ * @attr description + * Tint to apply to the background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint=1; + /** + *

+ * @attr description + * Blending mode used to apply the background tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode=2; + /** + * Attributes that can be used with a ViewStubCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_layout android:layout}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
+ * @see #ViewStubCompat_android_id + * @see #ViewStubCompat_android_layout + * @see #ViewStubCompat_android_inflatedId + */ + public static final int[] ViewStubCompat={ + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #ViewStubCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int ViewStubCompat_android_id=0; + /** + *

+ * @attr description + * Supply an identifier for the layout resource to inflate when the ViewStub + * becomes visible or when forced to do so. The layout resource must be a + * valid reference to a layout. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:layout + */ + public static final int ViewStubCompat_android_layout=1; + /** + *

+ * @attr description + * Overrides the id of the inflated View with this value. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId=2; + } + public static final class xml { + public static final int network_security_config=0x7f100000; + } +} \ No newline at end of file diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/core/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/core/R.java new file mode 100644 index 0000000000000000000000000000000000000000..872d786c26c1973f7d498187a8824c300cad676e --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/core/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.arch.core; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/lifecycle/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/lifecycle/R.java new file mode 100644 index 0000000000000000000000000000000000000000..b0c852ec52ffeffd6fe0a4f0ff54e9c8fc9358cb --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/lifecycle/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.arch.lifecycle; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/lifecycle/livedata/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/lifecycle/livedata/R.java new file mode 100644 index 0000000000000000000000000000000000000000..12c2646438a85bde47818785183e07283e120b2e --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/lifecycle/livedata/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.arch.lifecycle.livedata; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/lifecycle/livedata/core/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/lifecycle/livedata/core/R.java new file mode 100644 index 0000000000000000000000000000000000000000..2c19ff7cd726c490a5a6bfd98ed161ba50756f6a --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/lifecycle/livedata/core/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.arch.lifecycle.livedata.core; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/lifecycle/viewmodel/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/lifecycle/viewmodel/R.java new file mode 100644 index 0000000000000000000000000000000000000000..a66555ad8686738901db3139ee85ccf21f5b3e23 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/arch/lifecycle/viewmodel/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.arch.lifecycle.viewmodel; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/asynclayoutinflater/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/asynclayoutinflater/R.java new file mode 100644 index 0000000000000000000000000000000000000000..3fd6653f6dc9d62a3aae38cf67c9b5cebc9046a1 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/asynclayoutinflater/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.asynclayoutinflater; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/compat/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/compat/R.java new file mode 100644 index 0000000000000000000000000000000000000000..ed6b9764d6b5e54ff8d29425d4b32523ddb0aedc --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/compat/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.compat; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/coordinatorlayout/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/coordinatorlayout/R.java new file mode 100644 index 0000000000000000000000000000000000000000..3a183b8d9650a288d00d1e4ac870ed9c8e6e6cf7 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/coordinatorlayout/R.java @@ -0,0 +1,211 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.coordinatorlayout; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int keylines = 0x7f030106; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int statusBarBackground = 0x7f03016d; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int chronometer = 0x7f080029; + public static final int end = 0x7f08003c; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int start = 0x7f080098; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int top = 0x7f0800ae; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/coreui/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/coreui/R.java new file mode 100644 index 0000000000000000000000000000000000000000..f371f89a1e12ca66ce011d7e5fe4c6fe206d75ff --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/coreui/R.java @@ -0,0 +1,211 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.coreui; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int keylines = 0x7f030106; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int statusBarBackground = 0x7f03016d; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int chronometer = 0x7f080029; + public static final int end = 0x7f08003c; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int start = 0x7f080098; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int top = 0x7f0800ae; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/coreutils/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/coreutils/R.java new file mode 100644 index 0000000000000000000000000000000000000000..e71f5abc749dd9ef4878b9f4678ec8b0b2d62fc8 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/coreutils/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.coreutils; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/cursoradapter/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/cursoradapter/R.java new file mode 100644 index 0000000000000000000000000000000000000000..eeba21161dfadbde9cb6f4287d3a530428dd4e33 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/cursoradapter/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.cursoradapter; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/customview/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/customview/R.java new file mode 100644 index 0000000000000000000000000000000000000000..ed5959c29fead46cefb05bb31ef0e8a30db05645 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/customview/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.customview; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/design/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/design/R.java new file mode 100644 index 0000000000000000000000000000000000000000..08907b9935b2f6557c7c1f32bbe41a0a94faba05 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/design/R.java @@ -0,0 +1,2513 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.design; + +public final class R { + private R() {} + + public static final class anim { + private anim() {} + + public static final int abc_fade_in = 0x7f010000; + public static final int abc_fade_out = 0x7f010001; + public static final int abc_grow_fade_in_from_bottom = 0x7f010002; + public static final int abc_popup_enter = 0x7f010003; + public static final int abc_popup_exit = 0x7f010004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; + public static final int abc_slide_in_bottom = 0x7f010006; + public static final int abc_slide_in_top = 0x7f010007; + public static final int abc_slide_out_bottom = 0x7f010008; + public static final int abc_slide_out_top = 0x7f010009; + public static final int abc_tooltip_enter = 0x7f01000a; + public static final int abc_tooltip_exit = 0x7f01000b; + public static final int design_bottom_sheet_slide_in = 0x7f01000c; + public static final int design_bottom_sheet_slide_out = 0x7f01000d; + public static final int design_snackbar_in = 0x7f01000e; + public static final int design_snackbar_out = 0x7f01000f; + } + public static final class animator { + private animator() {} + + public static final int design_appbar_state_list_animator = 0x7f020000; + public static final int design_fab_hide_motion_spec = 0x7f020001; + public static final int design_fab_show_motion_spec = 0x7f020002; + public static final int mtrl_btn_state_list_anim = 0x7f020003; + public static final int mtrl_btn_unelevated_state_list_anim = 0x7f020004; + public static final int mtrl_chip_state_list_anim = 0x7f020005; + public static final int mtrl_fab_hide_motion_spec = 0x7f020006; + public static final int mtrl_fab_show_motion_spec = 0x7f020007; + public static final int mtrl_fab_transformation_sheet_collapse_spec = 0x7f020008; + public static final int mtrl_fab_transformation_sheet_expand_spec = 0x7f020009; + } + public static final class attr { + private attr() {} + + public static final int actionBarDivider = 0x7f030000; + public static final int actionBarItemBackground = 0x7f030001; + public static final int actionBarPopupTheme = 0x7f030002; + public static final int actionBarSize = 0x7f030003; + public static final int actionBarSplitStyle = 0x7f030004; + public static final int actionBarStyle = 0x7f030005; + public static final int actionBarTabBarStyle = 0x7f030006; + public static final int actionBarTabStyle = 0x7f030007; + public static final int actionBarTabTextStyle = 0x7f030008; + public static final int actionBarTheme = 0x7f030009; + public static final int actionBarWidgetTheme = 0x7f03000a; + public static final int actionButtonStyle = 0x7f03000b; + public static final int actionDropDownStyle = 0x7f03000c; + public static final int actionLayout = 0x7f03000d; + public static final int actionMenuTextAppearance = 0x7f03000e; + public static final int actionMenuTextColor = 0x7f03000f; + public static final int actionModeBackground = 0x7f030010; + public static final int actionModeCloseButtonStyle = 0x7f030011; + public static final int actionModeCloseDrawable = 0x7f030012; + public static final int actionModeCopyDrawable = 0x7f030013; + public static final int actionModeCutDrawable = 0x7f030014; + public static final int actionModeFindDrawable = 0x7f030015; + public static final int actionModePasteDrawable = 0x7f030016; + public static final int actionModePopupWindowStyle = 0x7f030017; + public static final int actionModeSelectAllDrawable = 0x7f030018; + public static final int actionModeShareDrawable = 0x7f030019; + public static final int actionModeSplitBackground = 0x7f03001a; + public static final int actionModeStyle = 0x7f03001b; + public static final int actionModeWebSearchDrawable = 0x7f03001c; + public static final int actionOverflowButtonStyle = 0x7f03001d; + public static final int actionOverflowMenuStyle = 0x7f03001e; + public static final int actionProviderClass = 0x7f03001f; + public static final int actionViewClass = 0x7f030020; + public static final int activityChooserViewStyle = 0x7f030021; + public static final int alertDialogButtonGroupStyle = 0x7f030022; + public static final int alertDialogCenterButtons = 0x7f030023; + public static final int alertDialogStyle = 0x7f030024; + public static final int alertDialogTheme = 0x7f030025; + public static final int allowStacking = 0x7f030026; + public static final int alpha = 0x7f030027; + public static final int alphabeticModifiers = 0x7f030028; + public static final int arrowHeadLength = 0x7f030029; + public static final int arrowShaftLength = 0x7f03002a; + public static final int autoCompleteTextViewStyle = 0x7f03002b; + public static final int autoSizeMaxTextSize = 0x7f03002c; + public static final int autoSizeMinTextSize = 0x7f03002d; + public static final int autoSizePresetSizes = 0x7f03002e; + public static final int autoSizeStepGranularity = 0x7f03002f; + public static final int autoSizeTextType = 0x7f030030; + public static final int background = 0x7f030031; + public static final int backgroundSplit = 0x7f030032; + public static final int backgroundStacked = 0x7f030033; + public static final int backgroundTint = 0x7f030034; + public static final int backgroundTintMode = 0x7f030035; + public static final int barLength = 0x7f030036; + public static final int behavior_autoHide = 0x7f030037; + public static final int behavior_fitToContents = 0x7f030038; + public static final int behavior_hideable = 0x7f030039; + public static final int behavior_overlapTop = 0x7f03003a; + public static final int behavior_peekHeight = 0x7f03003b; + public static final int behavior_skipCollapsed = 0x7f03003c; + public static final int borderWidth = 0x7f03003d; + public static final int borderlessButtonStyle = 0x7f03003e; + public static final int bottomAppBarStyle = 0x7f03003f; + public static final int bottomNavigationStyle = 0x7f030040; + public static final int bottomSheetDialogTheme = 0x7f030041; + public static final int bottomSheetStyle = 0x7f030042; + public static final int boxBackgroundColor = 0x7f030043; + public static final int boxBackgroundMode = 0x7f030044; + public static final int boxCollapsedPaddingTop = 0x7f030045; + public static final int boxCornerRadiusBottomEnd = 0x7f030046; + public static final int boxCornerRadiusBottomStart = 0x7f030047; + public static final int boxCornerRadiusTopEnd = 0x7f030048; + public static final int boxCornerRadiusTopStart = 0x7f030049; + public static final int boxStrokeColor = 0x7f03004a; + public static final int boxStrokeWidth = 0x7f03004b; + public static final int buttonBarButtonStyle = 0x7f03004c; + public static final int buttonBarNegativeButtonStyle = 0x7f03004d; + public static final int buttonBarNeutralButtonStyle = 0x7f03004e; + public static final int buttonBarPositiveButtonStyle = 0x7f03004f; + public static final int buttonBarStyle = 0x7f030050; + public static final int buttonGravity = 0x7f030051; + public static final int buttonIconDimen = 0x7f030052; + public static final int buttonPanelSideLayout = 0x7f030053; + public static final int buttonStyle = 0x7f030054; + public static final int buttonStyleSmall = 0x7f030055; + public static final int buttonTint = 0x7f030056; + public static final int buttonTintMode = 0x7f030057; + public static final int cardBackgroundColor = 0x7f030058; + public static final int cardCornerRadius = 0x7f030059; + public static final int cardElevation = 0x7f03005a; + public static final int cardMaxElevation = 0x7f03005b; + public static final int cardPreventCornerOverlap = 0x7f03005c; + public static final int cardUseCompatPadding = 0x7f03005d; + public static final int cardViewStyle = 0x7f03005e; + public static final int checkboxStyle = 0x7f03005f; + public static final int checkedChip = 0x7f030060; + public static final int checkedIcon = 0x7f030061; + public static final int checkedIconEnabled = 0x7f030062; + public static final int checkedIconVisible = 0x7f030063; + public static final int checkedTextViewStyle = 0x7f030064; + public static final int chipBackgroundColor = 0x7f030065; + public static final int chipCornerRadius = 0x7f030066; + public static final int chipEndPadding = 0x7f030067; + public static final int chipGroupStyle = 0x7f030068; + public static final int chipIcon = 0x7f030069; + public static final int chipIconEnabled = 0x7f03006a; + public static final int chipIconSize = 0x7f03006b; + public static final int chipIconTint = 0x7f03006c; + public static final int chipIconVisible = 0x7f03006d; + public static final int chipMinHeight = 0x7f03006e; + public static final int chipSpacing = 0x7f03006f; + public static final int chipSpacingHorizontal = 0x7f030070; + public static final int chipSpacingVertical = 0x7f030071; + public static final int chipStandaloneStyle = 0x7f030072; + public static final int chipStartPadding = 0x7f030073; + public static final int chipStrokeColor = 0x7f030074; + public static final int chipStrokeWidth = 0x7f030075; + public static final int chipStyle = 0x7f030076; + public static final int closeIcon = 0x7f030077; + public static final int closeIconEnabled = 0x7f030078; + public static final int closeIconEndPadding = 0x7f030079; + public static final int closeIconSize = 0x7f03007a; + public static final int closeIconStartPadding = 0x7f03007b; + public static final int closeIconTint = 0x7f03007c; + public static final int closeIconVisible = 0x7f03007d; + public static final int closeItemLayout = 0x7f03007e; + public static final int collapseContentDescription = 0x7f03007f; + public static final int collapseIcon = 0x7f030080; + public static final int collapsedTitleGravity = 0x7f030081; + public static final int collapsedTitleTextAppearance = 0x7f030082; + public static final int color = 0x7f030083; + public static final int colorAccent = 0x7f030084; + public static final int colorBackgroundFloating = 0x7f030085; + public static final int colorButtonNormal = 0x7f030086; + public static final int colorControlActivated = 0x7f030087; + public static final int colorControlHighlight = 0x7f030088; + public static final int colorControlNormal = 0x7f030089; + public static final int colorError = 0x7f03008a; + public static final int colorPrimary = 0x7f03008b; + public static final int colorPrimaryDark = 0x7f03008c; + public static final int colorSecondary = 0x7f03008d; + public static final int colorSwitchThumbNormal = 0x7f03008e; + public static final int commitIcon = 0x7f03008f; + public static final int contentDescription = 0x7f030090; + public static final int contentInsetEnd = 0x7f030091; + public static final int contentInsetEndWithActions = 0x7f030092; + public static final int contentInsetLeft = 0x7f030093; + public static final int contentInsetRight = 0x7f030094; + public static final int contentInsetStart = 0x7f030095; + public static final int contentInsetStartWithNavigation = 0x7f030096; + public static final int contentPadding = 0x7f030097; + public static final int contentPaddingBottom = 0x7f030098; + public static final int contentPaddingLeft = 0x7f030099; + public static final int contentPaddingRight = 0x7f03009a; + public static final int contentPaddingTop = 0x7f03009b; + public static final int contentScrim = 0x7f03009c; + public static final int controlBackground = 0x7f03009d; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int cornerRadius = 0x7f03009f; + public static final int counterEnabled = 0x7f0300a0; + public static final int counterMaxLength = 0x7f0300a1; + public static final int counterOverflowTextAppearance = 0x7f0300a2; + public static final int counterTextAppearance = 0x7f0300a3; + public static final int customNavigationLayout = 0x7f0300a4; + public static final int defaultQueryHint = 0x7f0300a5; + public static final int dialogCornerRadius = 0x7f0300a6; + public static final int dialogPreferredPadding = 0x7f0300a7; + public static final int dialogTheme = 0x7f0300a8; + public static final int displayOptions = 0x7f0300a9; + public static final int divider = 0x7f0300aa; + public static final int dividerHorizontal = 0x7f0300ab; + public static final int dividerPadding = 0x7f0300ac; + public static final int dividerVertical = 0x7f0300ad; + public static final int drawableSize = 0x7f0300ae; + public static final int drawerArrowStyle = 0x7f0300af; + public static final int dropDownListViewStyle = 0x7f0300b0; + public static final int dropdownListPreferredItemHeight = 0x7f0300b1; + public static final int editTextBackground = 0x7f0300b2; + public static final int editTextColor = 0x7f0300b3; + public static final int editTextStyle = 0x7f0300b4; + public static final int elevation = 0x7f0300b5; + public static final int enforceMaterialTheme = 0x7f0300b6; + public static final int enforceTextAppearance = 0x7f0300b7; + public static final int errorEnabled = 0x7f0300b8; + public static final int errorTextAppearance = 0x7f0300b9; + public static final int expandActivityOverflowButtonDrawable = 0x7f0300ba; + public static final int expanded = 0x7f0300bb; + public static final int expandedTitleGravity = 0x7f0300bc; + public static final int expandedTitleMargin = 0x7f0300bd; + public static final int expandedTitleMarginBottom = 0x7f0300be; + public static final int expandedTitleMarginEnd = 0x7f0300bf; + public static final int expandedTitleMarginStart = 0x7f0300c0; + public static final int expandedTitleMarginTop = 0x7f0300c1; + public static final int expandedTitleTextAppearance = 0x7f0300c2; + public static final int fabAlignmentMode = 0x7f0300c3; + public static final int fabCradleMargin = 0x7f0300c4; + public static final int fabCradleRoundedCornerRadius = 0x7f0300c5; + public static final int fabCradleVerticalOffset = 0x7f0300c6; + public static final int fabCustomSize = 0x7f0300c7; + public static final int fabSize = 0x7f0300c8; + public static final int fastScrollEnabled = 0x7f0300c9; + public static final int fastScrollHorizontalThumbDrawable = 0x7f0300ca; + public static final int fastScrollHorizontalTrackDrawable = 0x7f0300cb; + public static final int fastScrollVerticalThumbDrawable = 0x7f0300cc; + public static final int fastScrollVerticalTrackDrawable = 0x7f0300cd; + public static final int firstBaselineToTopHeight = 0x7f0300ce; + public static final int floatingActionButtonStyle = 0x7f0300cf; + public static final int font = 0x7f0300d0; + public static final int fontFamily = 0x7f0300d1; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int foregroundInsidePadding = 0x7f0300db; + public static final int gapBetweenBars = 0x7f0300dc; + public static final int goIcon = 0x7f0300dd; + public static final int headerLayout = 0x7f0300de; + public static final int height = 0x7f0300df; + public static final int helperText = 0x7f0300e0; + public static final int helperTextEnabled = 0x7f0300e1; + public static final int helperTextTextAppearance = 0x7f0300e2; + public static final int hideMotionSpec = 0x7f0300e3; + public static final int hideOnContentScroll = 0x7f0300e4; + public static final int hideOnScroll = 0x7f0300e5; + public static final int hintAnimationEnabled = 0x7f0300e6; + public static final int hintEnabled = 0x7f0300e7; + public static final int hintTextAppearance = 0x7f0300e8; + public static final int homeAsUpIndicator = 0x7f0300e9; + public static final int homeLayout = 0x7f0300ea; + public static final int hoveredFocusedTranslationZ = 0x7f0300eb; + public static final int icon = 0x7f0300ec; + public static final int iconEndPadding = 0x7f0300ed; + public static final int iconGravity = 0x7f0300ee; + public static final int iconPadding = 0x7f0300ef; + public static final int iconSize = 0x7f0300f0; + public static final int iconStartPadding = 0x7f0300f1; + public static final int iconTint = 0x7f0300f2; + public static final int iconTintMode = 0x7f0300f3; + public static final int iconifiedByDefault = 0x7f0300f4; + public static final int imageButtonStyle = 0x7f0300f5; + public static final int indeterminateProgressStyle = 0x7f0300f6; + public static final int initialActivityCount = 0x7f0300f7; + public static final int insetForeground = 0x7f0300f8; + public static final int isLightTheme = 0x7f0300f9; + public static final int itemBackground = 0x7f0300fa; + public static final int itemHorizontalPadding = 0x7f0300fb; + public static final int itemHorizontalTranslationEnabled = 0x7f0300fc; + public static final int itemIconPadding = 0x7f0300fd; + public static final int itemIconSize = 0x7f0300fe; + public static final int itemIconTint = 0x7f0300ff; + public static final int itemPadding = 0x7f030100; + public static final int itemSpacing = 0x7f030101; + public static final int itemTextAppearance = 0x7f030102; + public static final int itemTextAppearanceActive = 0x7f030103; + public static final int itemTextAppearanceInactive = 0x7f030104; + public static final int itemTextColor = 0x7f030105; + public static final int keylines = 0x7f030106; + public static final int labelVisibilityMode = 0x7f030107; + public static final int lastBaselineToBottomHeight = 0x7f030108; + public static final int layout = 0x7f030109; + public static final int layoutManager = 0x7f03010a; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_collapseMode = 0x7f03010e; + public static final int layout_collapseParallaxMultiplier = 0x7f03010f; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int layout_scrollFlags = 0x7f030113; + public static final int layout_scrollInterpolator = 0x7f030114; + public static final int liftOnScroll = 0x7f030115; + public static final int lineHeight = 0x7f030116; + public static final int lineSpacing = 0x7f030117; + public static final int listChoiceBackgroundIndicator = 0x7f030118; + public static final int listDividerAlertDialog = 0x7f030119; + public static final int listItemLayout = 0x7f03011a; + public static final int listLayout = 0x7f03011b; + public static final int listMenuViewStyle = 0x7f03011c; + public static final int listPopupWindowStyle = 0x7f03011d; + public static final int listPreferredItemHeight = 0x7f03011e; + public static final int listPreferredItemHeightLarge = 0x7f03011f; + public static final int listPreferredItemHeightSmall = 0x7f030120; + public static final int listPreferredItemPaddingLeft = 0x7f030121; + public static final int listPreferredItemPaddingRight = 0x7f030122; + public static final int logo = 0x7f030123; + public static final int logoDescription = 0x7f030124; + public static final int materialButtonStyle = 0x7f030125; + public static final int materialCardViewStyle = 0x7f030126; + public static final int maxActionInlineWidth = 0x7f030127; + public static final int maxButtonHeight = 0x7f030128; + public static final int maxImageSize = 0x7f030129; + public static final int measureWithLargestChild = 0x7f03012a; + public static final int menu = 0x7f03012b; + public static final int multiChoiceItemLayout = 0x7f03012c; + public static final int navigationContentDescription = 0x7f03012d; + public static final int navigationIcon = 0x7f03012e; + public static final int navigationMode = 0x7f03012f; + public static final int navigationViewStyle = 0x7f030130; + public static final int numericModifiers = 0x7f030131; + public static final int overlapAnchor = 0x7f030132; + public static final int paddingBottomNoButtons = 0x7f030133; + public static final int paddingEnd = 0x7f030134; + public static final int paddingStart = 0x7f030135; + public static final int paddingTopNoTitle = 0x7f030136; + public static final int panelBackground = 0x7f030137; + public static final int panelMenuListTheme = 0x7f030138; + public static final int panelMenuListWidth = 0x7f030139; + public static final int passwordToggleContentDescription = 0x7f03013a; + public static final int passwordToggleDrawable = 0x7f03013b; + public static final int passwordToggleEnabled = 0x7f03013c; + public static final int passwordToggleTint = 0x7f03013d; + public static final int passwordToggleTintMode = 0x7f03013e; + public static final int popupMenuStyle = 0x7f03013f; + public static final int popupTheme = 0x7f030140; + public static final int popupWindowStyle = 0x7f030141; + public static final int preserveIconSpacing = 0x7f030142; + public static final int pressedTranslationZ = 0x7f030143; + public static final int progressBarPadding = 0x7f030144; + public static final int progressBarStyle = 0x7f030145; + public static final int queryBackground = 0x7f030146; + public static final int queryHint = 0x7f030147; + public static final int radioButtonStyle = 0x7f030148; + public static final int ratingBarStyle = 0x7f030149; + public static final int ratingBarStyleIndicator = 0x7f03014a; + public static final int ratingBarStyleSmall = 0x7f03014b; + public static final int reverseLayout = 0x7f03014c; + public static final int rippleColor = 0x7f03014d; + public static final int scrimAnimationDuration = 0x7f03014e; + public static final int scrimBackground = 0x7f03014f; + public static final int scrimVisibleHeightTrigger = 0x7f030150; + public static final int searchHintIcon = 0x7f030151; + public static final int searchIcon = 0x7f030152; + public static final int searchViewStyle = 0x7f030153; + public static final int seekBarStyle = 0x7f030154; + public static final int selectableItemBackground = 0x7f030155; + public static final int selectableItemBackgroundBorderless = 0x7f030156; + public static final int showAsAction = 0x7f030157; + public static final int showDividers = 0x7f030158; + public static final int showMotionSpec = 0x7f030159; + public static final int showText = 0x7f03015a; + public static final int showTitle = 0x7f03015b; + public static final int singleChoiceItemLayout = 0x7f03015c; + public static final int singleLine = 0x7f03015d; + public static final int singleSelection = 0x7f03015e; + public static final int snackbarButtonStyle = 0x7f03015f; + public static final int snackbarStyle = 0x7f030160; + public static final int spanCount = 0x7f030161; + public static final int spinBars = 0x7f030162; + public static final int spinnerDropDownItemStyle = 0x7f030163; + public static final int spinnerStyle = 0x7f030164; + public static final int splitTrack = 0x7f030165; + public static final int srcCompat = 0x7f030166; + public static final int stackFromEnd = 0x7f030167; + public static final int state_above_anchor = 0x7f030168; + public static final int state_collapsed = 0x7f030169; + public static final int state_collapsible = 0x7f03016a; + public static final int state_liftable = 0x7f03016b; + public static final int state_lifted = 0x7f03016c; + public static final int statusBarBackground = 0x7f03016d; + public static final int statusBarScrim = 0x7f03016e; + public static final int strokeColor = 0x7f03016f; + public static final int strokeWidth = 0x7f030170; + public static final int subMenuArrow = 0x7f030171; + public static final int submitBackground = 0x7f030172; + public static final int subtitle = 0x7f030173; + public static final int subtitleTextAppearance = 0x7f030174; + public static final int subtitleTextColor = 0x7f030175; + public static final int subtitleTextStyle = 0x7f030176; + public static final int suggestionRowLayout = 0x7f030177; + public static final int switchMinWidth = 0x7f030178; + public static final int switchPadding = 0x7f030179; + public static final int switchStyle = 0x7f03017a; + public static final int switchTextAppearance = 0x7f03017b; + public static final int tabBackground = 0x7f03017c; + public static final int tabContentStart = 0x7f03017d; + public static final int tabGravity = 0x7f03017e; + public static final int tabIconTint = 0x7f03017f; + public static final int tabIconTintMode = 0x7f030180; + public static final int tabIndicator = 0x7f030181; + public static final int tabIndicatorAnimationDuration = 0x7f030182; + public static final int tabIndicatorColor = 0x7f030183; + public static final int tabIndicatorFullWidth = 0x7f030184; + public static final int tabIndicatorGravity = 0x7f030185; + public static final int tabIndicatorHeight = 0x7f030186; + public static final int tabInlineLabel = 0x7f030187; + public static final int tabMaxWidth = 0x7f030188; + public static final int tabMinWidth = 0x7f030189; + public static final int tabMode = 0x7f03018a; + public static final int tabPadding = 0x7f03018b; + public static final int tabPaddingBottom = 0x7f03018c; + public static final int tabPaddingEnd = 0x7f03018d; + public static final int tabPaddingStart = 0x7f03018e; + public static final int tabPaddingTop = 0x7f03018f; + public static final int tabRippleColor = 0x7f030190; + public static final int tabSelectedTextColor = 0x7f030191; + public static final int tabStyle = 0x7f030192; + public static final int tabTextAppearance = 0x7f030193; + public static final int tabTextColor = 0x7f030194; + public static final int tabUnboundedRipple = 0x7f030195; + public static final int textAllCaps = 0x7f030196; + public static final int textAppearanceBody1 = 0x7f030197; + public static final int textAppearanceBody2 = 0x7f030198; + public static final int textAppearanceButton = 0x7f030199; + public static final int textAppearanceCaption = 0x7f03019a; + public static final int textAppearanceHeadline1 = 0x7f03019b; + public static final int textAppearanceHeadline2 = 0x7f03019c; + public static final int textAppearanceHeadline3 = 0x7f03019d; + public static final int textAppearanceHeadline4 = 0x7f03019e; + public static final int textAppearanceHeadline5 = 0x7f03019f; + public static final int textAppearanceHeadline6 = 0x7f0301a0; + public static final int textAppearanceLargePopupMenu = 0x7f0301a1; + public static final int textAppearanceListItem = 0x7f0301a2; + public static final int textAppearanceListItemSecondary = 0x7f0301a3; + public static final int textAppearanceListItemSmall = 0x7f0301a4; + public static final int textAppearanceOverline = 0x7f0301a5; + public static final int textAppearancePopupMenuHeader = 0x7f0301a6; + public static final int textAppearanceSearchResultSubtitle = 0x7f0301a7; + public static final int textAppearanceSearchResultTitle = 0x7f0301a8; + public static final int textAppearanceSmallPopupMenu = 0x7f0301a9; + public static final int textAppearanceSubtitle1 = 0x7f0301aa; + public static final int textAppearanceSubtitle2 = 0x7f0301ab; + public static final int textColorAlertDialogListItem = 0x7f0301ac; + public static final int textColorSearchUrl = 0x7f0301ad; + public static final int textEndPadding = 0x7f0301ae; + public static final int textInputStyle = 0x7f0301af; + public static final int textStartPadding = 0x7f0301b0; + public static final int theme = 0x7f0301b1; + public static final int thickness = 0x7f0301b2; + public static final int thumbTextPadding = 0x7f0301b3; + public static final int thumbTint = 0x7f0301b4; + public static final int thumbTintMode = 0x7f0301b5; + public static final int tickMark = 0x7f0301b6; + public static final int tickMarkTint = 0x7f0301b7; + public static final int tickMarkTintMode = 0x7f0301b8; + public static final int tint = 0x7f0301b9; + public static final int tintMode = 0x7f0301ba; + public static final int title = 0x7f0301bb; + public static final int titleEnabled = 0x7f0301bc; + public static final int titleMargin = 0x7f0301bd; + public static final int titleMarginBottom = 0x7f0301be; + public static final int titleMarginEnd = 0x7f0301bf; + public static final int titleMarginStart = 0x7f0301c0; + public static final int titleMarginTop = 0x7f0301c1; + public static final int titleMargins = 0x7f0301c2; + public static final int titleTextAppearance = 0x7f0301c3; + public static final int titleTextColor = 0x7f0301c4; + public static final int titleTextStyle = 0x7f0301c5; + public static final int toolbarId = 0x7f0301c6; + public static final int toolbarNavigationButtonStyle = 0x7f0301c7; + public static final int toolbarStyle = 0x7f0301c8; + public static final int tooltipForegroundColor = 0x7f0301c9; + public static final int tooltipFrameBackground = 0x7f0301ca; + public static final int tooltipText = 0x7f0301cb; + public static final int track = 0x7f0301cc; + public static final int trackTint = 0x7f0301cd; + public static final int trackTintMode = 0x7f0301ce; + public static final int ttcIndex = 0x7f0301cf; + public static final int useCompatPadding = 0x7f0301d0; + public static final int viewInflaterClass = 0x7f0301d1; + public static final int voiceIcon = 0x7f0301d2; + public static final int windowActionBar = 0x7f0301d3; + public static final int windowActionBarOverlay = 0x7f0301d4; + public static final int windowActionModeOverlay = 0x7f0301d5; + public static final int windowFixedHeightMajor = 0x7f0301d6; + public static final int windowFixedHeightMinor = 0x7f0301d7; + public static final int windowFixedWidthMajor = 0x7f0301d8; + public static final int windowFixedWidthMinor = 0x7f0301d9; + public static final int windowMinWidthMajor = 0x7f0301da; + public static final int windowMinWidthMinor = 0x7f0301db; + public static final int windowNoTitle = 0x7f0301dc; + } + public static final class bool { + private bool() {} + + public static final int abc_action_bar_embed_tabs = 0x7f040000; + public static final int abc_allow_stacked_button_bar = 0x7f040001; + public static final int abc_config_actionMenuItemAllCaps = 0x7f040002; + public static final int mtrl_btn_textappearance_all_caps = 0x7f040003; + } + public static final class color { + private color() {} + + public static final int abc_background_cache_hint_selector_material_dark = 0x7f050000; + public static final int abc_background_cache_hint_selector_material_light = 0x7f050001; + public static final int abc_btn_colored_borderless_text_material = 0x7f050002; + public static final int abc_btn_colored_text_material = 0x7f050003; + public static final int abc_color_highlight_material = 0x7f050004; + public static final int abc_hint_foreground_material_dark = 0x7f050005; + public static final int abc_hint_foreground_material_light = 0x7f050006; + public static final int abc_input_method_navigation_guard = 0x7f050007; + public static final int abc_primary_text_disable_only_material_dark = 0x7f050008; + public static final int abc_primary_text_disable_only_material_light = 0x7f050009; + public static final int abc_primary_text_material_dark = 0x7f05000a; + public static final int abc_primary_text_material_light = 0x7f05000b; + public static final int abc_search_url_text = 0x7f05000c; + public static final int abc_search_url_text_normal = 0x7f05000d; + public static final int abc_search_url_text_pressed = 0x7f05000e; + public static final int abc_search_url_text_selected = 0x7f05000f; + public static final int abc_secondary_text_material_dark = 0x7f050010; + public static final int abc_secondary_text_material_light = 0x7f050011; + public static final int abc_tint_btn_checkable = 0x7f050012; + public static final int abc_tint_default = 0x7f050013; + public static final int abc_tint_edittext = 0x7f050014; + public static final int abc_tint_seek_thumb = 0x7f050015; + public static final int abc_tint_spinner = 0x7f050016; + public static final int abc_tint_switch_track = 0x7f050017; + public static final int accent_material_dark = 0x7f050019; + public static final int accent_material_light = 0x7f05001a; + public static final int background_floating_material_dark = 0x7f05001b; + public static final int background_floating_material_light = 0x7f05001c; + public static final int background_material_dark = 0x7f05001d; + public static final int background_material_light = 0x7f05001e; + public static final int bright_foreground_disabled_material_dark = 0x7f05001f; + public static final int bright_foreground_disabled_material_light = 0x7f050020; + public static final int bright_foreground_inverse_material_dark = 0x7f050021; + public static final int bright_foreground_inverse_material_light = 0x7f050022; + public static final int bright_foreground_material_dark = 0x7f050023; + public static final int bright_foreground_material_light = 0x7f050024; + public static final int button_material_dark = 0x7f050025; + public static final int button_material_light = 0x7f050026; + public static final int cardview_dark_background = 0x7f050027; + public static final int cardview_light_background = 0x7f050028; + public static final int cardview_shadow_end_color = 0x7f050029; + public static final int cardview_shadow_start_color = 0x7f05002a; + public static final int design_bottom_navigation_shadow_color = 0x7f05002b; + public static final int design_default_color_primary = 0x7f05002c; + public static final int design_default_color_primary_dark = 0x7f05002d; + public static final int design_error = 0x7f05002e; + public static final int design_fab_shadow_end_color = 0x7f05002f; + public static final int design_fab_shadow_mid_color = 0x7f050030; + public static final int design_fab_shadow_start_color = 0x7f050031; + public static final int design_fab_stroke_end_inner_color = 0x7f050032; + public static final int design_fab_stroke_end_outer_color = 0x7f050033; + public static final int design_fab_stroke_top_inner_color = 0x7f050034; + public static final int design_fab_stroke_top_outer_color = 0x7f050035; + public static final int design_snackbar_background_color = 0x7f050036; + public static final int design_tint_password_toggle = 0x7f050037; + public static final int dim_foreground_disabled_material_dark = 0x7f050038; + public static final int dim_foreground_disabled_material_light = 0x7f050039; + public static final int dim_foreground_material_dark = 0x7f05003a; + public static final int dim_foreground_material_light = 0x7f05003b; + public static final int error_color_material_dark = 0x7f05003d; + public static final int error_color_material_light = 0x7f05003e; + public static final int foreground_material_dark = 0x7f05003f; + public static final int foreground_material_light = 0x7f050040; + public static final int highlighted_text_material_dark = 0x7f050041; + public static final int highlighted_text_material_light = 0x7f050042; + public static final int material_blue_grey_800 = 0x7f050044; + public static final int material_blue_grey_900 = 0x7f050045; + public static final int material_blue_grey_950 = 0x7f050046; + public static final int material_deep_teal_200 = 0x7f050047; + public static final int material_deep_teal_500 = 0x7f050048; + public static final int material_grey_100 = 0x7f050049; + public static final int material_grey_300 = 0x7f05004a; + public static final int material_grey_50 = 0x7f05004b; + public static final int material_grey_600 = 0x7f05004c; + public static final int material_grey_800 = 0x7f05004d; + public static final int material_grey_850 = 0x7f05004e; + public static final int material_grey_900 = 0x7f05004f; + public static final int mtrl_bottom_nav_colored_item_tint = 0x7f050050; + public static final int mtrl_bottom_nav_item_tint = 0x7f050051; + public static final int mtrl_btn_bg_color_disabled = 0x7f050052; + public static final int mtrl_btn_bg_color_selector = 0x7f050053; + public static final int mtrl_btn_ripple_color = 0x7f050054; + public static final int mtrl_btn_stroke_color_selector = 0x7f050055; + public static final int mtrl_btn_text_btn_ripple_color = 0x7f050056; + public static final int mtrl_btn_text_color_disabled = 0x7f050057; + public static final int mtrl_btn_text_color_selector = 0x7f050058; + public static final int mtrl_btn_transparent_bg_color = 0x7f050059; + public static final int mtrl_chip_background_color = 0x7f05005a; + public static final int mtrl_chip_close_icon_tint = 0x7f05005b; + public static final int mtrl_chip_ripple_color = 0x7f05005c; + public static final int mtrl_chip_text_color = 0x7f05005d; + public static final int mtrl_fab_ripple_color = 0x7f05005e; + public static final int mtrl_scrim_color = 0x7f05005f; + public static final int mtrl_tabs_colored_ripple_color = 0x7f050060; + public static final int mtrl_tabs_icon_color_selector = 0x7f050061; + public static final int mtrl_tabs_icon_color_selector_colored = 0x7f050062; + public static final int mtrl_tabs_legacy_text_color_selector = 0x7f050063; + public static final int mtrl_tabs_ripple_color = 0x7f050064; + public static final int mtrl_text_btn_text_color_selector = 0x7f050065; + public static final int mtrl_textinput_default_box_stroke_color = 0x7f050066; + public static final int mtrl_textinput_disabled_color = 0x7f050067; + public static final int mtrl_textinput_filled_box_default_background_color = 0x7f050068; + public static final int mtrl_textinput_hovered_box_stroke_color = 0x7f050069; + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int primary_dark_material_dark = 0x7f05006f; + public static final int primary_dark_material_light = 0x7f050070; + public static final int primary_material_dark = 0x7f050072; + public static final int primary_material_light = 0x7f050073; + public static final int primary_text_default_material_dark = 0x7f050075; + public static final int primary_text_default_material_light = 0x7f050076; + public static final int primary_text_disabled_material_dark = 0x7f050077; + public static final int primary_text_disabled_material_light = 0x7f050078; + public static final int ripple_material_dark = 0x7f050079; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_dark = 0x7f05007c; + public static final int secondary_text_default_material_light = 0x7f05007d; + public static final int secondary_text_disabled_material_dark = 0x7f05007e; + public static final int secondary_text_disabled_material_light = 0x7f05007f; + public static final int switch_thumb_disabled_material_dark = 0x7f050080; + public static final int switch_thumb_disabled_material_light = 0x7f050081; + public static final int switch_thumb_material_dark = 0x7f050082; + public static final int switch_thumb_material_light = 0x7f050083; + public static final int switch_thumb_normal_material_dark = 0x7f050084; + public static final int switch_thumb_normal_material_light = 0x7f050085; + public static final int tooltip_background_dark = 0x7f050086; + public static final int tooltip_background_light = 0x7f050087; + } + public static final class dimen { + private dimen() {} + + public static final int abc_action_bar_content_inset_material = 0x7f060000; + public static final int abc_action_bar_content_inset_with_nav = 0x7f060001; + public static final int abc_action_bar_default_height_material = 0x7f060002; + public static final int abc_action_bar_default_padding_end_material = 0x7f060003; + public static final int abc_action_bar_default_padding_start_material = 0x7f060004; + public static final int abc_action_bar_elevation_material = 0x7f060005; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f060006; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f060007; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f060008; + public static final int abc_action_bar_stacked_max_height = 0x7f060009; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f06000a; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f06000b; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f06000c; + public static final int abc_action_button_min_height_material = 0x7f06000d; + public static final int abc_action_button_min_width_material = 0x7f06000e; + public static final int abc_action_button_min_width_overflow_material = 0x7f06000f; + public static final int abc_alert_dialog_button_bar_height = 0x7f060010; + public static final int abc_alert_dialog_button_dimen = 0x7f060011; + public static final int abc_button_inset_horizontal_material = 0x7f060012; + public static final int abc_button_inset_vertical_material = 0x7f060013; + public static final int abc_button_padding_horizontal_material = 0x7f060014; + public static final int abc_button_padding_vertical_material = 0x7f060015; + public static final int abc_cascading_menus_min_smallest_width = 0x7f060016; + public static final int abc_config_prefDialogWidth = 0x7f060017; + public static final int abc_control_corner_material = 0x7f060018; + public static final int abc_control_inset_material = 0x7f060019; + public static final int abc_control_padding_material = 0x7f06001a; + public static final int abc_dialog_corner_radius_material = 0x7f06001b; + public static final int abc_dialog_fixed_height_major = 0x7f06001c; + public static final int abc_dialog_fixed_height_minor = 0x7f06001d; + public static final int abc_dialog_fixed_width_major = 0x7f06001e; + public static final int abc_dialog_fixed_width_minor = 0x7f06001f; + public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f060020; + public static final int abc_dialog_list_padding_top_no_title = 0x7f060021; + public static final int abc_dialog_min_width_major = 0x7f060022; + public static final int abc_dialog_min_width_minor = 0x7f060023; + public static final int abc_dialog_padding_material = 0x7f060024; + public static final int abc_dialog_padding_top_material = 0x7f060025; + public static final int abc_dialog_title_divider_material = 0x7f060026; + public static final int abc_disabled_alpha_material_dark = 0x7f060027; + public static final int abc_disabled_alpha_material_light = 0x7f060028; + public static final int abc_dropdownitem_icon_width = 0x7f060029; + public static final int abc_dropdownitem_text_padding_left = 0x7f06002a; + public static final int abc_dropdownitem_text_padding_right = 0x7f06002b; + public static final int abc_edit_text_inset_bottom_material = 0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material = 0x7f06002d; + public static final int abc_edit_text_inset_top_material = 0x7f06002e; + public static final int abc_floating_window_z = 0x7f06002f; + public static final int abc_list_item_padding_horizontal_material = 0x7f060030; + public static final int abc_panel_menu_list_width = 0x7f060031; + public static final int abc_progress_bar_height_material = 0x7f060032; + public static final int abc_search_view_preferred_height = 0x7f060033; + public static final int abc_search_view_preferred_width = 0x7f060034; + public static final int abc_seekbar_track_background_height_material = 0x7f060035; + public static final int abc_seekbar_track_progress_height_material = 0x7f060036; + public static final int abc_select_dialog_padding_start_material = 0x7f060037; + public static final int abc_switch_padding = 0x7f060038; + public static final int abc_text_size_body_1_material = 0x7f060039; + public static final int abc_text_size_body_2_material = 0x7f06003a; + public static final int abc_text_size_button_material = 0x7f06003b; + public static final int abc_text_size_caption_material = 0x7f06003c; + public static final int abc_text_size_display_1_material = 0x7f06003d; + public static final int abc_text_size_display_2_material = 0x7f06003e; + public static final int abc_text_size_display_3_material = 0x7f06003f; + public static final int abc_text_size_display_4_material = 0x7f060040; + public static final int abc_text_size_headline_material = 0x7f060041; + public static final int abc_text_size_large_material = 0x7f060042; + public static final int abc_text_size_medium_material = 0x7f060043; + public static final int abc_text_size_menu_header_material = 0x7f060044; + public static final int abc_text_size_menu_material = 0x7f060045; + public static final int abc_text_size_small_material = 0x7f060046; + public static final int abc_text_size_subhead_material = 0x7f060047; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f060048; + public static final int abc_text_size_title_material = 0x7f060049; + public static final int abc_text_size_title_material_toolbar = 0x7f06004a; + public static final int cardview_compat_inset_shadow = 0x7f06004b; + public static final int cardview_default_elevation = 0x7f06004c; + public static final int cardview_default_radius = 0x7f06004d; + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int design_appbar_elevation = 0x7f060055; + public static final int design_bottom_navigation_active_item_max_width = 0x7f060056; + public static final int design_bottom_navigation_active_item_min_width = 0x7f060057; + public static final int design_bottom_navigation_active_text_size = 0x7f060058; + public static final int design_bottom_navigation_elevation = 0x7f060059; + public static final int design_bottom_navigation_height = 0x7f06005a; + public static final int design_bottom_navigation_icon_size = 0x7f06005b; + public static final int design_bottom_navigation_item_max_width = 0x7f06005c; + public static final int design_bottom_navigation_item_min_width = 0x7f06005d; + public static final int design_bottom_navigation_margin = 0x7f06005e; + public static final int design_bottom_navigation_shadow_height = 0x7f06005f; + public static final int design_bottom_navigation_text_size = 0x7f060060; + public static final int design_bottom_sheet_modal_elevation = 0x7f060061; + public static final int design_bottom_sheet_peek_height_min = 0x7f060062; + public static final int design_fab_border_width = 0x7f060063; + public static final int design_fab_elevation = 0x7f060064; + public static final int design_fab_image_size = 0x7f060065; + public static final int design_fab_size_mini = 0x7f060066; + public static final int design_fab_size_normal = 0x7f060067; + public static final int design_fab_translation_z_hovered_focused = 0x7f060068; + public static final int design_fab_translation_z_pressed = 0x7f060069; + public static final int design_navigation_elevation = 0x7f06006a; + public static final int design_navigation_icon_padding = 0x7f06006b; + public static final int design_navigation_icon_size = 0x7f06006c; + public static final int design_navigation_item_horizontal_padding = 0x7f06006d; + public static final int design_navigation_item_icon_padding = 0x7f06006e; + public static final int design_navigation_max_width = 0x7f06006f; + public static final int design_navigation_padding_bottom = 0x7f060070; + public static final int design_navigation_separator_vertical_padding = 0x7f060071; + public static final int design_snackbar_action_inline_max_width = 0x7f060072; + public static final int design_snackbar_background_corner_radius = 0x7f060073; + public static final int design_snackbar_elevation = 0x7f060074; + public static final int design_snackbar_extra_spacing_horizontal = 0x7f060075; + public static final int design_snackbar_max_width = 0x7f060076; + public static final int design_snackbar_min_width = 0x7f060077; + public static final int design_snackbar_padding_horizontal = 0x7f060078; + public static final int design_snackbar_padding_vertical = 0x7f060079; + public static final int design_snackbar_padding_vertical_2lines = 0x7f06007a; + public static final int design_snackbar_text_size = 0x7f06007b; + public static final int design_tab_max_width = 0x7f06007c; + public static final int design_tab_scrollable_min_width = 0x7f06007d; + public static final int design_tab_text_size = 0x7f06007e; + public static final int design_tab_text_size_2line = 0x7f06007f; + public static final int design_textinput_caption_translate_y = 0x7f060080; + public static final int disabled_alpha_material_dark = 0x7f060081; + public static final int disabled_alpha_material_light = 0x7f060082; + public static final int fastscroll_default_thickness = 0x7f060083; + public static final int fastscroll_margin = 0x7f060084; + public static final int fastscroll_minimum_range = 0x7f060085; + public static final int highlight_alpha_material_colored = 0x7f060086; + public static final int highlight_alpha_material_dark = 0x7f060087; + public static final int highlight_alpha_material_light = 0x7f060088; + public static final int hint_alpha_material_dark = 0x7f060089; + public static final int hint_alpha_material_light = 0x7f06008a; + public static final int hint_pressed_alpha_material_dark = 0x7f06008b; + public static final int hint_pressed_alpha_material_light = 0x7f06008c; + public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f06008d; + public static final int item_touch_helper_swipe_escape_max_velocity = 0x7f06008e; + public static final int item_touch_helper_swipe_escape_velocity = 0x7f06008f; + public static final int mtrl_bottomappbar_fabOffsetEndMode = 0x7f060090; + public static final int mtrl_bottomappbar_fab_cradle_margin = 0x7f060091; + public static final int mtrl_bottomappbar_fab_cradle_rounded_corner_radius = 0x7f060092; + public static final int mtrl_bottomappbar_fab_cradle_vertical_offset = 0x7f060093; + public static final int mtrl_bottomappbar_height = 0x7f060094; + public static final int mtrl_btn_corner_radius = 0x7f060095; + public static final int mtrl_btn_dialog_btn_min_width = 0x7f060096; + public static final int mtrl_btn_disabled_elevation = 0x7f060097; + public static final int mtrl_btn_disabled_z = 0x7f060098; + public static final int mtrl_btn_elevation = 0x7f060099; + public static final int mtrl_btn_focused_z = 0x7f06009a; + public static final int mtrl_btn_hovered_z = 0x7f06009b; + public static final int mtrl_btn_icon_btn_padding_left = 0x7f06009c; + public static final int mtrl_btn_icon_padding = 0x7f06009d; + public static final int mtrl_btn_inset = 0x7f06009e; + public static final int mtrl_btn_letter_spacing = 0x7f06009f; + public static final int mtrl_btn_padding_bottom = 0x7f0600a0; + public static final int mtrl_btn_padding_left = 0x7f0600a1; + public static final int mtrl_btn_padding_right = 0x7f0600a2; + public static final int mtrl_btn_padding_top = 0x7f0600a3; + public static final int mtrl_btn_pressed_z = 0x7f0600a4; + public static final int mtrl_btn_stroke_size = 0x7f0600a5; + public static final int mtrl_btn_text_btn_icon_padding = 0x7f0600a6; + public static final int mtrl_btn_text_btn_padding_left = 0x7f0600a7; + public static final int mtrl_btn_text_btn_padding_right = 0x7f0600a8; + public static final int mtrl_btn_text_size = 0x7f0600a9; + public static final int mtrl_btn_z = 0x7f0600aa; + public static final int mtrl_card_elevation = 0x7f0600ab; + public static final int mtrl_card_spacing = 0x7f0600ac; + public static final int mtrl_chip_pressed_translation_z = 0x7f0600ad; + public static final int mtrl_chip_text_size = 0x7f0600ae; + public static final int mtrl_fab_elevation = 0x7f0600af; + public static final int mtrl_fab_translation_z_hovered_focused = 0x7f0600b0; + public static final int mtrl_fab_translation_z_pressed = 0x7f0600b1; + public static final int mtrl_navigation_elevation = 0x7f0600b2; + public static final int mtrl_navigation_item_horizontal_padding = 0x7f0600b3; + public static final int mtrl_navigation_item_icon_padding = 0x7f0600b4; + public static final int mtrl_snackbar_background_corner_radius = 0x7f0600b5; + public static final int mtrl_snackbar_margin = 0x7f0600b6; + public static final int mtrl_textinput_box_bottom_offset = 0x7f0600b7; + public static final int mtrl_textinput_box_corner_radius_medium = 0x7f0600b8; + public static final int mtrl_textinput_box_corner_radius_small = 0x7f0600b9; + public static final int mtrl_textinput_box_label_cutout_padding = 0x7f0600ba; + public static final int mtrl_textinput_box_padding_end = 0x7f0600bb; + public static final int mtrl_textinput_box_stroke_width_default = 0x7f0600bc; + public static final int mtrl_textinput_box_stroke_width_focused = 0x7f0600bd; + public static final int mtrl_textinput_outline_box_expanded_padding = 0x7f0600be; + public static final int mtrl_toolbar_default_height = 0x7f0600bf; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + public static final int tooltip_corner_radius = 0x7f0600d3; + public static final int tooltip_horizontal_padding = 0x7f0600d4; + public static final int tooltip_margin = 0x7f0600d5; + public static final int tooltip_precise_anchor_extra_offset = 0x7f0600d6; + public static final int tooltip_precise_anchor_threshold = 0x7f0600d7; + public static final int tooltip_vertical_padding = 0x7f0600d8; + public static final int tooltip_y_offset_non_touch = 0x7f0600d9; + public static final int tooltip_y_offset_touch = 0x7f0600da; + } + public static final class drawable { + private drawable() {} + + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f070006; + public static final int abc_action_bar_item_background_material = 0x7f070007; + public static final int abc_btn_borderless_material = 0x7f070008; + public static final int abc_btn_check_material = 0x7f070009; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f07000a; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f07000b; + public static final int abc_btn_colored_material = 0x7f07000c; + public static final int abc_btn_default_mtrl_shape = 0x7f07000d; + public static final int abc_btn_radio_material = 0x7f07000e; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f07000f; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f070010; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f070011; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f070012; + public static final int abc_cab_background_internal_bg = 0x7f070013; + public static final int abc_cab_background_top_material = 0x7f070014; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f070015; + public static final int abc_control_background_material = 0x7f070016; + public static final int abc_dialog_material_background = 0x7f070017; + public static final int abc_edit_text_material = 0x7f070018; + public static final int abc_ic_ab_back_material = 0x7f070019; + public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f07001a; + public static final int abc_ic_clear_material = 0x7f07001b; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f07001c; + public static final int abc_ic_go_search_api_material = 0x7f07001d; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f07001e; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f07001f; + public static final int abc_ic_menu_overflow_material = 0x7f070020; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f070021; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f070022; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f070023; + public static final int abc_ic_search_api_material = 0x7f070024; + public static final int abc_ic_star_black_16dp = 0x7f070025; + public static final int abc_ic_star_black_36dp = 0x7f070026; + public static final int abc_ic_star_black_48dp = 0x7f070027; + public static final int abc_ic_star_half_black_16dp = 0x7f070028; + public static final int abc_ic_star_half_black_36dp = 0x7f070029; + public static final int abc_ic_star_half_black_48dp = 0x7f07002a; + public static final int abc_ic_voice_search_api_material = 0x7f07002b; + public static final int abc_item_background_holo_dark = 0x7f07002c; + public static final int abc_item_background_holo_light = 0x7f07002d; + public static final int abc_list_divider_material = 0x7f07002e; + public static final int abc_list_divider_mtrl_alpha = 0x7f07002f; + public static final int abc_list_focused_holo = 0x7f070030; + public static final int abc_list_longpressed_holo = 0x7f070031; + public static final int abc_list_pressed_holo_dark = 0x7f070032; + public static final int abc_list_pressed_holo_light = 0x7f070033; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f070034; + public static final int abc_list_selector_background_transition_holo_light = 0x7f070035; + public static final int abc_list_selector_disabled_holo_dark = 0x7f070036; + public static final int abc_list_selector_disabled_holo_light = 0x7f070037; + public static final int abc_list_selector_holo_dark = 0x7f070038; + public static final int abc_list_selector_holo_light = 0x7f070039; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f07003a; + public static final int abc_popup_background_mtrl_mult = 0x7f07003b; + public static final int abc_ratingbar_indicator_material = 0x7f07003c; + public static final int abc_ratingbar_material = 0x7f07003d; + public static final int abc_ratingbar_small_material = 0x7f07003e; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f07003f; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f070040; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f070041; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f070042; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f070043; + public static final int abc_seekbar_thumb_material = 0x7f070044; + public static final int abc_seekbar_tick_mark_material = 0x7f070045; + public static final int abc_seekbar_track_material = 0x7f070046; + public static final int abc_spinner_mtrl_am_alpha = 0x7f070047; + public static final int abc_spinner_textfield_background_material = 0x7f070048; + public static final int abc_switch_thumb_material = 0x7f070049; + public static final int abc_switch_track_mtrl_alpha = 0x7f07004a; + public static final int abc_tab_indicator_material = 0x7f07004b; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f07004c; + public static final int abc_text_cursor_material = 0x7f07004d; + public static final int abc_text_select_handle_left_mtrl_dark = 0x7f07004e; + public static final int abc_text_select_handle_left_mtrl_light = 0x7f07004f; + public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f070050; + public static final int abc_text_select_handle_middle_mtrl_light = 0x7f070051; + public static final int abc_text_select_handle_right_mtrl_dark = 0x7f070052; + public static final int abc_text_select_handle_right_mtrl_light = 0x7f070053; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f070054; + public static final int abc_textfield_default_mtrl_alpha = 0x7f070055; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f070056; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f070057; + public static final int abc_textfield_search_material = 0x7f070058; + public static final int abc_vector_test = 0x7f070059; + public static final int avd_hide_password = 0x7f07005a; + public static final int avd_show_password = 0x7f07005b; + public static final int design_bottom_navigation_item_background = 0x7f07005d; + public static final int design_fab_background = 0x7f07005e; + public static final int design_ic_visibility = 0x7f07005f; + public static final int design_ic_visibility_off = 0x7f070060; + public static final int design_password_eye = 0x7f070061; + public static final int design_snackbar_background = 0x7f070062; + public static final int ic_mtrl_chip_checked_black = 0x7f07006e; + public static final int ic_mtrl_chip_checked_circle = 0x7f07006f; + public static final int ic_mtrl_chip_close_circle = 0x7f070070; + public static final int mtrl_snackbar_background = 0x7f070077; + public static final int mtrl_tabs_default_indicator = 0x7f070078; + public static final int navigation_empty_icon = 0x7f070079; + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + public static final int tooltip_frame_dark = 0x7f070086; + public static final int tooltip_frame_light = 0x7f070087; + } + public static final class id { + private id() {} + + public static final int action_bar = 0x7f080007; + public static final int action_bar_activity_content = 0x7f080008; + public static final int action_bar_container = 0x7f080009; + public static final int action_bar_root = 0x7f08000a; + public static final int action_bar_spinner = 0x7f08000b; + public static final int action_bar_subtitle = 0x7f08000c; + public static final int action_bar_title = 0x7f08000d; + public static final int action_container = 0x7f08000e; + public static final int action_context_bar = 0x7f08000f; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_menu_divider = 0x7f080012; + public static final int action_menu_presenter = 0x7f080013; + public static final int action_mode_bar = 0x7f080014; + public static final int action_mode_bar_stub = 0x7f080015; + public static final int action_mode_close_button = 0x7f080016; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int activity_chooser_view_content = 0x7f080019; + public static final int add = 0x7f08001a; + public static final int alertTitle = 0x7f08001b; + public static final int async = 0x7f08001e; + public static final int auto = 0x7f08001f; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int buttonPanel = 0x7f080023; + public static final int center = 0x7f080025; + public static final int checkbox = 0x7f080028; + public static final int chronometer = 0x7f080029; + public static final int container = 0x7f08002d; + public static final int content = 0x7f08002e; + public static final int contentPanel = 0x7f08002f; + public static final int coordinator = 0x7f080030; + public static final int custom = 0x7f080031; + public static final int customPanel = 0x7f080032; + public static final int decor_content_parent = 0x7f080033; + public static final int default_activity_button = 0x7f080034; + public static final int design_bottom_sheet = 0x7f080035; + public static final int design_menu_item_action_area = 0x7f080036; + public static final int design_menu_item_action_area_stub = 0x7f080037; + public static final int design_menu_item_text = 0x7f080038; + public static final int design_navigation_view = 0x7f080039; + public static final int edit_query = 0x7f08003b; + public static final int end = 0x7f08003c; + public static final int expand_activities_button = 0x7f080041; + public static final int expanded_menu = 0x7f080042; + public static final int fill = 0x7f080043; + public static final int filled = 0x7f080046; + public static final int fixed = 0x7f080047; + public static final int forever = 0x7f080048; + public static final int ghost_view = 0x7f080049; + public static final int group_divider = 0x7f08004a; + public static final int home = 0x7f08004b; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int image = 0x7f080050; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int item_touch_helper_previous_elevation = 0x7f080053; + public static final int labeled = 0x7f080054; + public static final int largeLabel = 0x7f080055; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int listMode = 0x7f080059; + public static final int list_item = 0x7f08005a; + public static final int masked = 0x7f08005b; + public static final int message = 0x7f08005d; + public static final int mini = 0x7f08005f; + public static final int mtrl_child_content_container = 0x7f080060; + public static final int mtrl_internal_children_alpha_tag = 0x7f080061; + public static final int multiply = 0x7f080062; + public static final int navigation_header_container = 0x7f080063; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int outline = 0x7f08006a; + public static final int parallax = 0x7f08006b; + public static final int parentPanel = 0x7f08006c; + public static final int parent_matrix = 0x7f08006d; + public static final int pin = 0x7f08006e; + public static final int progress_circular = 0x7f08006f; + public static final int progress_horizontal = 0x7f080070; + public static final int radio = 0x7f080071; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int save_image_matrix = 0x7f080075; + public static final int save_non_transition_alpha = 0x7f080076; + public static final int save_scale_type = 0x7f080077; + public static final int screen = 0x7f080078; + public static final int scrollIndicatorDown = 0x7f08007a; + public static final int scrollIndicatorUp = 0x7f08007b; + public static final int scrollView = 0x7f08007c; + public static final int scrollable = 0x7f08007d; + public static final int search_badge = 0x7f08007e; + public static final int search_bar = 0x7f08007f; + public static final int search_button = 0x7f080080; + public static final int search_close_btn = 0x7f080081; + public static final int search_edit_frame = 0x7f080082; + public static final int search_go_btn = 0x7f080083; + public static final int search_mag_icon = 0x7f080084; + public static final int search_plate = 0x7f080085; + public static final int search_src_text = 0x7f080086; + public static final int search_voice_btn = 0x7f080087; + public static final int select_dialog_listview = 0x7f080088; + public static final int selected = 0x7f080089; + public static final int shortcut = 0x7f08008a; + public static final int smallLabel = 0x7f08008e; + public static final int snackbar_action = 0x7f08008f; + public static final int snackbar_text = 0x7f080090; + public static final int spacer = 0x7f080093; + public static final int split_action_bar = 0x7f080094; + public static final int src_atop = 0x7f080095; + public static final int src_in = 0x7f080096; + public static final int src_over = 0x7f080097; + public static final int start = 0x7f080098; + public static final int stretch = 0x7f08009a; + public static final int submenuarrow = 0x7f08009b; + public static final int submit_area = 0x7f08009c; + public static final int tabMode = 0x7f08009d; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int textSpacerNoButtons = 0x7f0800a3; + public static final int textSpacerNoTitle = 0x7f0800a4; + public static final int text_input_password_toggle = 0x7f0800a6; + public static final int textinput_counter = 0x7f0800a7; + public static final int textinput_error = 0x7f0800a8; + public static final int textinput_helper_text = 0x7f0800a9; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int titleDividerNoCustom = 0x7f0800ac; + public static final int title_template = 0x7f0800ad; + public static final int top = 0x7f0800ae; + public static final int topPanel = 0x7f0800af; + public static final int touch_outside = 0x7f0800b0; + public static final int transition_current_scene = 0x7f0800b1; + public static final int transition_layout_save = 0x7f0800b2; + public static final int transition_position = 0x7f0800b3; + public static final int transition_scene_layoutid_cache = 0x7f0800b4; + public static final int transition_transform = 0x7f0800b5; + public static final int uniform = 0x7f0800b6; + public static final int unlabeled = 0x7f0800b7; + public static final int up = 0x7f0800b8; + public static final int view_offset_helper = 0x7f0800ba; + public static final int visible = 0x7f0800bb; + public static final int wrap_content = 0x7f0800bd; + } + public static final class integer { + private integer() {} + + public static final int abc_config_activityDefaultDur = 0x7f090000; + public static final int abc_config_activityShortDur = 0x7f090001; + public static final int app_bar_elevation_anim_duration = 0x7f090002; + public static final int bottom_sheet_slide_duration = 0x7f090003; + public static final int cancel_button_image_alpha = 0x7f090004; + public static final int config_tooltipAnimTime = 0x7f090005; + public static final int design_snackbar_text_max_lines = 0x7f090006; + public static final int design_tab_indicator_anim_duration_ms = 0x7f090007; + public static final int hide_password_duration = 0x7f090008; + public static final int mtrl_btn_anim_delay_ms = 0x7f090009; + public static final int mtrl_btn_anim_duration_ms = 0x7f09000a; + public static final int mtrl_chip_anim_duration = 0x7f09000b; + public static final int mtrl_tab_indicator_anim_duration_ms = 0x7f09000c; + public static final int show_password_duration = 0x7f09000d; + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class interpolator { + private interpolator() {} + + public static final int mtrl_fast_out_linear_in = 0x7f0a0000; + public static final int mtrl_fast_out_slow_in = 0x7f0a0001; + public static final int mtrl_linear = 0x7f0a0002; + public static final int mtrl_linear_out_slow_in = 0x7f0a0003; + } + public static final class layout { + private layout() {} + + public static final int abc_action_bar_title_item = 0x7f0b0000; + public static final int abc_action_bar_up_container = 0x7f0b0001; + public static final int abc_action_menu_item_layout = 0x7f0b0002; + public static final int abc_action_menu_layout = 0x7f0b0003; + public static final int abc_action_mode_bar = 0x7f0b0004; + public static final int abc_action_mode_close_item_material = 0x7f0b0005; + public static final int abc_activity_chooser_view = 0x7f0b0006; + public static final int abc_activity_chooser_view_list_item = 0x7f0b0007; + public static final int abc_alert_dialog_button_bar_material = 0x7f0b0008; + public static final int abc_alert_dialog_material = 0x7f0b0009; + public static final int abc_alert_dialog_title_material = 0x7f0b000a; + public static final int abc_cascading_menu_item_layout = 0x7f0b000b; + public static final int abc_dialog_title_material = 0x7f0b000c; + public static final int abc_expanded_menu_layout = 0x7f0b000d; + public static final int abc_list_menu_item_checkbox = 0x7f0b000e; + public static final int abc_list_menu_item_icon = 0x7f0b000f; + public static final int abc_list_menu_item_layout = 0x7f0b0010; + public static final int abc_list_menu_item_radio = 0x7f0b0011; + public static final int abc_popup_menu_header_item_layout = 0x7f0b0012; + public static final int abc_popup_menu_item_layout = 0x7f0b0013; + public static final int abc_screen_content_include = 0x7f0b0014; + public static final int abc_screen_simple = 0x7f0b0015; + public static final int abc_screen_simple_overlay_action_mode = 0x7f0b0016; + public static final int abc_screen_toolbar = 0x7f0b0017; + public static final int abc_search_dropdown_item_icons_2line = 0x7f0b0018; + public static final int abc_search_view = 0x7f0b0019; + public static final int abc_select_dialog_material = 0x7f0b001a; + public static final int abc_tooltip = 0x7f0b001b; + public static final int design_bottom_navigation_item = 0x7f0b001d; + public static final int design_bottom_sheet_dialog = 0x7f0b001e; + public static final int design_layout_snackbar = 0x7f0b001f; + public static final int design_layout_snackbar_include = 0x7f0b0020; + public static final int design_layout_tab_icon = 0x7f0b0021; + public static final int design_layout_tab_text = 0x7f0b0022; + public static final int design_menu_item_action_area = 0x7f0b0023; + public static final int design_navigation_item = 0x7f0b0024; + public static final int design_navigation_item_header = 0x7f0b0025; + public static final int design_navigation_item_separator = 0x7f0b0026; + public static final int design_navigation_item_subheader = 0x7f0b0027; + public static final int design_navigation_menu = 0x7f0b0028; + public static final int design_navigation_menu_item = 0x7f0b0029; + public static final int design_text_input_password_icon = 0x7f0b002a; + public static final int mtrl_layout_snackbar = 0x7f0b002b; + public static final int mtrl_layout_snackbar_include = 0x7f0b002c; + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + public static final int select_dialog_item_material = 0x7f0b003c; + public static final int select_dialog_multichoice_material = 0x7f0b003d; + public static final int select_dialog_singlechoice_material = 0x7f0b003e; + public static final int support_simple_spinner_dropdown_item = 0x7f0b003f; + } + public static final class string { + private string() {} + + public static final int abc_action_bar_home_description = 0x7f0d0000; + public static final int abc_action_bar_up_description = 0x7f0d0001; + public static final int abc_action_menu_overflow_description = 0x7f0d0002; + public static final int abc_action_mode_done = 0x7f0d0003; + public static final int abc_activity_chooser_view_see_all = 0x7f0d0004; + public static final int abc_activitychooserview_choose_application = 0x7f0d0005; + public static final int abc_capital_off = 0x7f0d0006; + public static final int abc_capital_on = 0x7f0d0007; + public static final int abc_font_family_body_1_material = 0x7f0d0008; + public static final int abc_font_family_body_2_material = 0x7f0d0009; + public static final int abc_font_family_button_material = 0x7f0d000a; + public static final int abc_font_family_caption_material = 0x7f0d000b; + public static final int abc_font_family_display_1_material = 0x7f0d000c; + public static final int abc_font_family_display_2_material = 0x7f0d000d; + public static final int abc_font_family_display_3_material = 0x7f0d000e; + public static final int abc_font_family_display_4_material = 0x7f0d000f; + public static final int abc_font_family_headline_material = 0x7f0d0010; + public static final int abc_font_family_menu_material = 0x7f0d0011; + public static final int abc_font_family_subhead_material = 0x7f0d0012; + public static final int abc_font_family_title_material = 0x7f0d0013; + public static final int abc_menu_alt_shortcut_label = 0x7f0d0014; + public static final int abc_menu_ctrl_shortcut_label = 0x7f0d0015; + public static final int abc_menu_delete_shortcut_label = 0x7f0d0016; + public static final int abc_menu_enter_shortcut_label = 0x7f0d0017; + public static final int abc_menu_function_shortcut_label = 0x7f0d0018; + public static final int abc_menu_meta_shortcut_label = 0x7f0d0019; + public static final int abc_menu_shift_shortcut_label = 0x7f0d001a; + public static final int abc_menu_space_shortcut_label = 0x7f0d001b; + public static final int abc_menu_sym_shortcut_label = 0x7f0d001c; + public static final int abc_prepend_shortcut_label = 0x7f0d001d; + public static final int abc_search_hint = 0x7f0d001e; + public static final int abc_searchview_description_clear = 0x7f0d001f; + public static final int abc_searchview_description_query = 0x7f0d0020; + public static final int abc_searchview_description_search = 0x7f0d0021; + public static final int abc_searchview_description_submit = 0x7f0d0022; + public static final int abc_searchview_description_voice = 0x7f0d0023; + public static final int abc_shareactionprovider_share_with = 0x7f0d0024; + public static final int abc_shareactionprovider_share_with_application = 0x7f0d0025; + public static final int abc_toolbar_collapse_description = 0x7f0d0026; + public static final int appbar_scrolling_view_behavior = 0x7f0d0028; + public static final int bottom_sheet_behavior = 0x7f0d0029; + public static final int character_counter_content_description = 0x7f0d002a; + public static final int character_counter_pattern = 0x7f0d002b; + public static final int fab_transformation_scrim_behavior = 0x7f0d002c; + public static final int fab_transformation_sheet_behavior = 0x7f0d002d; + public static final int hide_bottom_view_on_scroll_behavior = 0x7f0d002f; + public static final int mtrl_chip_close_icon_content_description = 0x7f0d0030; + public static final int password_toggle_content_description = 0x7f0d0031; + public static final int path_password_eye = 0x7f0d0032; + public static final int path_password_eye_mask_strike_through = 0x7f0d0033; + public static final int path_password_eye_mask_visible = 0x7f0d0034; + public static final int path_password_strike_through = 0x7f0d0035; + public static final int search_menu_title = 0x7f0d0036; + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int AlertDialog_AppCompat = 0x7f0e0000; + public static final int AlertDialog_AppCompat_Light = 0x7f0e0001; + public static final int Animation_AppCompat_Dialog = 0x7f0e0002; + public static final int Animation_AppCompat_DropDownUp = 0x7f0e0003; + public static final int Animation_AppCompat_Tooltip = 0x7f0e0004; + public static final int Animation_Design_BottomSheetDialog = 0x7f0e0005; + public static final int Base_AlertDialog_AppCompat = 0x7f0e0008; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f0e0009; + public static final int Base_Animation_AppCompat_Dialog = 0x7f0e000a; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0e000b; + public static final int Base_Animation_AppCompat_Tooltip = 0x7f0e000c; + public static final int Base_CardView = 0x7f0e000d; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0e000f; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f0e000e; + public static final int Base_TextAppearance_AppCompat = 0x7f0e0010; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0e0011; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0e0012; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f0e0013; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0e0014; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0e0015; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0e0016; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0e0017; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0e0018; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0e0019; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0e001a; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f0e001b; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0e001c; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0e001d; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0e001e; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0e001f; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0e0020; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0e0021; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0e0022; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0e0023; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0e0024; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f0e0025; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0e0026; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0e0027; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0e0028; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f0e0029; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0e002a; + public static final int Base_TextAppearance_AppCompat_Tooltip = 0x7f0e002b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0e002c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0e002d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0e002e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0e002f; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0e0030; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0e0031; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0e0032; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0e0033; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0e0034; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0e0035; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0e0036; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0e0037; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0e0038; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0e0039; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0e003a; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0e003b; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0e003c; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0e003d; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0e003e; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0e003f; + public static final int Base_ThemeOverlay_AppCompat = 0x7f0e005f; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0e0060; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0e0061; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0e0062; + public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f0e0063; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0e0064; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0e0065; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog = 0x7f0e0066; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog_Alert = 0x7f0e0067; + public static final int Base_Theme_AppCompat = 0x7f0e0040; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0e0041; + public static final int Base_Theme_AppCompat_Dialog = 0x7f0e0042; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0e0046; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0e0043; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0e0044; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0e0045; + public static final int Base_Theme_AppCompat_Light = 0x7f0e0047; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0e0048; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0e0049; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0e004d; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0e004a; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0e004b; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0e004c; + public static final int Base_Theme_MaterialComponents = 0x7f0e004e; + public static final int Base_Theme_MaterialComponents_Bridge = 0x7f0e004f; + public static final int Base_Theme_MaterialComponents_CompactMenu = 0x7f0e0050; + public static final int Base_Theme_MaterialComponents_Dialog = 0x7f0e0051; + public static final int Base_Theme_MaterialComponents_DialogWhenLarge = 0x7f0e0055; + public static final int Base_Theme_MaterialComponents_Dialog_Alert = 0x7f0e0052; + public static final int Base_Theme_MaterialComponents_Dialog_FixedSize = 0x7f0e0053; + public static final int Base_Theme_MaterialComponents_Dialog_MinWidth = 0x7f0e0054; + public static final int Base_Theme_MaterialComponents_Light = 0x7f0e0056; + public static final int Base_Theme_MaterialComponents_Light_Bridge = 0x7f0e0057; + public static final int Base_Theme_MaterialComponents_Light_DarkActionBar = 0x7f0e0058; + public static final int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 0x7f0e0059; + public static final int Base_Theme_MaterialComponents_Light_Dialog = 0x7f0e005a; + public static final int Base_Theme_MaterialComponents_Light_DialogWhenLarge = 0x7f0e005e; + public static final int Base_Theme_MaterialComponents_Light_Dialog_Alert = 0x7f0e005b; + public static final int Base_Theme_MaterialComponents_Light_Dialog_FixedSize = 0x7f0e005c; + public static final int Base_Theme_MaterialComponents_Light_Dialog_MinWidth = 0x7f0e005d; + public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog = 0x7f0e006f; + public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert = 0x7f0e0070; + public static final int Base_V14_Theme_MaterialComponents = 0x7f0e0068; + public static final int Base_V14_Theme_MaterialComponents_Bridge = 0x7f0e0069; + public static final int Base_V14_Theme_MaterialComponents_Dialog = 0x7f0e006a; + public static final int Base_V14_Theme_MaterialComponents_Light = 0x7f0e006b; + public static final int Base_V14_Theme_MaterialComponents_Light_Bridge = 0x7f0e006c; + public static final int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge = 0x7f0e006d; + public static final int Base_V14_Theme_MaterialComponents_Light_Dialog = 0x7f0e006e; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f0e0075; + public static final int Base_V21_Theme_AppCompat = 0x7f0e0071; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0e0072; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f0e0073; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0e0074; + public static final int Base_V22_Theme_AppCompat = 0x7f0e0076; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f0e0077; + public static final int Base_V23_Theme_AppCompat = 0x7f0e0078; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f0e0079; + public static final int Base_V26_Theme_AppCompat = 0x7f0e007a; + public static final int Base_V26_Theme_AppCompat_Light = 0x7f0e007b; + public static final int Base_V26_Widget_AppCompat_Toolbar = 0x7f0e007c; + public static final int Base_V28_Theme_AppCompat = 0x7f0e007d; + public static final int Base_V28_Theme_AppCompat_Light = 0x7f0e007e; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f0e0083; + public static final int Base_V7_Theme_AppCompat = 0x7f0e007f; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0e0080; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f0e0081; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0e0082; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0e0084; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0e0085; + public static final int Base_V7_Widget_AppCompat_Toolbar = 0x7f0e0086; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f0e0087; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0e0088; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0e0089; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0e008a; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0e008b; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f0e008c; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0e008d; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0e008e; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f0e008f; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0e0090; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0e0091; + public static final int Base_Widget_AppCompat_Button = 0x7f0e0092; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0e0098; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0e0099; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0e0093; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0e0094; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0e0095; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0e0096; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f0e0097; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0e009a; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0e009b; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0e009c; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0e009d; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0e009e; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0e009f; + public static final int Base_Widget_AppCompat_EditText = 0x7f0e00a0; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f0e00a1; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0e00a2; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0e00a3; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0e00a4; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0e00a5; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0e00a6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0e00a7; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0e00a8; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0e00a9; + public static final int Base_Widget_AppCompat_ListMenuView = 0x7f0e00aa; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0e00ab; + public static final int Base_Widget_AppCompat_ListView = 0x7f0e00ac; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0e00ad; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0e00ae; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0e00af; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0e00b0; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0e00b1; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0e00b2; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0e00b3; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f0e00b4; + public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0e00b5; + public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0e00b6; + public static final int Base_Widget_AppCompat_SearchView = 0x7f0e00b7; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0e00b8; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f0e00b9; + public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f0e00ba; + public static final int Base_Widget_AppCompat_Spinner = 0x7f0e00bb; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0e00bc; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0e00bd; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f0e00be; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0e00bf; + public static final int Base_Widget_Design_TabLayout = 0x7f0e00c0; + public static final int Base_Widget_MaterialComponents_Chip = 0x7f0e00c1; + public static final int Base_Widget_MaterialComponents_TextInputEditText = 0x7f0e00c2; + public static final int Base_Widget_MaterialComponents_TextInputLayout = 0x7f0e00c3; + public static final int CardView = 0x7f0e00c4; + public static final int CardView_Dark = 0x7f0e00c5; + public static final int CardView_Light = 0x7f0e00c6; + public static final int Platform_AppCompat = 0x7f0e00c7; + public static final int Platform_AppCompat_Light = 0x7f0e00c8; + public static final int Platform_MaterialComponents = 0x7f0e00c9; + public static final int Platform_MaterialComponents_Dialog = 0x7f0e00ca; + public static final int Platform_MaterialComponents_Light = 0x7f0e00cb; + public static final int Platform_MaterialComponents_Light_Dialog = 0x7f0e00cc; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f0e00cd; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0e00ce; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0e00cf; + public static final int Platform_V21_AppCompat = 0x7f0e00d0; + public static final int Platform_V21_AppCompat_Light = 0x7f0e00d1; + public static final int Platform_V25_AppCompat = 0x7f0e00d2; + public static final int Platform_V25_AppCompat_Light = 0x7f0e00d3; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f0e00d4; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0e00d5; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0e00d6; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0e00d7; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0e00d8; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0e00d9; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 0x7f0e00da; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 0x7f0e00db; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0e00dc; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 0x7f0e00dd; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0e00e3; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0e00de; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0e00df; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0e00e0; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0e00e1; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0e00e2; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0e00e4; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0e00e5; + public static final int TextAppearance_AppCompat = 0x7f0e00e6; + public static final int TextAppearance_AppCompat_Body1 = 0x7f0e00e7; + public static final int TextAppearance_AppCompat_Body2 = 0x7f0e00e8; + public static final int TextAppearance_AppCompat_Button = 0x7f0e00e9; + public static final int TextAppearance_AppCompat_Caption = 0x7f0e00ea; + public static final int TextAppearance_AppCompat_Display1 = 0x7f0e00eb; + public static final int TextAppearance_AppCompat_Display2 = 0x7f0e00ec; + public static final int TextAppearance_AppCompat_Display3 = 0x7f0e00ed; + public static final int TextAppearance_AppCompat_Display4 = 0x7f0e00ee; + public static final int TextAppearance_AppCompat_Headline = 0x7f0e00ef; + public static final int TextAppearance_AppCompat_Inverse = 0x7f0e00f0; + public static final int TextAppearance_AppCompat_Large = 0x7f0e00f1; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0e00f2; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0e00f3; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0e00f4; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0e00f5; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0e00f6; + public static final int TextAppearance_AppCompat_Medium = 0x7f0e00f7; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0e00f8; + public static final int TextAppearance_AppCompat_Menu = 0x7f0e00f9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0e00fa; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0e00fb; + public static final int TextAppearance_AppCompat_Small = 0x7f0e00fc; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0e00fd; + public static final int TextAppearance_AppCompat_Subhead = 0x7f0e00fe; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0e00ff; + public static final int TextAppearance_AppCompat_Title = 0x7f0e0100; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0e0101; + public static final int TextAppearance_AppCompat_Tooltip = 0x7f0e0102; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0e0103; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0e0104; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0e0105; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0e0106; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0e0107; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0e0108; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0e0109; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0e010a; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0e010b; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0e010c; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0e010d; + public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0e010e; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0e010f; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0e0110; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0e0111; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0e0112; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0e0113; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0e0114; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0e0115; + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded = 0x7f0e0120; + public static final int TextAppearance_Design_Counter = 0x7f0e0121; + public static final int TextAppearance_Design_Counter_Overflow = 0x7f0e0122; + public static final int TextAppearance_Design_Error = 0x7f0e0123; + public static final int TextAppearance_Design_HelperText = 0x7f0e0124; + public static final int TextAppearance_Design_Hint = 0x7f0e0125; + public static final int TextAppearance_Design_Snackbar_Message = 0x7f0e0126; + public static final int TextAppearance_Design_Tab = 0x7f0e0127; + public static final int TextAppearance_MaterialComponents_Body1 = 0x7f0e0128; + public static final int TextAppearance_MaterialComponents_Body2 = 0x7f0e0129; + public static final int TextAppearance_MaterialComponents_Button = 0x7f0e012a; + public static final int TextAppearance_MaterialComponents_Caption = 0x7f0e012b; + public static final int TextAppearance_MaterialComponents_Chip = 0x7f0e012c; + public static final int TextAppearance_MaterialComponents_Headline1 = 0x7f0e012d; + public static final int TextAppearance_MaterialComponents_Headline2 = 0x7f0e012e; + public static final int TextAppearance_MaterialComponents_Headline3 = 0x7f0e012f; + public static final int TextAppearance_MaterialComponents_Headline4 = 0x7f0e0130; + public static final int TextAppearance_MaterialComponents_Headline5 = 0x7f0e0131; + public static final int TextAppearance_MaterialComponents_Headline6 = 0x7f0e0132; + public static final int TextAppearance_MaterialComponents_Overline = 0x7f0e0133; + public static final int TextAppearance_MaterialComponents_Subtitle1 = 0x7f0e0134; + public static final int TextAppearance_MaterialComponents_Subtitle2 = 0x7f0e0135; + public static final int TextAppearance_MaterialComponents_Tab = 0x7f0e0136; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0e0137; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0e0138; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0e0139; + public static final int ThemeOverlay_AppCompat = 0x7f0e016a; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0e016b; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f0e016c; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0e016d; + public static final int ThemeOverlay_AppCompat_Dialog = 0x7f0e016e; + public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0e016f; + public static final int ThemeOverlay_AppCompat_Light = 0x7f0e0170; + public static final int ThemeOverlay_MaterialComponents = 0x7f0e0171; + public static final int ThemeOverlay_MaterialComponents_ActionBar = 0x7f0e0172; + public static final int ThemeOverlay_MaterialComponents_Dark = 0x7f0e0173; + public static final int ThemeOverlay_MaterialComponents_Dark_ActionBar = 0x7f0e0174; + public static final int ThemeOverlay_MaterialComponents_Dialog = 0x7f0e0175; + public static final int ThemeOverlay_MaterialComponents_Dialog_Alert = 0x7f0e0176; + public static final int ThemeOverlay_MaterialComponents_Light = 0x7f0e0177; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText = 0x7f0e0178; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox = 0x7f0e0179; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense = 0x7f0e017a; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox = 0x7f0e017b; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 0x7f0e017c; + public static final int Theme_AppCompat = 0x7f0e013a; + public static final int Theme_AppCompat_CompactMenu = 0x7f0e013b; + public static final int Theme_AppCompat_DayNight = 0x7f0e013c; + public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0e013d; + public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0e013e; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0e0141; + public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0e013f; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0e0140; + public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0e0142; + public static final int Theme_AppCompat_Dialog = 0x7f0e0143; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0e0146; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f0e0144; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0e0145; + public static final int Theme_AppCompat_Light = 0x7f0e0147; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0e0148; + public static final int Theme_AppCompat_Light_Dialog = 0x7f0e0149; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0e014c; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0e014a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0e014b; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0e014d; + public static final int Theme_AppCompat_NoActionBar = 0x7f0e014e; + public static final int Theme_Design = 0x7f0e014f; + public static final int Theme_Design_BottomSheetDialog = 0x7f0e0150; + public static final int Theme_Design_Light = 0x7f0e0151; + public static final int Theme_Design_Light_BottomSheetDialog = 0x7f0e0152; + public static final int Theme_Design_Light_NoActionBar = 0x7f0e0153; + public static final int Theme_Design_NoActionBar = 0x7f0e0154; + public static final int Theme_MaterialComponents = 0x7f0e0155; + public static final int Theme_MaterialComponents_BottomSheetDialog = 0x7f0e0156; + public static final int Theme_MaterialComponents_Bridge = 0x7f0e0157; + public static final int Theme_MaterialComponents_CompactMenu = 0x7f0e0158; + public static final int Theme_MaterialComponents_Dialog = 0x7f0e0159; + public static final int Theme_MaterialComponents_DialogWhenLarge = 0x7f0e015c; + public static final int Theme_MaterialComponents_Dialog_Alert = 0x7f0e015a; + public static final int Theme_MaterialComponents_Dialog_MinWidth = 0x7f0e015b; + public static final int Theme_MaterialComponents_Light = 0x7f0e015d; + public static final int Theme_MaterialComponents_Light_BottomSheetDialog = 0x7f0e015e; + public static final int Theme_MaterialComponents_Light_Bridge = 0x7f0e015f; + public static final int Theme_MaterialComponents_Light_DarkActionBar = 0x7f0e0160; + public static final int Theme_MaterialComponents_Light_DarkActionBar_Bridge = 0x7f0e0161; + public static final int Theme_MaterialComponents_Light_Dialog = 0x7f0e0162; + public static final int Theme_MaterialComponents_Light_DialogWhenLarge = 0x7f0e0165; + public static final int Theme_MaterialComponents_Light_Dialog_Alert = 0x7f0e0163; + public static final int Theme_MaterialComponents_Light_Dialog_MinWidth = 0x7f0e0164; + public static final int Theme_MaterialComponents_Light_NoActionBar = 0x7f0e0166; + public static final int Theme_MaterialComponents_Light_NoActionBar_Bridge = 0x7f0e0167; + public static final int Theme_MaterialComponents_NoActionBar = 0x7f0e0168; + public static final int Theme_MaterialComponents_NoActionBar_Bridge = 0x7f0e0169; + public static final int Widget_AppCompat_ActionBar = 0x7f0e017d; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0e017e; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0e017f; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0e0180; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0e0181; + public static final int Widget_AppCompat_ActionButton = 0x7f0e0182; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0e0183; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0e0184; + public static final int Widget_AppCompat_ActionMode = 0x7f0e0185; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f0e0186; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0e0187; + public static final int Widget_AppCompat_Button = 0x7f0e0188; + public static final int Widget_AppCompat_ButtonBar = 0x7f0e018e; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0e018f; + public static final int Widget_AppCompat_Button_Borderless = 0x7f0e0189; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0e018a; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0e018b; + public static final int Widget_AppCompat_Button_Colored = 0x7f0e018c; + public static final int Widget_AppCompat_Button_Small = 0x7f0e018d; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0e0190; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0e0191; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0e0192; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0e0193; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0e0194; + public static final int Widget_AppCompat_EditText = 0x7f0e0195; + public static final int Widget_AppCompat_ImageButton = 0x7f0e0196; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f0e0197; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0e0198; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0e0199; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0e019a; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0e019b; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0e019c; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0e019d; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0e019e; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0e019f; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f0e01a0; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0e01a1; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0e01a2; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0e01a3; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0e01a4; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0e01a5; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0e01a6; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0e01a7; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0e01a8; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0e01a9; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0e01aa; + public static final int Widget_AppCompat_Light_SearchView = 0x7f0e01ab; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0e01ac; + public static final int Widget_AppCompat_ListMenuView = 0x7f0e01ad; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f0e01ae; + public static final int Widget_AppCompat_ListView = 0x7f0e01af; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f0e01b0; + public static final int Widget_AppCompat_ListView_Menu = 0x7f0e01b1; + public static final int Widget_AppCompat_PopupMenu = 0x7f0e01b2; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0e01b3; + public static final int Widget_AppCompat_PopupWindow = 0x7f0e01b4; + public static final int Widget_AppCompat_ProgressBar = 0x7f0e01b5; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0e01b6; + public static final int Widget_AppCompat_RatingBar = 0x7f0e01b7; + public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0e01b8; + public static final int Widget_AppCompat_RatingBar_Small = 0x7f0e01b9; + public static final int Widget_AppCompat_SearchView = 0x7f0e01ba; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0e01bb; + public static final int Widget_AppCompat_SeekBar = 0x7f0e01bc; + public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f0e01bd; + public static final int Widget_AppCompat_Spinner = 0x7f0e01be; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0e01bf; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0e01c0; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0e01c1; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0e01c2; + public static final int Widget_AppCompat_Toolbar = 0x7f0e01c3; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0e01c4; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Design_AppBarLayout = 0x7f0e01c7; + public static final int Widget_Design_BottomNavigationView = 0x7f0e01c8; + public static final int Widget_Design_BottomSheet_Modal = 0x7f0e01c9; + public static final int Widget_Design_CollapsingToolbar = 0x7f0e01ca; + public static final int Widget_Design_FloatingActionButton = 0x7f0e01cb; + public static final int Widget_Design_NavigationView = 0x7f0e01cc; + public static final int Widget_Design_ScrimInsetsFrameLayout = 0x7f0e01cd; + public static final int Widget_Design_Snackbar = 0x7f0e01ce; + public static final int Widget_Design_TabLayout = 0x7f0e01cf; + public static final int Widget_Design_TextInputLayout = 0x7f0e01d0; + public static final int Widget_MaterialComponents_BottomAppBar = 0x7f0e01d1; + public static final int Widget_MaterialComponents_BottomAppBar_Colored = 0x7f0e01d2; + public static final int Widget_MaterialComponents_BottomNavigationView = 0x7f0e01d3; + public static final int Widget_MaterialComponents_BottomNavigationView_Colored = 0x7f0e01d4; + public static final int Widget_MaterialComponents_BottomSheet_Modal = 0x7f0e01d5; + public static final int Widget_MaterialComponents_Button = 0x7f0e01d6; + public static final int Widget_MaterialComponents_Button_Icon = 0x7f0e01d7; + public static final int Widget_MaterialComponents_Button_OutlinedButton = 0x7f0e01d8; + public static final int Widget_MaterialComponents_Button_OutlinedButton_Icon = 0x7f0e01d9; + public static final int Widget_MaterialComponents_Button_TextButton = 0x7f0e01da; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog = 0x7f0e01db; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog_Icon = 0x7f0e01dc; + public static final int Widget_MaterialComponents_Button_TextButton_Icon = 0x7f0e01dd; + public static final int Widget_MaterialComponents_Button_UnelevatedButton = 0x7f0e01de; + public static final int Widget_MaterialComponents_Button_UnelevatedButton_Icon = 0x7f0e01df; + public static final int Widget_MaterialComponents_CardView = 0x7f0e01e0; + public static final int Widget_MaterialComponents_ChipGroup = 0x7f0e01e5; + public static final int Widget_MaterialComponents_Chip_Action = 0x7f0e01e1; + public static final int Widget_MaterialComponents_Chip_Choice = 0x7f0e01e2; + public static final int Widget_MaterialComponents_Chip_Entry = 0x7f0e01e3; + public static final int Widget_MaterialComponents_Chip_Filter = 0x7f0e01e4; + public static final int Widget_MaterialComponents_FloatingActionButton = 0x7f0e01e6; + public static final int Widget_MaterialComponents_NavigationView = 0x7f0e01e7; + public static final int Widget_MaterialComponents_Snackbar = 0x7f0e01e8; + public static final int Widget_MaterialComponents_Snackbar_FullWidth = 0x7f0e01e9; + public static final int Widget_MaterialComponents_TabLayout = 0x7f0e01ea; + public static final int Widget_MaterialComponents_TabLayout_Colored = 0x7f0e01eb; + public static final int Widget_MaterialComponents_TextInputEditText_FilledBox = 0x7f0e01ec; + public static final int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense = 0x7f0e01ed; + public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox = 0x7f0e01ee; + public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense = 0x7f0e01ef; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox = 0x7f0e01f0; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense = 0x7f0e01f1; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox = 0x7f0e01f2; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense = 0x7f0e01f3; + public static final int Widget_MaterialComponents_Toolbar = 0x7f0e01f4; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ActionBar = { 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f0300a4, 0x7f0300a9, 0x7f0300aa, 0x7f0300b5, 0x7f0300df, 0x7f0300e4, 0x7f0300e9, 0x7f0300ea, 0x7f0300ec, 0x7f0300f6, 0x7f030100, 0x7f030123, 0x7f03012f, 0x7f030140, 0x7f030144, 0x7f030145, 0x7f030173, 0x7f030176, 0x7f0301bb, 0x7f0301c5 }; + public static final int ActionBar_background = 0; + public static final int ActionBar_backgroundSplit = 1; + public static final int ActionBar_backgroundStacked = 2; + public static final int ActionBar_contentInsetEnd = 3; + public static final int ActionBar_contentInsetEndWithActions = 4; + public static final int ActionBar_contentInsetLeft = 5; + public static final int ActionBar_contentInsetRight = 6; + public static final int ActionBar_contentInsetStart = 7; + public static final int ActionBar_contentInsetStartWithNavigation = 8; + public static final int ActionBar_customNavigationLayout = 9; + public static final int ActionBar_displayOptions = 10; + public static final int ActionBar_divider = 11; + public static final int ActionBar_elevation = 12; + public static final int ActionBar_height = 13; + public static final int ActionBar_hideOnContentScroll = 14; + public static final int ActionBar_homeAsUpIndicator = 15; + public static final int ActionBar_homeLayout = 16; + public static final int ActionBar_icon = 17; + public static final int ActionBar_indeterminateProgressStyle = 18; + public static final int ActionBar_itemPadding = 19; + public static final int ActionBar_logo = 20; + public static final int ActionBar_navigationMode = 21; + public static final int ActionBar_popupTheme = 22; + public static final int ActionBar_progressBarPadding = 23; + public static final int ActionBar_progressBarStyle = 24; + public static final int ActionBar_subtitle = 25; + public static final int ActionBar_subtitleTextStyle = 26; + public static final int ActionBar_title = 27; + public static final int ActionBar_titleTextStyle = 28; + public static final int[] ActionBarLayout = { 0x10100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int[] ActionMenuItemView = { 0x101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMode = { 0x7f030031, 0x7f030032, 0x7f03007e, 0x7f0300df, 0x7f030176, 0x7f0301c5 }; + public static final int ActionMode_background = 0; + public static final int ActionMode_backgroundSplit = 1; + public static final int ActionMode_closeItemLayout = 2; + public static final int ActionMode_height = 3; + public static final int ActionMode_subtitleTextStyle = 4; + public static final int ActionMode_titleTextStyle = 5; + public static final int[] ActivityChooserView = { 0x7f0300ba, 0x7f0300f7 }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + public static final int ActivityChooserView_initialActivityCount = 1; + public static final int[] AlertDialog = { 0x10100f2, 0x7f030052, 0x7f030053, 0x7f03011a, 0x7f03011b, 0x7f03012c, 0x7f03015b, 0x7f03015c }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonIconDimen = 1; + public static final int AlertDialog_buttonPanelSideLayout = 2; + public static final int AlertDialog_listItemLayout = 3; + public static final int AlertDialog_listLayout = 4; + public static final int AlertDialog_multiChoiceItemLayout = 5; + public static final int AlertDialog_showTitle = 6; + public static final int AlertDialog_singleChoiceItemLayout = 7; + public static final int[] AppBarLayout = { 0x10100d4, 0x101048f, 0x1010540, 0x7f0300b5, 0x7f0300bb, 0x7f030115 }; + public static final int AppBarLayout_android_background = 0; + public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; + public static final int AppBarLayout_android_keyboardNavigationCluster = 2; + public static final int AppBarLayout_elevation = 3; + public static final int AppBarLayout_expanded = 4; + public static final int AppBarLayout_liftOnScroll = 5; + public static final int[] AppBarLayoutStates = { 0x7f030169, 0x7f03016a, 0x7f03016b, 0x7f03016c }; + public static final int AppBarLayoutStates_state_collapsed = 0; + public static final int AppBarLayoutStates_state_collapsible = 1; + public static final int AppBarLayoutStates_state_liftable = 2; + public static final int AppBarLayoutStates_state_lifted = 3; + public static final int[] AppBarLayout_Layout = { 0x7f030113, 0x7f030114 }; + public static final int AppBarLayout_Layout_layout_scrollFlags = 0; + public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; + public static final int[] AppCompatImageView = { 0x1010119, 0x7f030166, 0x7f0301b9, 0x7f0301ba }; + public static final int AppCompatImageView_android_src = 0; + public static final int AppCompatImageView_srcCompat = 1; + public static final int AppCompatImageView_tint = 2; + public static final int AppCompatImageView_tintMode = 3; + public static final int[] AppCompatSeekBar = { 0x1010142, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8 }; + public static final int AppCompatSeekBar_android_thumb = 0; + public static final int AppCompatSeekBar_tickMark = 1; + public static final int AppCompatSeekBar_tickMarkTint = 2; + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + public static final int[] AppCompatTextHelper = { 0x1010034, 0x101016d, 0x101016e, 0x101016f, 0x1010170, 0x1010392, 0x1010393 }; + public static final int AppCompatTextHelper_android_textAppearance = 0; + public static final int AppCompatTextHelper_android_drawableTop = 1; + public static final int AppCompatTextHelper_android_drawableBottom = 2; + public static final int AppCompatTextHelper_android_drawableLeft = 3; + public static final int AppCompatTextHelper_android_drawableRight = 4; + public static final int AppCompatTextHelper_android_drawableStart = 5; + public static final int AppCompatTextHelper_android_drawableEnd = 6; + public static final int[] AppCompatTextView = { 0x1010034, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030030, 0x7f0300ce, 0x7f0300d1, 0x7f030108, 0x7f030116, 0x7f030196 }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_autoSizeMaxTextSize = 1; + public static final int AppCompatTextView_autoSizeMinTextSize = 2; + public static final int AppCompatTextView_autoSizePresetSizes = 3; + public static final int AppCompatTextView_autoSizeStepGranularity = 4; + public static final int AppCompatTextView_autoSizeTextType = 5; + public static final int AppCompatTextView_firstBaselineToTopHeight = 6; + public static final int AppCompatTextView_fontFamily = 7; + public static final int AppCompatTextView_lastBaselineToBottomHeight = 8; + public static final int AppCompatTextView_lineHeight = 9; + public static final int AppCompatTextView_textAllCaps = 10; + public static final int[] AppCompatTheme = { 0x1010057, 0x10100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, 0x7f030025, 0x7f03002b, 0x7f03003e, 0x7f03004c, 0x7f03004d, 0x7f03004e, 0x7f03004f, 0x7f030050, 0x7f030054, 0x7f030055, 0x7f03005f, 0x7f030064, 0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008e, 0x7f03009d, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300ab, 0x7f0300ad, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3, 0x7f0300b4, 0x7f0300e9, 0x7f0300f5, 0x7f030118, 0x7f030119, 0x7f03011c, 0x7f03011d, 0x7f03011e, 0x7f03011f, 0x7f030120, 0x7f030121, 0x7f030122, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013f, 0x7f030141, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f030156, 0x7f030163, 0x7f030164, 0x7f03017a, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301ac, 0x7f0301ad, 0x7f0301c7, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca, 0x7f0301d1, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc }; + public static final int AppCompatTheme_android_windowIsFloating = 0; + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + public static final int AppCompatTheme_actionBarDivider = 2; + public static final int AppCompatTheme_actionBarItemBackground = 3; + public static final int AppCompatTheme_actionBarPopupTheme = 4; + public static final int AppCompatTheme_actionBarSize = 5; + public static final int AppCompatTheme_actionBarSplitStyle = 6; + public static final int AppCompatTheme_actionBarStyle = 7; + public static final int AppCompatTheme_actionBarTabBarStyle = 8; + public static final int AppCompatTheme_actionBarTabStyle = 9; + public static final int AppCompatTheme_actionBarTabTextStyle = 10; + public static final int AppCompatTheme_actionBarTheme = 11; + public static final int AppCompatTheme_actionBarWidgetTheme = 12; + public static final int AppCompatTheme_actionButtonStyle = 13; + public static final int AppCompatTheme_actionDropDownStyle = 14; + public static final int AppCompatTheme_actionMenuTextAppearance = 15; + public static final int AppCompatTheme_actionMenuTextColor = 16; + public static final int AppCompatTheme_actionModeBackground = 17; + public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; + public static final int AppCompatTheme_actionModeCloseDrawable = 19; + public static final int AppCompatTheme_actionModeCopyDrawable = 20; + public static final int AppCompatTheme_actionModeCutDrawable = 21; + public static final int AppCompatTheme_actionModeFindDrawable = 22; + public static final int AppCompatTheme_actionModePasteDrawable = 23; + public static final int AppCompatTheme_actionModePopupWindowStyle = 24; + public static final int AppCompatTheme_actionModeSelectAllDrawable = 25; + public static final int AppCompatTheme_actionModeShareDrawable = 26; + public static final int AppCompatTheme_actionModeSplitBackground = 27; + public static final int AppCompatTheme_actionModeStyle = 28; + public static final int AppCompatTheme_actionModeWebSearchDrawable = 29; + public static final int AppCompatTheme_actionOverflowButtonStyle = 30; + public static final int AppCompatTheme_actionOverflowMenuStyle = 31; + public static final int AppCompatTheme_activityChooserViewStyle = 32; + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 33; + public static final int AppCompatTheme_alertDialogCenterButtons = 34; + public static final int AppCompatTheme_alertDialogStyle = 35; + public static final int AppCompatTheme_alertDialogTheme = 36; + public static final int AppCompatTheme_autoCompleteTextViewStyle = 37; + public static final int AppCompatTheme_borderlessButtonStyle = 38; + public static final int AppCompatTheme_buttonBarButtonStyle = 39; + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 40; + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 41; + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 42; + public static final int AppCompatTheme_buttonBarStyle = 43; + public static final int AppCompatTheme_buttonStyle = 44; + public static final int AppCompatTheme_buttonStyleSmall = 45; + public static final int AppCompatTheme_checkboxStyle = 46; + public static final int AppCompatTheme_checkedTextViewStyle = 47; + public static final int AppCompatTheme_colorAccent = 48; + public static final int AppCompatTheme_colorBackgroundFloating = 49; + public static final int AppCompatTheme_colorButtonNormal = 50; + public static final int AppCompatTheme_colorControlActivated = 51; + public static final int AppCompatTheme_colorControlHighlight = 52; + public static final int AppCompatTheme_colorControlNormal = 53; + public static final int AppCompatTheme_colorError = 54; + public static final int AppCompatTheme_colorPrimary = 55; + public static final int AppCompatTheme_colorPrimaryDark = 56; + public static final int AppCompatTheme_colorSwitchThumbNormal = 57; + public static final int AppCompatTheme_controlBackground = 58; + public static final int AppCompatTheme_dialogCornerRadius = 59; + public static final int AppCompatTheme_dialogPreferredPadding = 60; + public static final int AppCompatTheme_dialogTheme = 61; + public static final int AppCompatTheme_dividerHorizontal = 62; + public static final int AppCompatTheme_dividerVertical = 63; + public static final int AppCompatTheme_dropDownListViewStyle = 64; + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 65; + public static final int AppCompatTheme_editTextBackground = 66; + public static final int AppCompatTheme_editTextColor = 67; + public static final int AppCompatTheme_editTextStyle = 68; + public static final int AppCompatTheme_homeAsUpIndicator = 69; + public static final int AppCompatTheme_imageButtonStyle = 70; + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 71; + public static final int AppCompatTheme_listDividerAlertDialog = 72; + public static final int AppCompatTheme_listMenuViewStyle = 73; + public static final int AppCompatTheme_listPopupWindowStyle = 74; + public static final int AppCompatTheme_listPreferredItemHeight = 75; + public static final int AppCompatTheme_listPreferredItemHeightLarge = 76; + public static final int AppCompatTheme_listPreferredItemHeightSmall = 77; + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 78; + public static final int AppCompatTheme_listPreferredItemPaddingRight = 79; + public static final int AppCompatTheme_panelBackground = 80; + public static final int AppCompatTheme_panelMenuListTheme = 81; + public static final int AppCompatTheme_panelMenuListWidth = 82; + public static final int AppCompatTheme_popupMenuStyle = 83; + public static final int AppCompatTheme_popupWindowStyle = 84; + public static final int AppCompatTheme_radioButtonStyle = 85; + public static final int AppCompatTheme_ratingBarStyle = 86; + public static final int AppCompatTheme_ratingBarStyleIndicator = 87; + public static final int AppCompatTheme_ratingBarStyleSmall = 88; + public static final int AppCompatTheme_searchViewStyle = 89; + public static final int AppCompatTheme_seekBarStyle = 90; + public static final int AppCompatTheme_selectableItemBackground = 91; + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 92; + public static final int AppCompatTheme_spinnerDropDownItemStyle = 93; + public static final int AppCompatTheme_spinnerStyle = 94; + public static final int AppCompatTheme_switchStyle = 95; + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 96; + public static final int AppCompatTheme_textAppearanceListItem = 97; + public static final int AppCompatTheme_textAppearanceListItemSecondary = 98; + public static final int AppCompatTheme_textAppearanceListItemSmall = 99; + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 100; + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 101; + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 102; + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 103; + public static final int AppCompatTheme_textColorAlertDialogListItem = 104; + public static final int AppCompatTheme_textColorSearchUrl = 105; + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 106; + public static final int AppCompatTheme_toolbarStyle = 107; + public static final int AppCompatTheme_tooltipForegroundColor = 108; + public static final int AppCompatTheme_tooltipFrameBackground = 109; + public static final int AppCompatTheme_viewInflaterClass = 110; + public static final int AppCompatTheme_windowActionBar = 111; + public static final int AppCompatTheme_windowActionBarOverlay = 112; + public static final int AppCompatTheme_windowActionModeOverlay = 113; + public static final int AppCompatTheme_windowFixedHeightMajor = 114; + public static final int AppCompatTheme_windowFixedHeightMinor = 115; + public static final int AppCompatTheme_windowFixedWidthMajor = 116; + public static final int AppCompatTheme_windowFixedWidthMinor = 117; + public static final int AppCompatTheme_windowMinWidthMajor = 118; + public static final int AppCompatTheme_windowMinWidthMinor = 119; + public static final int AppCompatTheme_windowNoTitle = 120; + public static final int[] BottomAppBar = { 0x7f030034, 0x7f0300c3, 0x7f0300c4, 0x7f0300c5, 0x7f0300c6, 0x7f0300e5 }; + public static final int BottomAppBar_backgroundTint = 0; + public static final int BottomAppBar_fabAlignmentMode = 1; + public static final int BottomAppBar_fabCradleMargin = 2; + public static final int BottomAppBar_fabCradleRoundedCornerRadius = 3; + public static final int BottomAppBar_fabCradleVerticalOffset = 4; + public static final int BottomAppBar_hideOnScroll = 5; + public static final int[] BottomNavigationView = { 0x7f0300b5, 0x7f0300fa, 0x7f0300fc, 0x7f0300fe, 0x7f0300ff, 0x7f030103, 0x7f030104, 0x7f030105, 0x7f030107, 0x7f03012b }; + public static final int BottomNavigationView_elevation = 0; + public static final int BottomNavigationView_itemBackground = 1; + public static final int BottomNavigationView_itemHorizontalTranslationEnabled = 2; + public static final int BottomNavigationView_itemIconSize = 3; + public static final int BottomNavigationView_itemIconTint = 4; + public static final int BottomNavigationView_itemTextAppearanceActive = 5; + public static final int BottomNavigationView_itemTextAppearanceInactive = 6; + public static final int BottomNavigationView_itemTextColor = 7; + public static final int BottomNavigationView_labelVisibilityMode = 8; + public static final int BottomNavigationView_menu = 9; + public static final int[] BottomSheetBehavior_Layout = { 0x7f030038, 0x7f030039, 0x7f03003b, 0x7f03003c }; + public static final int BottomSheetBehavior_Layout_behavior_fitToContents = 0; + public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; + public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 2; + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 3; + public static final int[] ButtonBarLayout = { 0x7f030026 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] CardView = { 0x101013f, 0x1010140, 0x7f030058, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a, 0x7f03009b }; + public static final int CardView_android_minWidth = 0; + public static final int CardView_android_minHeight = 1; + public static final int CardView_cardBackgroundColor = 2; + public static final int CardView_cardCornerRadius = 3; + public static final int CardView_cardElevation = 4; + public static final int CardView_cardMaxElevation = 5; + public static final int CardView_cardPreventCornerOverlap = 6; + public static final int CardView_cardUseCompatPadding = 7; + public static final int CardView_contentPadding = 8; + public static final int CardView_contentPaddingBottom = 9; + public static final int CardView_contentPaddingLeft = 10; + public static final int CardView_contentPaddingRight = 11; + public static final int CardView_contentPaddingTop = 12; + public static final int[] Chip = { 0x1010034, 0x10100ab, 0x101011f, 0x101014f, 0x10101e5, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030065, 0x7f030066, 0x7f030067, 0x7f030069, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f03006d, 0x7f03006e, 0x7f030073, 0x7f030074, 0x7f030075, 0x7f030077, 0x7f030078, 0x7f030079, 0x7f03007a, 0x7f03007b, 0x7f03007c, 0x7f03007d, 0x7f0300e3, 0x7f0300ed, 0x7f0300f1, 0x7f03014d, 0x7f030159, 0x7f0301ae, 0x7f0301b0 }; + public static final int Chip_android_textAppearance = 0; + public static final int Chip_android_ellipsize = 1; + public static final int Chip_android_maxWidth = 2; + public static final int Chip_android_text = 3; + public static final int Chip_android_checkable = 4; + public static final int Chip_checkedIcon = 5; + public static final int Chip_checkedIconEnabled = 6; + public static final int Chip_checkedIconVisible = 7; + public static final int Chip_chipBackgroundColor = 8; + public static final int Chip_chipCornerRadius = 9; + public static final int Chip_chipEndPadding = 10; + public static final int Chip_chipIcon = 11; + public static final int Chip_chipIconEnabled = 12; + public static final int Chip_chipIconSize = 13; + public static final int Chip_chipIconTint = 14; + public static final int Chip_chipIconVisible = 15; + public static final int Chip_chipMinHeight = 16; + public static final int Chip_chipStartPadding = 17; + public static final int Chip_chipStrokeColor = 18; + public static final int Chip_chipStrokeWidth = 19; + public static final int Chip_closeIcon = 20; + public static final int Chip_closeIconEnabled = 21; + public static final int Chip_closeIconEndPadding = 22; + public static final int Chip_closeIconSize = 23; + public static final int Chip_closeIconStartPadding = 24; + public static final int Chip_closeIconTint = 25; + public static final int Chip_closeIconVisible = 26; + public static final int Chip_hideMotionSpec = 27; + public static final int Chip_iconEndPadding = 28; + public static final int Chip_iconStartPadding = 29; + public static final int Chip_rippleColor = 30; + public static final int Chip_showMotionSpec = 31; + public static final int Chip_textEndPadding = 32; + public static final int Chip_textStartPadding = 33; + public static final int[] ChipGroup = { 0x7f030060, 0x7f03006f, 0x7f030070, 0x7f030071, 0x7f03015d, 0x7f03015e }; + public static final int ChipGroup_checkedChip = 0; + public static final int ChipGroup_chipSpacing = 1; + public static final int ChipGroup_chipSpacingHorizontal = 2; + public static final int ChipGroup_chipSpacingVertical = 3; + public static final int ChipGroup_singleLine = 4; + public static final int ChipGroup_singleSelection = 5; + public static final int[] CollapsingToolbarLayout = { 0x7f030081, 0x7f030082, 0x7f03009c, 0x7f0300bc, 0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f03014e, 0x7f030150, 0x7f03016e, 0x7f0301bb, 0x7f0301bc, 0x7f0301c6 }; + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 0; + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 1; + public static final int CollapsingToolbarLayout_contentScrim = 2; + public static final int CollapsingToolbarLayout_expandedTitleGravity = 3; + public static final int CollapsingToolbarLayout_expandedTitleMargin = 4; + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 6; + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 7; + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 8; + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 9; + public static final int CollapsingToolbarLayout_scrimAnimationDuration = 10; + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11; + public static final int CollapsingToolbarLayout_statusBarScrim = 12; + public static final int CollapsingToolbarLayout_title = 13; + public static final int CollapsingToolbarLayout_titleEnabled = 14; + public static final int CollapsingToolbarLayout_toolbarId = 15; + public static final int[] CollapsingToolbarLayout_Layout = { 0x7f03010e, 0x7f03010f }; + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CompoundButton = { 0x1010107, 0x7f030056, 0x7f030057 }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonTint = 1; + public static final int CompoundButton_buttonTintMode = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] DesignTheme = { 0x7f030041, 0x7f030042 }; + public static final int DesignTheme_bottomSheetDialogTheme = 0; + public static final int DesignTheme_bottomSheetStyle = 1; + public static final int[] DrawerArrowToggle = { 0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030083, 0x7f0300ae, 0x7f0300dc, 0x7f030162, 0x7f0301b2 }; + public static final int DrawerArrowToggle_arrowHeadLength = 0; + public static final int DrawerArrowToggle_arrowShaftLength = 1; + public static final int DrawerArrowToggle_barLength = 2; + public static final int DrawerArrowToggle_color = 3; + public static final int DrawerArrowToggle_drawableSize = 4; + public static final int DrawerArrowToggle_gapBetweenBars = 5; + public static final int DrawerArrowToggle_spinBars = 6; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] FloatingActionButton = { 0x7f030034, 0x7f030035, 0x7f03003d, 0x7f0300b5, 0x7f0300c7, 0x7f0300c8, 0x7f0300e3, 0x7f0300eb, 0x7f030129, 0x7f030143, 0x7f03014d, 0x7f030159, 0x7f0301d0 }; + public static final int FloatingActionButton_backgroundTint = 0; + public static final int FloatingActionButton_backgroundTintMode = 1; + public static final int FloatingActionButton_borderWidth = 2; + public static final int FloatingActionButton_elevation = 3; + public static final int FloatingActionButton_fabCustomSize = 4; + public static final int FloatingActionButton_fabSize = 5; + public static final int FloatingActionButton_hideMotionSpec = 6; + public static final int FloatingActionButton_hoveredFocusedTranslationZ = 7; + public static final int FloatingActionButton_maxImageSize = 8; + public static final int FloatingActionButton_pressedTranslationZ = 9; + public static final int FloatingActionButton_rippleColor = 10; + public static final int FloatingActionButton_showMotionSpec = 11; + public static final int FloatingActionButton_useCompatPadding = 12; + public static final int[] FloatingActionButton_Behavior_Layout = { 0x7f030037 }; + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; + public static final int[] FlowLayout = { 0x7f030101, 0x7f030117 }; + public static final int FlowLayout_itemSpacing = 0; + public static final int FlowLayout_lineSpacing = 1; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] ForegroundLinearLayout = { 0x1010109, 0x1010200, 0x7f0300db }; + public static final int ForegroundLinearLayout_android_foreground = 0; + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + public static final int[] LinearLayoutCompat = { 0x10100af, 0x10100c4, 0x1010126, 0x1010127, 0x1010128, 0x7f0300aa, 0x7f0300ac, 0x7f03012a, 0x7f030158 }; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 6; + public static final int LinearLayoutCompat_measureWithLargestChild = 7; + public static final int LinearLayoutCompat_showDividers = 8; + public static final int[] LinearLayoutCompat_Layout = { 0x10100b3, 0x10100f4, 0x10100f5, 0x1010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int[] ListPopupWindow = { 0x10102ac, 0x10102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MaterialButton = { 0x10101b7, 0x10101b8, 0x10101b9, 0x10101ba, 0x7f030034, 0x7f030035, 0x7f03009f, 0x7f0300ec, 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f2, 0x7f0300f3, 0x7f03014d, 0x7f03016f, 0x7f030170 }; + public static final int MaterialButton_android_insetLeft = 0; + public static final int MaterialButton_android_insetRight = 1; + public static final int MaterialButton_android_insetTop = 2; + public static final int MaterialButton_android_insetBottom = 3; + public static final int MaterialButton_backgroundTint = 4; + public static final int MaterialButton_backgroundTintMode = 5; + public static final int MaterialButton_cornerRadius = 6; + public static final int MaterialButton_icon = 7; + public static final int MaterialButton_iconGravity = 8; + public static final int MaterialButton_iconPadding = 9; + public static final int MaterialButton_iconSize = 10; + public static final int MaterialButton_iconTint = 11; + public static final int MaterialButton_iconTintMode = 12; + public static final int MaterialButton_rippleColor = 13; + public static final int MaterialButton_strokeColor = 14; + public static final int MaterialButton_strokeWidth = 15; + public static final int[] MaterialCardView = { 0x7f03016f, 0x7f030170 }; + public static final int MaterialCardView_strokeColor = 0; + public static final int MaterialCardView_strokeWidth = 1; + public static final int[] MaterialComponentsTheme = { 0x7f030041, 0x7f030042, 0x7f030068, 0x7f030072, 0x7f030076, 0x7f030084, 0x7f030085, 0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f0300b4, 0x7f0300cf, 0x7f030125, 0x7f030126, 0x7f030130, 0x7f03014f, 0x7f03015f, 0x7f030192, 0x7f030197, 0x7f030198, 0x7f030199, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f03019e, 0x7f03019f, 0x7f0301a0, 0x7f0301a5, 0x7f0301aa, 0x7f0301ab, 0x7f0301af }; + public static final int MaterialComponentsTheme_bottomSheetDialogTheme = 0; + public static final int MaterialComponentsTheme_bottomSheetStyle = 1; + public static final int MaterialComponentsTheme_chipGroupStyle = 2; + public static final int MaterialComponentsTheme_chipStandaloneStyle = 3; + public static final int MaterialComponentsTheme_chipStyle = 4; + public static final int MaterialComponentsTheme_colorAccent = 5; + public static final int MaterialComponentsTheme_colorBackgroundFloating = 6; + public static final int MaterialComponentsTheme_colorPrimary = 7; + public static final int MaterialComponentsTheme_colorPrimaryDark = 8; + public static final int MaterialComponentsTheme_colorSecondary = 9; + public static final int MaterialComponentsTheme_editTextStyle = 10; + public static final int MaterialComponentsTheme_floatingActionButtonStyle = 11; + public static final int MaterialComponentsTheme_materialButtonStyle = 12; + public static final int MaterialComponentsTheme_materialCardViewStyle = 13; + public static final int MaterialComponentsTheme_navigationViewStyle = 14; + public static final int MaterialComponentsTheme_scrimBackground = 15; + public static final int MaterialComponentsTheme_snackbarButtonStyle = 16; + public static final int MaterialComponentsTheme_tabStyle = 17; + public static final int MaterialComponentsTheme_textAppearanceBody1 = 18; + public static final int MaterialComponentsTheme_textAppearanceBody2 = 19; + public static final int MaterialComponentsTheme_textAppearanceButton = 20; + public static final int MaterialComponentsTheme_textAppearanceCaption = 21; + public static final int MaterialComponentsTheme_textAppearanceHeadline1 = 22; + public static final int MaterialComponentsTheme_textAppearanceHeadline2 = 23; + public static final int MaterialComponentsTheme_textAppearanceHeadline3 = 24; + public static final int MaterialComponentsTheme_textAppearanceHeadline4 = 25; + public static final int MaterialComponentsTheme_textAppearanceHeadline5 = 26; + public static final int MaterialComponentsTheme_textAppearanceHeadline6 = 27; + public static final int MaterialComponentsTheme_textAppearanceOverline = 28; + public static final int MaterialComponentsTheme_textAppearanceSubtitle1 = 29; + public static final int MaterialComponentsTheme_textAppearanceSubtitle2 = 30; + public static final int MaterialComponentsTheme_textInputStyle = 31; + public static final int[] MenuGroup = { 0x101000e, 0x10100d0, 0x1010194, 0x10101de, 0x10101df, 0x10101e0 }; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_visible = 2; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int[] MenuItem = { 0x1010002, 0x101000e, 0x10100d0, 0x1010106, 0x1010194, 0x10101de, 0x10101df, 0x10101e1, 0x10101e2, 0x10101e3, 0x10101e4, 0x10101e5, 0x101026f, 0x7f03000d, 0x7f03001f, 0x7f030020, 0x7f030028, 0x7f030090, 0x7f0300f2, 0x7f0300f3, 0x7f030131, 0x7f030157, 0x7f0301cb }; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_actionLayout = 13; + public static final int MenuItem_actionProviderClass = 14; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_alphabeticModifiers = 16; + public static final int MenuItem_contentDescription = 17; + public static final int MenuItem_iconTint = 18; + public static final int MenuItem_iconTintMode = 19; + public static final int MenuItem_numericModifiers = 20; + public static final int MenuItem_showAsAction = 21; + public static final int MenuItem_tooltipText = 22; + public static final int[] MenuView = { 0x10100ae, 0x101012c, 0x101012d, 0x101012e, 0x101012f, 0x1010130, 0x1010131, 0x7f030142, 0x7f030171 }; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_preserveIconSpacing = 7; + public static final int MenuView_subMenuArrow = 8; + public static final int[] NavigationView = { 0x10100d4, 0x10100dd, 0x101011f, 0x7f0300b5, 0x7f0300de, 0x7f0300fa, 0x7f0300fb, 0x7f0300fd, 0x7f0300ff, 0x7f030102, 0x7f030105, 0x7f03012b }; + public static final int NavigationView_android_background = 0; + public static final int NavigationView_android_fitsSystemWindows = 1; + public static final int NavigationView_android_maxWidth = 2; + public static final int NavigationView_elevation = 3; + public static final int NavigationView_headerLayout = 4; + public static final int NavigationView_itemBackground = 5; + public static final int NavigationView_itemHorizontalPadding = 6; + public static final int NavigationView_itemIconPadding = 7; + public static final int NavigationView_itemIconTint = 8; + public static final int NavigationView_itemTextAppearance = 9; + public static final int NavigationView_itemTextColor = 10; + public static final int NavigationView_menu = 11; + public static final int[] PopupWindow = { 0x1010176, 0x10102c9, 0x7f030132 }; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_android_popupAnimationStyle = 1; + public static final int PopupWindow_overlapAnchor = 2; + public static final int[] PopupWindowBackgroundState = { 0x7f030168 }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int[] RecycleListView = { 0x7f030133, 0x7f030136 }; + public static final int RecycleListView_paddingBottomNoButtons = 0; + public static final int RecycleListView_paddingTopNoTitle = 1; + public static final int[] RecyclerView = { 0x10100c4, 0x10100f1, 0x7f0300c9, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f03010a, 0x7f03014c, 0x7f030161, 0x7f030167 }; + public static final int RecyclerView_android_orientation = 0; + public static final int RecyclerView_android_descendantFocusability = 1; + public static final int RecyclerView_fastScrollEnabled = 2; + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 3; + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 4; + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 5; + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 6; + public static final int RecyclerView_layoutManager = 7; + public static final int RecyclerView_reverseLayout = 8; + public static final int RecyclerView_spanCount = 9; + public static final int RecyclerView_stackFromEnd = 10; + public static final int[] ScrimInsetsFrameLayout = { 0x7f0300f8 }; + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + public static final int[] ScrollingViewBehavior_Layout = { 0x7f03003a }; + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; + public static final int[] SearchView = { 0x10100da, 0x101011f, 0x1010220, 0x1010264, 0x7f030077, 0x7f03008f, 0x7f0300a5, 0x7f0300dd, 0x7f0300f4, 0x7f030109, 0x7f030146, 0x7f030147, 0x7f030151, 0x7f030152, 0x7f030172, 0x7f030177, 0x7f0301d2 }; + public static final int SearchView_android_focusable = 0; + public static final int SearchView_android_maxWidth = 1; + public static final int SearchView_android_inputType = 2; + public static final int SearchView_android_imeOptions = 3; + public static final int SearchView_closeIcon = 4; + public static final int SearchView_commitIcon = 5; + public static final int SearchView_defaultQueryHint = 6; + public static final int SearchView_goIcon = 7; + public static final int SearchView_iconifiedByDefault = 8; + public static final int SearchView_layout = 9; + public static final int SearchView_queryBackground = 10; + public static final int SearchView_queryHint = 11; + public static final int SearchView_searchHintIcon = 12; + public static final int SearchView_searchIcon = 13; + public static final int SearchView_submitBackground = 14; + public static final int SearchView_suggestionRowLayout = 15; + public static final int SearchView_voiceIcon = 16; + public static final int[] Snackbar = { 0x7f03015f, 0x7f030160 }; + public static final int Snackbar_snackbarButtonStyle = 0; + public static final int Snackbar_snackbarStyle = 1; + public static final int[] SnackbarLayout = { 0x101011f, 0x7f0300b5, 0x7f030127 }; + public static final int SnackbarLayout_android_maxWidth = 0; + public static final int SnackbarLayout_elevation = 1; + public static final int SnackbarLayout_maxActionInlineWidth = 2; + public static final int[] Spinner = { 0x10100b2, 0x1010176, 0x101017b, 0x1010262, 0x7f030140 }; + public static final int Spinner_android_entries = 0; + public static final int Spinner_android_popupBackground = 1; + public static final int Spinner_android_prompt = 2; + public static final int Spinner_android_dropDownWidth = 3; + public static final int Spinner_popupTheme = 4; + public static final int[] SwitchCompat = { 0x1010124, 0x1010125, 0x1010142, 0x7f03015a, 0x7f030165, 0x7f030178, 0x7f030179, 0x7f03017b, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301cc, 0x7f0301cd, 0x7f0301ce }; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 3; + public static final int SwitchCompat_splitTrack = 4; + public static final int SwitchCompat_switchMinWidth = 5; + public static final int SwitchCompat_switchPadding = 6; + public static final int SwitchCompat_switchTextAppearance = 7; + public static final int SwitchCompat_thumbTextPadding = 8; + public static final int SwitchCompat_thumbTint = 9; + public static final int SwitchCompat_thumbTintMode = 10; + public static final int SwitchCompat_track = 11; + public static final int SwitchCompat_trackTint = 12; + public static final int SwitchCompat_trackTintMode = 13; + public static final int[] TabItem = { 0x1010002, 0x10100f2, 0x101014f }; + public static final int TabItem_android_icon = 0; + public static final int TabItem_android_layout = 1; + public static final int TabItem_android_text = 2; + public static final int[] TabLayout = { 0x7f03017c, 0x7f03017d, 0x7f03017e, 0x7f03017f, 0x7f030180, 0x7f030181, 0x7f030182, 0x7f030183, 0x7f030184, 0x7f030185, 0x7f030186, 0x7f030187, 0x7f030188, 0x7f030189, 0x7f03018a, 0x7f03018b, 0x7f03018c, 0x7f03018d, 0x7f03018e, 0x7f03018f, 0x7f030190, 0x7f030191, 0x7f030193, 0x7f030194, 0x7f030195 }; + public static final int TabLayout_tabBackground = 0; + public static final int TabLayout_tabContentStart = 1; + public static final int TabLayout_tabGravity = 2; + public static final int TabLayout_tabIconTint = 3; + public static final int TabLayout_tabIconTintMode = 4; + public static final int TabLayout_tabIndicator = 5; + public static final int TabLayout_tabIndicatorAnimationDuration = 6; + public static final int TabLayout_tabIndicatorColor = 7; + public static final int TabLayout_tabIndicatorFullWidth = 8; + public static final int TabLayout_tabIndicatorGravity = 9; + public static final int TabLayout_tabIndicatorHeight = 10; + public static final int TabLayout_tabInlineLabel = 11; + public static final int TabLayout_tabMaxWidth = 12; + public static final int TabLayout_tabMinWidth = 13; + public static final int TabLayout_tabMode = 14; + public static final int TabLayout_tabPadding = 15; + public static final int TabLayout_tabPaddingBottom = 16; + public static final int TabLayout_tabPaddingEnd = 17; + public static final int TabLayout_tabPaddingStart = 18; + public static final int TabLayout_tabPaddingTop = 19; + public static final int TabLayout_tabRippleColor = 20; + public static final int TabLayout_tabSelectedTextColor = 21; + public static final int TabLayout_tabTextAppearance = 22; + public static final int TabLayout_tabTextColor = 23; + public static final int TabLayout_tabUnboundedRipple = 24; + public static final int[] TextAppearance = { 0x1010095, 0x1010096, 0x1010097, 0x1010098, 0x101009a, 0x101009b, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x10103ac, 0x7f0300d1, 0x7f030196 }; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textColorHint = 4; + public static final int TextAppearance_android_textColorLink = 5; + public static final int TextAppearance_android_shadowColor = 6; + public static final int TextAppearance_android_shadowDx = 7; + public static final int TextAppearance_android_shadowDy = 8; + public static final int TextAppearance_android_shadowRadius = 9; + public static final int TextAppearance_android_fontFamily = 10; + public static final int TextAppearance_fontFamily = 11; + public static final int TextAppearance_textAllCaps = 12; + public static final int[] TextInputLayout = { 0x101009a, 0x1010150, 0x7f030043, 0x7f030044, 0x7f030045, 0x7f030046, 0x7f030047, 0x7f030048, 0x7f030049, 0x7f03004a, 0x7f03004b, 0x7f0300a0, 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f0300b8, 0x7f0300b9, 0x7f0300e0, 0x7f0300e1, 0x7f0300e2, 0x7f0300e6, 0x7f0300e7, 0x7f0300e8, 0x7f03013a, 0x7f03013b, 0x7f03013c, 0x7f03013d, 0x7f03013e }; + public static final int TextInputLayout_android_textColorHint = 0; + public static final int TextInputLayout_android_hint = 1; + public static final int TextInputLayout_boxBackgroundColor = 2; + public static final int TextInputLayout_boxBackgroundMode = 3; + public static final int TextInputLayout_boxCollapsedPaddingTop = 4; + public static final int TextInputLayout_boxCornerRadiusBottomEnd = 5; + public static final int TextInputLayout_boxCornerRadiusBottomStart = 6; + public static final int TextInputLayout_boxCornerRadiusTopEnd = 7; + public static final int TextInputLayout_boxCornerRadiusTopStart = 8; + public static final int TextInputLayout_boxStrokeColor = 9; + public static final int TextInputLayout_boxStrokeWidth = 10; + public static final int TextInputLayout_counterEnabled = 11; + public static final int TextInputLayout_counterMaxLength = 12; + public static final int TextInputLayout_counterOverflowTextAppearance = 13; + public static final int TextInputLayout_counterTextAppearance = 14; + public static final int TextInputLayout_errorEnabled = 15; + public static final int TextInputLayout_errorTextAppearance = 16; + public static final int TextInputLayout_helperText = 17; + public static final int TextInputLayout_helperTextEnabled = 18; + public static final int TextInputLayout_helperTextTextAppearance = 19; + public static final int TextInputLayout_hintAnimationEnabled = 20; + public static final int TextInputLayout_hintEnabled = 21; + public static final int TextInputLayout_hintTextAppearance = 22; + public static final int TextInputLayout_passwordToggleContentDescription = 23; + public static final int TextInputLayout_passwordToggleDrawable = 24; + public static final int TextInputLayout_passwordToggleEnabled = 25; + public static final int TextInputLayout_passwordToggleTint = 26; + public static final int TextInputLayout_passwordToggleTintMode = 27; + public static final int[] ThemeEnforcement = { 0x1010034, 0x7f0300b6, 0x7f0300b7 }; + public static final int ThemeEnforcement_android_textAppearance = 0; + public static final int ThemeEnforcement_enforceMaterialTheme = 1; + public static final int ThemeEnforcement_enforceTextAppearance = 2; + public static final int[] Toolbar = { 0x10100af, 0x1010140, 0x7f030051, 0x7f03007f, 0x7f030080, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f030123, 0x7f030124, 0x7f030128, 0x7f03012d, 0x7f03012e, 0x7f030140, 0x7f030173, 0x7f030174, 0x7f030175, 0x7f0301bb, 0x7f0301bd, 0x7f0301be, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4 }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_buttonGravity = 2; + public static final int Toolbar_collapseContentDescription = 3; + public static final int Toolbar_collapseIcon = 4; + public static final int Toolbar_contentInsetEnd = 5; + public static final int Toolbar_contentInsetEndWithActions = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 9; + public static final int Toolbar_contentInsetStartWithNavigation = 10; + public static final int Toolbar_logo = 11; + public static final int Toolbar_logoDescription = 12; + public static final int Toolbar_maxButtonHeight = 13; + public static final int Toolbar_navigationContentDescription = 14; + public static final int Toolbar_navigationIcon = 15; + public static final int Toolbar_popupTheme = 16; + public static final int Toolbar_subtitle = 17; + public static final int Toolbar_subtitleTextAppearance = 18; + public static final int Toolbar_subtitleTextColor = 19; + public static final int Toolbar_title = 20; + public static final int Toolbar_titleMargin = 21; + public static final int Toolbar_titleMarginBottom = 22; + public static final int Toolbar_titleMarginEnd = 23; + public static final int Toolbar_titleMarginStart = 24; + public static final int Toolbar_titleMarginTop = 25; + public static final int Toolbar_titleMargins = 26; + public static final int Toolbar_titleTextAppearance = 27; + public static final int Toolbar_titleTextColor = 28; + public static final int[] View = { 0x1010000, 0x10100da, 0x7f030134, 0x7f030135, 0x7f0301b1 }; + public static final int View_android_theme = 0; + public static final int View_android_focusable = 1; + public static final int View_paddingEnd = 2; + public static final int View_paddingStart = 3; + public static final int View_theme = 4; + public static final int[] ViewBackgroundHelper = { 0x10100d4, 0x7f030034, 0x7f030035 }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = { 0x10100d0, 0x10100f2, 0x10100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_layout = 1; + public static final int ViewStubCompat_android_inflatedId = 2; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/documentfile/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/documentfile/R.java new file mode 100644 index 0000000000000000000000000000000000000000..d206e40f43680a63b3e9c152ddf75a408c72d5c4 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/documentfile/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.documentfile; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/drawerlayout/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/drawerlayout/R.java new file mode 100644 index 0000000000000000000000000000000000000000..662fe330efdebd805d0572474972210c9c077db6 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/drawerlayout/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.drawerlayout; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/fragment/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/fragment/R.java new file mode 100644 index 0000000000000000000000000000000000000000..4095da228225e15285fae842b81115e57d2708f2 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/fragment/R.java @@ -0,0 +1,211 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.fragment; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int keylines = 0x7f030106; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int statusBarBackground = 0x7f03016d; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int chronometer = 0x7f080029; + public static final int end = 0x7f08003c; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int start = 0x7f080098; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int top = 0x7f0800ae; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/graphics/drawable/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/graphics/drawable/R.java new file mode 100644 index 0000000000000000000000000000000000000000..58697ab8311a33d4ab2251bca46b414e3f7ef438 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/graphics/drawable/R.java @@ -0,0 +1,211 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.graphics.drawable; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int keylines = 0x7f030106; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int statusBarBackground = 0x7f03016d; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int chronometer = 0x7f080029; + public static final int end = 0x7f08003c; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int start = 0x7f080098; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int top = 0x7f0800ae; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/interpolator/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/interpolator/R.java new file mode 100644 index 0000000000000000000000000000000000000000..7f0cd51655c6a0a300fd5dccc7e0d2eb4a83329c --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/interpolator/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.interpolator; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/loader/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/loader/R.java new file mode 100644 index 0000000000000000000000000000000000000000..94797d23d2a3eb0c53382a47b365b703cae1e9c7 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/loader/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.loader; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/localbroadcastmanager/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/localbroadcastmanager/R.java new file mode 100644 index 0000000000000000000000000000000000000000..c26078eecc3ef6567629356fbef0f540b4f501e9 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/localbroadcastmanager/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.localbroadcastmanager; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/mediacompat/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/mediacompat/R.java new file mode 100644 index 0000000000000000000000000000000000000000..70bfefcae24c1fd73ac21c4090a0cc6583a66ccf --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/mediacompat/R.java @@ -0,0 +1,210 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.mediacompat; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int notification_material_background_media_default_color = 0x7f05006c; + public static final int primary_text_default_material_dark = 0x7f050075; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_dark = 0x7f05007c; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + public static final int subtitle_corner_radius = 0x7f0600cf; + public static final int subtitle_outline_width = 0x7f0600d0; + public static final int subtitle_shadow_offset = 0x7f0600d1; + public static final int subtitle_shadow_radius = 0x7f0600d2; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action0 = 0x7f080006; + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int cancel_action = 0x7f080024; + public static final int chronometer = 0x7f080029; + public static final int end_padder = 0x7f08003d; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int media_actions = 0x7f08005c; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int status_bar_latest_event_content = 0x7f080099; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int cancel_button_image_alpha = 0x7f090004; + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_media_action = 0x7f0b002f; + public static final int notification_media_cancel_action = 0x7f0b0030; + public static final int notification_template_big_media = 0x7f0b0031; + public static final int notification_template_big_media_custom = 0x7f0b0032; + public static final int notification_template_big_media_narrow = 0x7f0b0033; + public static final int notification_template_big_media_narrow_custom = 0x7f0b0034; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_lines_media = 0x7f0b0037; + public static final int notification_template_media = 0x7f0b0038; + public static final int notification_template_media_custom = 0x7f0b0039; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Info_Media = 0x7f0e0118; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Line2_Media = 0x7f0e011a; + public static final int TextAppearance_Compat_Notification_Media = 0x7f0e011b; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Time_Media = 0x7f0e011d; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int TextAppearance_Compat_Notification_Title_Media = 0x7f0e011f; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/print/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/print/R.java new file mode 100644 index 0000000000000000000000000000000000000000..1162e7bb6bf7efa43875e8766845a1fad6fca215 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/print/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.print; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/slidingpanelayout/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/slidingpanelayout/R.java new file mode 100644 index 0000000000000000000000000000000000000000..fd53979c54670a27e4a99403789c8572df11887f --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/slidingpanelayout/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.slidingpanelayout; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/swiperefreshlayout/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/swiperefreshlayout/R.java new file mode 100644 index 0000000000000000000000000000000000000000..00911417832f5c86772eee9fa2095ae5ae877452 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/swiperefreshlayout/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.swiperefreshlayout; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/transition/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/transition/R.java new file mode 100644 index 0000000000000000000000000000000000000000..ac43e78244e93c705f993676276ee6d8a846b4a2 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/transition/R.java @@ -0,0 +1,193 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.transition; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int ghost_view = 0x7f080049; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int parent_matrix = 0x7f08006d; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int save_image_matrix = 0x7f080075; + public static final int save_non_transition_alpha = 0x7f080076; + public static final int save_scale_type = 0x7f080077; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int transition_current_scene = 0x7f0800b1; + public static final int transition_layout_save = 0x7f0800b2; + public static final int transition_position = 0x7f0800b3; + public static final int transition_scene_layoutid_cache = 0x7f0800b4; + public static final int transition_transform = 0x7f0800b5; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v4/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v4/R.java new file mode 100644 index 0000000000000000000000000000000000000000..48531fabd30e98b6761f1778220c1cc892c718f6 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v4/R.java @@ -0,0 +1,238 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v4; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int keylines = 0x7f030106; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int statusBarBackground = 0x7f03016d; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int notification_material_background_media_default_color = 0x7f05006c; + public static final int primary_text_default_material_dark = 0x7f050075; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_dark = 0x7f05007c; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + public static final int subtitle_corner_radius = 0x7f0600cf; + public static final int subtitle_outline_width = 0x7f0600d0; + public static final int subtitle_shadow_offset = 0x7f0600d1; + public static final int subtitle_shadow_radius = 0x7f0600d2; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action0 = 0x7f080006; + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int cancel_action = 0x7f080024; + public static final int chronometer = 0x7f080029; + public static final int end = 0x7f08003c; + public static final int end_padder = 0x7f08003d; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int media_actions = 0x7f08005c; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int start = 0x7f080098; + public static final int status_bar_latest_event_content = 0x7f080099; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int top = 0x7f0800ae; + } + public static final class integer { + private integer() {} + + public static final int cancel_button_image_alpha = 0x7f090004; + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_media_action = 0x7f0b002f; + public static final int notification_media_cancel_action = 0x7f0b0030; + public static final int notification_template_big_media = 0x7f0b0031; + public static final int notification_template_big_media_custom = 0x7f0b0032; + public static final int notification_template_big_media_narrow = 0x7f0b0033; + public static final int notification_template_big_media_narrow_custom = 0x7f0b0034; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_lines_media = 0x7f0b0037; + public static final int notification_template_media = 0x7f0b0038; + public static final int notification_template_media_custom = 0x7f0b0039; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Info_Media = 0x7f0e0118; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Line2_Media = 0x7f0e011a; + public static final int TextAppearance_Compat_Notification_Media = 0x7f0e011b; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Time_Media = 0x7f0e011d; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int TextAppearance_Compat_Notification_Title_Media = 0x7f0e011f; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/appcompat/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/appcompat/R.java new file mode 100644 index 0000000000000000000000000000000000000000..48373bbbdbbe1ec51dc57d9d43ee8cd0820e0427 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/appcompat/R.java @@ -0,0 +1,1637 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v7.appcompat; + +public final class R { + private R() {} + + public static final class anim { + private anim() {} + + public static final int abc_fade_in = 0x7f010000; + public static final int abc_fade_out = 0x7f010001; + public static final int abc_grow_fade_in_from_bottom = 0x7f010002; + public static final int abc_popup_enter = 0x7f010003; + public static final int abc_popup_exit = 0x7f010004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; + public static final int abc_slide_in_bottom = 0x7f010006; + public static final int abc_slide_in_top = 0x7f010007; + public static final int abc_slide_out_bottom = 0x7f010008; + public static final int abc_slide_out_top = 0x7f010009; + public static final int abc_tooltip_enter = 0x7f01000a; + public static final int abc_tooltip_exit = 0x7f01000b; + } + public static final class attr { + private attr() {} + + public static final int actionBarDivider = 0x7f030000; + public static final int actionBarItemBackground = 0x7f030001; + public static final int actionBarPopupTheme = 0x7f030002; + public static final int actionBarSize = 0x7f030003; + public static final int actionBarSplitStyle = 0x7f030004; + public static final int actionBarStyle = 0x7f030005; + public static final int actionBarTabBarStyle = 0x7f030006; + public static final int actionBarTabStyle = 0x7f030007; + public static final int actionBarTabTextStyle = 0x7f030008; + public static final int actionBarTheme = 0x7f030009; + public static final int actionBarWidgetTheme = 0x7f03000a; + public static final int actionButtonStyle = 0x7f03000b; + public static final int actionDropDownStyle = 0x7f03000c; + public static final int actionLayout = 0x7f03000d; + public static final int actionMenuTextAppearance = 0x7f03000e; + public static final int actionMenuTextColor = 0x7f03000f; + public static final int actionModeBackground = 0x7f030010; + public static final int actionModeCloseButtonStyle = 0x7f030011; + public static final int actionModeCloseDrawable = 0x7f030012; + public static final int actionModeCopyDrawable = 0x7f030013; + public static final int actionModeCutDrawable = 0x7f030014; + public static final int actionModeFindDrawable = 0x7f030015; + public static final int actionModePasteDrawable = 0x7f030016; + public static final int actionModePopupWindowStyle = 0x7f030017; + public static final int actionModeSelectAllDrawable = 0x7f030018; + public static final int actionModeShareDrawable = 0x7f030019; + public static final int actionModeSplitBackground = 0x7f03001a; + public static final int actionModeStyle = 0x7f03001b; + public static final int actionModeWebSearchDrawable = 0x7f03001c; + public static final int actionOverflowButtonStyle = 0x7f03001d; + public static final int actionOverflowMenuStyle = 0x7f03001e; + public static final int actionProviderClass = 0x7f03001f; + public static final int actionViewClass = 0x7f030020; + public static final int activityChooserViewStyle = 0x7f030021; + public static final int alertDialogButtonGroupStyle = 0x7f030022; + public static final int alertDialogCenterButtons = 0x7f030023; + public static final int alertDialogStyle = 0x7f030024; + public static final int alertDialogTheme = 0x7f030025; + public static final int allowStacking = 0x7f030026; + public static final int alpha = 0x7f030027; + public static final int alphabeticModifiers = 0x7f030028; + public static final int arrowHeadLength = 0x7f030029; + public static final int arrowShaftLength = 0x7f03002a; + public static final int autoCompleteTextViewStyle = 0x7f03002b; + public static final int autoSizeMaxTextSize = 0x7f03002c; + public static final int autoSizeMinTextSize = 0x7f03002d; + public static final int autoSizePresetSizes = 0x7f03002e; + public static final int autoSizeStepGranularity = 0x7f03002f; + public static final int autoSizeTextType = 0x7f030030; + public static final int background = 0x7f030031; + public static final int backgroundSplit = 0x7f030032; + public static final int backgroundStacked = 0x7f030033; + public static final int backgroundTint = 0x7f030034; + public static final int backgroundTintMode = 0x7f030035; + public static final int barLength = 0x7f030036; + public static final int borderlessButtonStyle = 0x7f03003e; + public static final int buttonBarButtonStyle = 0x7f03004c; + public static final int buttonBarNegativeButtonStyle = 0x7f03004d; + public static final int buttonBarNeutralButtonStyle = 0x7f03004e; + public static final int buttonBarPositiveButtonStyle = 0x7f03004f; + public static final int buttonBarStyle = 0x7f030050; + public static final int buttonGravity = 0x7f030051; + public static final int buttonIconDimen = 0x7f030052; + public static final int buttonPanelSideLayout = 0x7f030053; + public static final int buttonStyle = 0x7f030054; + public static final int buttonStyleSmall = 0x7f030055; + public static final int buttonTint = 0x7f030056; + public static final int buttonTintMode = 0x7f030057; + public static final int checkboxStyle = 0x7f03005f; + public static final int checkedTextViewStyle = 0x7f030064; + public static final int closeIcon = 0x7f030077; + public static final int closeItemLayout = 0x7f03007e; + public static final int collapseContentDescription = 0x7f03007f; + public static final int collapseIcon = 0x7f030080; + public static final int color = 0x7f030083; + public static final int colorAccent = 0x7f030084; + public static final int colorBackgroundFloating = 0x7f030085; + public static final int colorButtonNormal = 0x7f030086; + public static final int colorControlActivated = 0x7f030087; + public static final int colorControlHighlight = 0x7f030088; + public static final int colorControlNormal = 0x7f030089; + public static final int colorError = 0x7f03008a; + public static final int colorPrimary = 0x7f03008b; + public static final int colorPrimaryDark = 0x7f03008c; + public static final int colorSwitchThumbNormal = 0x7f03008e; + public static final int commitIcon = 0x7f03008f; + public static final int contentDescription = 0x7f030090; + public static final int contentInsetEnd = 0x7f030091; + public static final int contentInsetEndWithActions = 0x7f030092; + public static final int contentInsetLeft = 0x7f030093; + public static final int contentInsetRight = 0x7f030094; + public static final int contentInsetStart = 0x7f030095; + public static final int contentInsetStartWithNavigation = 0x7f030096; + public static final int controlBackground = 0x7f03009d; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int customNavigationLayout = 0x7f0300a4; + public static final int defaultQueryHint = 0x7f0300a5; + public static final int dialogCornerRadius = 0x7f0300a6; + public static final int dialogPreferredPadding = 0x7f0300a7; + public static final int dialogTheme = 0x7f0300a8; + public static final int displayOptions = 0x7f0300a9; + public static final int divider = 0x7f0300aa; + public static final int dividerHorizontal = 0x7f0300ab; + public static final int dividerPadding = 0x7f0300ac; + public static final int dividerVertical = 0x7f0300ad; + public static final int drawableSize = 0x7f0300ae; + public static final int drawerArrowStyle = 0x7f0300af; + public static final int dropDownListViewStyle = 0x7f0300b0; + public static final int dropdownListPreferredItemHeight = 0x7f0300b1; + public static final int editTextBackground = 0x7f0300b2; + public static final int editTextColor = 0x7f0300b3; + public static final int editTextStyle = 0x7f0300b4; + public static final int elevation = 0x7f0300b5; + public static final int expandActivityOverflowButtonDrawable = 0x7f0300ba; + public static final int firstBaselineToTopHeight = 0x7f0300ce; + public static final int font = 0x7f0300d0; + public static final int fontFamily = 0x7f0300d1; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int gapBetweenBars = 0x7f0300dc; + public static final int goIcon = 0x7f0300dd; + public static final int height = 0x7f0300df; + public static final int hideOnContentScroll = 0x7f0300e4; + public static final int homeAsUpIndicator = 0x7f0300e9; + public static final int homeLayout = 0x7f0300ea; + public static final int icon = 0x7f0300ec; + public static final int iconTint = 0x7f0300f2; + public static final int iconTintMode = 0x7f0300f3; + public static final int iconifiedByDefault = 0x7f0300f4; + public static final int imageButtonStyle = 0x7f0300f5; + public static final int indeterminateProgressStyle = 0x7f0300f6; + public static final int initialActivityCount = 0x7f0300f7; + public static final int isLightTheme = 0x7f0300f9; + public static final int itemPadding = 0x7f030100; + public static final int keylines = 0x7f030106; + public static final int lastBaselineToBottomHeight = 0x7f030108; + public static final int layout = 0x7f030109; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int lineHeight = 0x7f030116; + public static final int listChoiceBackgroundIndicator = 0x7f030118; + public static final int listDividerAlertDialog = 0x7f030119; + public static final int listItemLayout = 0x7f03011a; + public static final int listLayout = 0x7f03011b; + public static final int listMenuViewStyle = 0x7f03011c; + public static final int listPopupWindowStyle = 0x7f03011d; + public static final int listPreferredItemHeight = 0x7f03011e; + public static final int listPreferredItemHeightLarge = 0x7f03011f; + public static final int listPreferredItemHeightSmall = 0x7f030120; + public static final int listPreferredItemPaddingLeft = 0x7f030121; + public static final int listPreferredItemPaddingRight = 0x7f030122; + public static final int logo = 0x7f030123; + public static final int logoDescription = 0x7f030124; + public static final int maxButtonHeight = 0x7f030128; + public static final int measureWithLargestChild = 0x7f03012a; + public static final int multiChoiceItemLayout = 0x7f03012c; + public static final int navigationContentDescription = 0x7f03012d; + public static final int navigationIcon = 0x7f03012e; + public static final int navigationMode = 0x7f03012f; + public static final int numericModifiers = 0x7f030131; + public static final int overlapAnchor = 0x7f030132; + public static final int paddingBottomNoButtons = 0x7f030133; + public static final int paddingEnd = 0x7f030134; + public static final int paddingStart = 0x7f030135; + public static final int paddingTopNoTitle = 0x7f030136; + public static final int panelBackground = 0x7f030137; + public static final int panelMenuListTheme = 0x7f030138; + public static final int panelMenuListWidth = 0x7f030139; + public static final int popupMenuStyle = 0x7f03013f; + public static final int popupTheme = 0x7f030140; + public static final int popupWindowStyle = 0x7f030141; + public static final int preserveIconSpacing = 0x7f030142; + public static final int progressBarPadding = 0x7f030144; + public static final int progressBarStyle = 0x7f030145; + public static final int queryBackground = 0x7f030146; + public static final int queryHint = 0x7f030147; + public static final int radioButtonStyle = 0x7f030148; + public static final int ratingBarStyle = 0x7f030149; + public static final int ratingBarStyleIndicator = 0x7f03014a; + public static final int ratingBarStyleSmall = 0x7f03014b; + public static final int searchHintIcon = 0x7f030151; + public static final int searchIcon = 0x7f030152; + public static final int searchViewStyle = 0x7f030153; + public static final int seekBarStyle = 0x7f030154; + public static final int selectableItemBackground = 0x7f030155; + public static final int selectableItemBackgroundBorderless = 0x7f030156; + public static final int showAsAction = 0x7f030157; + public static final int showDividers = 0x7f030158; + public static final int showText = 0x7f03015a; + public static final int showTitle = 0x7f03015b; + public static final int singleChoiceItemLayout = 0x7f03015c; + public static final int spinBars = 0x7f030162; + public static final int spinnerDropDownItemStyle = 0x7f030163; + public static final int spinnerStyle = 0x7f030164; + public static final int splitTrack = 0x7f030165; + public static final int srcCompat = 0x7f030166; + public static final int state_above_anchor = 0x7f030168; + public static final int statusBarBackground = 0x7f03016d; + public static final int subMenuArrow = 0x7f030171; + public static final int submitBackground = 0x7f030172; + public static final int subtitle = 0x7f030173; + public static final int subtitleTextAppearance = 0x7f030174; + public static final int subtitleTextColor = 0x7f030175; + public static final int subtitleTextStyle = 0x7f030176; + public static final int suggestionRowLayout = 0x7f030177; + public static final int switchMinWidth = 0x7f030178; + public static final int switchPadding = 0x7f030179; + public static final int switchStyle = 0x7f03017a; + public static final int switchTextAppearance = 0x7f03017b; + public static final int textAllCaps = 0x7f030196; + public static final int textAppearanceLargePopupMenu = 0x7f0301a1; + public static final int textAppearanceListItem = 0x7f0301a2; + public static final int textAppearanceListItemSecondary = 0x7f0301a3; + public static final int textAppearanceListItemSmall = 0x7f0301a4; + public static final int textAppearancePopupMenuHeader = 0x7f0301a6; + public static final int textAppearanceSearchResultSubtitle = 0x7f0301a7; + public static final int textAppearanceSearchResultTitle = 0x7f0301a8; + public static final int textAppearanceSmallPopupMenu = 0x7f0301a9; + public static final int textColorAlertDialogListItem = 0x7f0301ac; + public static final int textColorSearchUrl = 0x7f0301ad; + public static final int theme = 0x7f0301b1; + public static final int thickness = 0x7f0301b2; + public static final int thumbTextPadding = 0x7f0301b3; + public static final int thumbTint = 0x7f0301b4; + public static final int thumbTintMode = 0x7f0301b5; + public static final int tickMark = 0x7f0301b6; + public static final int tickMarkTint = 0x7f0301b7; + public static final int tickMarkTintMode = 0x7f0301b8; + public static final int tint = 0x7f0301b9; + public static final int tintMode = 0x7f0301ba; + public static final int title = 0x7f0301bb; + public static final int titleMargin = 0x7f0301bd; + public static final int titleMarginBottom = 0x7f0301be; + public static final int titleMarginEnd = 0x7f0301bf; + public static final int titleMarginStart = 0x7f0301c0; + public static final int titleMarginTop = 0x7f0301c1; + public static final int titleMargins = 0x7f0301c2; + public static final int titleTextAppearance = 0x7f0301c3; + public static final int titleTextColor = 0x7f0301c4; + public static final int titleTextStyle = 0x7f0301c5; + public static final int toolbarNavigationButtonStyle = 0x7f0301c7; + public static final int toolbarStyle = 0x7f0301c8; + public static final int tooltipForegroundColor = 0x7f0301c9; + public static final int tooltipFrameBackground = 0x7f0301ca; + public static final int tooltipText = 0x7f0301cb; + public static final int track = 0x7f0301cc; + public static final int trackTint = 0x7f0301cd; + public static final int trackTintMode = 0x7f0301ce; + public static final int ttcIndex = 0x7f0301cf; + public static final int viewInflaterClass = 0x7f0301d1; + public static final int voiceIcon = 0x7f0301d2; + public static final int windowActionBar = 0x7f0301d3; + public static final int windowActionBarOverlay = 0x7f0301d4; + public static final int windowActionModeOverlay = 0x7f0301d5; + public static final int windowFixedHeightMajor = 0x7f0301d6; + public static final int windowFixedHeightMinor = 0x7f0301d7; + public static final int windowFixedWidthMajor = 0x7f0301d8; + public static final int windowFixedWidthMinor = 0x7f0301d9; + public static final int windowMinWidthMajor = 0x7f0301da; + public static final int windowMinWidthMinor = 0x7f0301db; + public static final int windowNoTitle = 0x7f0301dc; + } + public static final class bool { + private bool() {} + + public static final int abc_action_bar_embed_tabs = 0x7f040000; + public static final int abc_allow_stacked_button_bar = 0x7f040001; + public static final int abc_config_actionMenuItemAllCaps = 0x7f040002; + } + public static final class color { + private color() {} + + public static final int abc_background_cache_hint_selector_material_dark = 0x7f050000; + public static final int abc_background_cache_hint_selector_material_light = 0x7f050001; + public static final int abc_btn_colored_borderless_text_material = 0x7f050002; + public static final int abc_btn_colored_text_material = 0x7f050003; + public static final int abc_color_highlight_material = 0x7f050004; + public static final int abc_hint_foreground_material_dark = 0x7f050005; + public static final int abc_hint_foreground_material_light = 0x7f050006; + public static final int abc_input_method_navigation_guard = 0x7f050007; + public static final int abc_primary_text_disable_only_material_dark = 0x7f050008; + public static final int abc_primary_text_disable_only_material_light = 0x7f050009; + public static final int abc_primary_text_material_dark = 0x7f05000a; + public static final int abc_primary_text_material_light = 0x7f05000b; + public static final int abc_search_url_text = 0x7f05000c; + public static final int abc_search_url_text_normal = 0x7f05000d; + public static final int abc_search_url_text_pressed = 0x7f05000e; + public static final int abc_search_url_text_selected = 0x7f05000f; + public static final int abc_secondary_text_material_dark = 0x7f050010; + public static final int abc_secondary_text_material_light = 0x7f050011; + public static final int abc_tint_btn_checkable = 0x7f050012; + public static final int abc_tint_default = 0x7f050013; + public static final int abc_tint_edittext = 0x7f050014; + public static final int abc_tint_seek_thumb = 0x7f050015; + public static final int abc_tint_spinner = 0x7f050016; + public static final int abc_tint_switch_track = 0x7f050017; + public static final int accent_material_dark = 0x7f050019; + public static final int accent_material_light = 0x7f05001a; + public static final int background_floating_material_dark = 0x7f05001b; + public static final int background_floating_material_light = 0x7f05001c; + public static final int background_material_dark = 0x7f05001d; + public static final int background_material_light = 0x7f05001e; + public static final int bright_foreground_disabled_material_dark = 0x7f05001f; + public static final int bright_foreground_disabled_material_light = 0x7f050020; + public static final int bright_foreground_inverse_material_dark = 0x7f050021; + public static final int bright_foreground_inverse_material_light = 0x7f050022; + public static final int bright_foreground_material_dark = 0x7f050023; + public static final int bright_foreground_material_light = 0x7f050024; + public static final int button_material_dark = 0x7f050025; + public static final int button_material_light = 0x7f050026; + public static final int dim_foreground_disabled_material_dark = 0x7f050038; + public static final int dim_foreground_disabled_material_light = 0x7f050039; + public static final int dim_foreground_material_dark = 0x7f05003a; + public static final int dim_foreground_material_light = 0x7f05003b; + public static final int error_color_material_dark = 0x7f05003d; + public static final int error_color_material_light = 0x7f05003e; + public static final int foreground_material_dark = 0x7f05003f; + public static final int foreground_material_light = 0x7f050040; + public static final int highlighted_text_material_dark = 0x7f050041; + public static final int highlighted_text_material_light = 0x7f050042; + public static final int material_blue_grey_800 = 0x7f050044; + public static final int material_blue_grey_900 = 0x7f050045; + public static final int material_blue_grey_950 = 0x7f050046; + public static final int material_deep_teal_200 = 0x7f050047; + public static final int material_deep_teal_500 = 0x7f050048; + public static final int material_grey_100 = 0x7f050049; + public static final int material_grey_300 = 0x7f05004a; + public static final int material_grey_50 = 0x7f05004b; + public static final int material_grey_600 = 0x7f05004c; + public static final int material_grey_800 = 0x7f05004d; + public static final int material_grey_850 = 0x7f05004e; + public static final int material_grey_900 = 0x7f05004f; + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int primary_dark_material_dark = 0x7f05006f; + public static final int primary_dark_material_light = 0x7f050070; + public static final int primary_material_dark = 0x7f050072; + public static final int primary_material_light = 0x7f050073; + public static final int primary_text_default_material_dark = 0x7f050075; + public static final int primary_text_default_material_light = 0x7f050076; + public static final int primary_text_disabled_material_dark = 0x7f050077; + public static final int primary_text_disabled_material_light = 0x7f050078; + public static final int ripple_material_dark = 0x7f050079; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_dark = 0x7f05007c; + public static final int secondary_text_default_material_light = 0x7f05007d; + public static final int secondary_text_disabled_material_dark = 0x7f05007e; + public static final int secondary_text_disabled_material_light = 0x7f05007f; + public static final int switch_thumb_disabled_material_dark = 0x7f050080; + public static final int switch_thumb_disabled_material_light = 0x7f050081; + public static final int switch_thumb_material_dark = 0x7f050082; + public static final int switch_thumb_material_light = 0x7f050083; + public static final int switch_thumb_normal_material_dark = 0x7f050084; + public static final int switch_thumb_normal_material_light = 0x7f050085; + public static final int tooltip_background_dark = 0x7f050086; + public static final int tooltip_background_light = 0x7f050087; + } + public static final class dimen { + private dimen() {} + + public static final int abc_action_bar_content_inset_material = 0x7f060000; + public static final int abc_action_bar_content_inset_with_nav = 0x7f060001; + public static final int abc_action_bar_default_height_material = 0x7f060002; + public static final int abc_action_bar_default_padding_end_material = 0x7f060003; + public static final int abc_action_bar_default_padding_start_material = 0x7f060004; + public static final int abc_action_bar_elevation_material = 0x7f060005; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f060006; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f060007; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f060008; + public static final int abc_action_bar_stacked_max_height = 0x7f060009; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f06000a; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f06000b; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f06000c; + public static final int abc_action_button_min_height_material = 0x7f06000d; + public static final int abc_action_button_min_width_material = 0x7f06000e; + public static final int abc_action_button_min_width_overflow_material = 0x7f06000f; + public static final int abc_alert_dialog_button_bar_height = 0x7f060010; + public static final int abc_alert_dialog_button_dimen = 0x7f060011; + public static final int abc_button_inset_horizontal_material = 0x7f060012; + public static final int abc_button_inset_vertical_material = 0x7f060013; + public static final int abc_button_padding_horizontal_material = 0x7f060014; + public static final int abc_button_padding_vertical_material = 0x7f060015; + public static final int abc_cascading_menus_min_smallest_width = 0x7f060016; + public static final int abc_config_prefDialogWidth = 0x7f060017; + public static final int abc_control_corner_material = 0x7f060018; + public static final int abc_control_inset_material = 0x7f060019; + public static final int abc_control_padding_material = 0x7f06001a; + public static final int abc_dialog_corner_radius_material = 0x7f06001b; + public static final int abc_dialog_fixed_height_major = 0x7f06001c; + public static final int abc_dialog_fixed_height_minor = 0x7f06001d; + public static final int abc_dialog_fixed_width_major = 0x7f06001e; + public static final int abc_dialog_fixed_width_minor = 0x7f06001f; + public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f060020; + public static final int abc_dialog_list_padding_top_no_title = 0x7f060021; + public static final int abc_dialog_min_width_major = 0x7f060022; + public static final int abc_dialog_min_width_minor = 0x7f060023; + public static final int abc_dialog_padding_material = 0x7f060024; + public static final int abc_dialog_padding_top_material = 0x7f060025; + public static final int abc_dialog_title_divider_material = 0x7f060026; + public static final int abc_disabled_alpha_material_dark = 0x7f060027; + public static final int abc_disabled_alpha_material_light = 0x7f060028; + public static final int abc_dropdownitem_icon_width = 0x7f060029; + public static final int abc_dropdownitem_text_padding_left = 0x7f06002a; + public static final int abc_dropdownitem_text_padding_right = 0x7f06002b; + public static final int abc_edit_text_inset_bottom_material = 0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material = 0x7f06002d; + public static final int abc_edit_text_inset_top_material = 0x7f06002e; + public static final int abc_floating_window_z = 0x7f06002f; + public static final int abc_list_item_padding_horizontal_material = 0x7f060030; + public static final int abc_panel_menu_list_width = 0x7f060031; + public static final int abc_progress_bar_height_material = 0x7f060032; + public static final int abc_search_view_preferred_height = 0x7f060033; + public static final int abc_search_view_preferred_width = 0x7f060034; + public static final int abc_seekbar_track_background_height_material = 0x7f060035; + public static final int abc_seekbar_track_progress_height_material = 0x7f060036; + public static final int abc_select_dialog_padding_start_material = 0x7f060037; + public static final int abc_switch_padding = 0x7f060038; + public static final int abc_text_size_body_1_material = 0x7f060039; + public static final int abc_text_size_body_2_material = 0x7f06003a; + public static final int abc_text_size_button_material = 0x7f06003b; + public static final int abc_text_size_caption_material = 0x7f06003c; + public static final int abc_text_size_display_1_material = 0x7f06003d; + public static final int abc_text_size_display_2_material = 0x7f06003e; + public static final int abc_text_size_display_3_material = 0x7f06003f; + public static final int abc_text_size_display_4_material = 0x7f060040; + public static final int abc_text_size_headline_material = 0x7f060041; + public static final int abc_text_size_large_material = 0x7f060042; + public static final int abc_text_size_medium_material = 0x7f060043; + public static final int abc_text_size_menu_header_material = 0x7f060044; + public static final int abc_text_size_menu_material = 0x7f060045; + public static final int abc_text_size_small_material = 0x7f060046; + public static final int abc_text_size_subhead_material = 0x7f060047; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f060048; + public static final int abc_text_size_title_material = 0x7f060049; + public static final int abc_text_size_title_material_toolbar = 0x7f06004a; + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int disabled_alpha_material_dark = 0x7f060081; + public static final int disabled_alpha_material_light = 0x7f060082; + public static final int highlight_alpha_material_colored = 0x7f060086; + public static final int highlight_alpha_material_dark = 0x7f060087; + public static final int highlight_alpha_material_light = 0x7f060088; + public static final int hint_alpha_material_dark = 0x7f060089; + public static final int hint_alpha_material_light = 0x7f06008a; + public static final int hint_pressed_alpha_material_dark = 0x7f06008b; + public static final int hint_pressed_alpha_material_light = 0x7f06008c; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + public static final int tooltip_corner_radius = 0x7f0600d3; + public static final int tooltip_horizontal_padding = 0x7f0600d4; + public static final int tooltip_margin = 0x7f0600d5; + public static final int tooltip_precise_anchor_extra_offset = 0x7f0600d6; + public static final int tooltip_precise_anchor_threshold = 0x7f0600d7; + public static final int tooltip_vertical_padding = 0x7f0600d8; + public static final int tooltip_y_offset_non_touch = 0x7f0600d9; + public static final int tooltip_y_offset_touch = 0x7f0600da; + } + public static final class drawable { + private drawable() {} + + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f070006; + public static final int abc_action_bar_item_background_material = 0x7f070007; + public static final int abc_btn_borderless_material = 0x7f070008; + public static final int abc_btn_check_material = 0x7f070009; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f07000a; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f07000b; + public static final int abc_btn_colored_material = 0x7f07000c; + public static final int abc_btn_default_mtrl_shape = 0x7f07000d; + public static final int abc_btn_radio_material = 0x7f07000e; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f07000f; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f070010; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f070011; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f070012; + public static final int abc_cab_background_internal_bg = 0x7f070013; + public static final int abc_cab_background_top_material = 0x7f070014; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f070015; + public static final int abc_control_background_material = 0x7f070016; + public static final int abc_dialog_material_background = 0x7f070017; + public static final int abc_edit_text_material = 0x7f070018; + public static final int abc_ic_ab_back_material = 0x7f070019; + public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f07001a; + public static final int abc_ic_clear_material = 0x7f07001b; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f07001c; + public static final int abc_ic_go_search_api_material = 0x7f07001d; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f07001e; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f07001f; + public static final int abc_ic_menu_overflow_material = 0x7f070020; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f070021; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f070022; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f070023; + public static final int abc_ic_search_api_material = 0x7f070024; + public static final int abc_ic_star_black_16dp = 0x7f070025; + public static final int abc_ic_star_black_36dp = 0x7f070026; + public static final int abc_ic_star_black_48dp = 0x7f070027; + public static final int abc_ic_star_half_black_16dp = 0x7f070028; + public static final int abc_ic_star_half_black_36dp = 0x7f070029; + public static final int abc_ic_star_half_black_48dp = 0x7f07002a; + public static final int abc_ic_voice_search_api_material = 0x7f07002b; + public static final int abc_item_background_holo_dark = 0x7f07002c; + public static final int abc_item_background_holo_light = 0x7f07002d; + public static final int abc_list_divider_material = 0x7f07002e; + public static final int abc_list_divider_mtrl_alpha = 0x7f07002f; + public static final int abc_list_focused_holo = 0x7f070030; + public static final int abc_list_longpressed_holo = 0x7f070031; + public static final int abc_list_pressed_holo_dark = 0x7f070032; + public static final int abc_list_pressed_holo_light = 0x7f070033; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f070034; + public static final int abc_list_selector_background_transition_holo_light = 0x7f070035; + public static final int abc_list_selector_disabled_holo_dark = 0x7f070036; + public static final int abc_list_selector_disabled_holo_light = 0x7f070037; + public static final int abc_list_selector_holo_dark = 0x7f070038; + public static final int abc_list_selector_holo_light = 0x7f070039; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f07003a; + public static final int abc_popup_background_mtrl_mult = 0x7f07003b; + public static final int abc_ratingbar_indicator_material = 0x7f07003c; + public static final int abc_ratingbar_material = 0x7f07003d; + public static final int abc_ratingbar_small_material = 0x7f07003e; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f07003f; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f070040; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f070041; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f070042; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f070043; + public static final int abc_seekbar_thumb_material = 0x7f070044; + public static final int abc_seekbar_tick_mark_material = 0x7f070045; + public static final int abc_seekbar_track_material = 0x7f070046; + public static final int abc_spinner_mtrl_am_alpha = 0x7f070047; + public static final int abc_spinner_textfield_background_material = 0x7f070048; + public static final int abc_switch_thumb_material = 0x7f070049; + public static final int abc_switch_track_mtrl_alpha = 0x7f07004a; + public static final int abc_tab_indicator_material = 0x7f07004b; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f07004c; + public static final int abc_text_cursor_material = 0x7f07004d; + public static final int abc_text_select_handle_left_mtrl_dark = 0x7f07004e; + public static final int abc_text_select_handle_left_mtrl_light = 0x7f07004f; + public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f070050; + public static final int abc_text_select_handle_middle_mtrl_light = 0x7f070051; + public static final int abc_text_select_handle_right_mtrl_dark = 0x7f070052; + public static final int abc_text_select_handle_right_mtrl_light = 0x7f070053; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f070054; + public static final int abc_textfield_default_mtrl_alpha = 0x7f070055; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f070056; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f070057; + public static final int abc_textfield_search_material = 0x7f070058; + public static final int abc_vector_test = 0x7f070059; + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + public static final int tooltip_frame_dark = 0x7f070086; + public static final int tooltip_frame_light = 0x7f070087; + } + public static final class id { + private id() {} + + public static final int action_bar = 0x7f080007; + public static final int action_bar_activity_content = 0x7f080008; + public static final int action_bar_container = 0x7f080009; + public static final int action_bar_root = 0x7f08000a; + public static final int action_bar_spinner = 0x7f08000b; + public static final int action_bar_subtitle = 0x7f08000c; + public static final int action_bar_title = 0x7f08000d; + public static final int action_container = 0x7f08000e; + public static final int action_context_bar = 0x7f08000f; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_menu_divider = 0x7f080012; + public static final int action_menu_presenter = 0x7f080013; + public static final int action_mode_bar = 0x7f080014; + public static final int action_mode_bar_stub = 0x7f080015; + public static final int action_mode_close_button = 0x7f080016; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int activity_chooser_view_content = 0x7f080019; + public static final int add = 0x7f08001a; + public static final int alertTitle = 0x7f08001b; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int buttonPanel = 0x7f080023; + public static final int checkbox = 0x7f080028; + public static final int chronometer = 0x7f080029; + public static final int content = 0x7f08002e; + public static final int contentPanel = 0x7f08002f; + public static final int custom = 0x7f080031; + public static final int customPanel = 0x7f080032; + public static final int decor_content_parent = 0x7f080033; + public static final int default_activity_button = 0x7f080034; + public static final int edit_query = 0x7f08003b; + public static final int end = 0x7f08003c; + public static final int expand_activities_button = 0x7f080041; + public static final int expanded_menu = 0x7f080042; + public static final int forever = 0x7f080048; + public static final int group_divider = 0x7f08004a; + public static final int home = 0x7f08004b; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int image = 0x7f080050; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int listMode = 0x7f080059; + public static final int list_item = 0x7f08005a; + public static final int message = 0x7f08005d; + public static final int multiply = 0x7f080062; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int parentPanel = 0x7f08006c; + public static final int progress_circular = 0x7f08006f; + public static final int progress_horizontal = 0x7f080070; + public static final int radio = 0x7f080071; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int screen = 0x7f080078; + public static final int scrollIndicatorDown = 0x7f08007a; + public static final int scrollIndicatorUp = 0x7f08007b; + public static final int scrollView = 0x7f08007c; + public static final int search_badge = 0x7f08007e; + public static final int search_bar = 0x7f08007f; + public static final int search_button = 0x7f080080; + public static final int search_close_btn = 0x7f080081; + public static final int search_edit_frame = 0x7f080082; + public static final int search_go_btn = 0x7f080083; + public static final int search_mag_icon = 0x7f080084; + public static final int search_plate = 0x7f080085; + public static final int search_src_text = 0x7f080086; + public static final int search_voice_btn = 0x7f080087; + public static final int select_dialog_listview = 0x7f080088; + public static final int shortcut = 0x7f08008a; + public static final int spacer = 0x7f080093; + public static final int split_action_bar = 0x7f080094; + public static final int src_atop = 0x7f080095; + public static final int src_in = 0x7f080096; + public static final int src_over = 0x7f080097; + public static final int start = 0x7f080098; + public static final int submenuarrow = 0x7f08009b; + public static final int submit_area = 0x7f08009c; + public static final int tabMode = 0x7f08009d; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int textSpacerNoButtons = 0x7f0800a3; + public static final int textSpacerNoTitle = 0x7f0800a4; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int titleDividerNoCustom = 0x7f0800ac; + public static final int title_template = 0x7f0800ad; + public static final int top = 0x7f0800ae; + public static final int topPanel = 0x7f0800af; + public static final int uniform = 0x7f0800b6; + public static final int up = 0x7f0800b8; + public static final int wrap_content = 0x7f0800bd; + } + public static final class integer { + private integer() {} + + public static final int abc_config_activityDefaultDur = 0x7f090000; + public static final int abc_config_activityShortDur = 0x7f090001; + public static final int cancel_button_image_alpha = 0x7f090004; + public static final int config_tooltipAnimTime = 0x7f090005; + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int abc_action_bar_title_item = 0x7f0b0000; + public static final int abc_action_bar_up_container = 0x7f0b0001; + public static final int abc_action_menu_item_layout = 0x7f0b0002; + public static final int abc_action_menu_layout = 0x7f0b0003; + public static final int abc_action_mode_bar = 0x7f0b0004; + public static final int abc_action_mode_close_item_material = 0x7f0b0005; + public static final int abc_activity_chooser_view = 0x7f0b0006; + public static final int abc_activity_chooser_view_list_item = 0x7f0b0007; + public static final int abc_alert_dialog_button_bar_material = 0x7f0b0008; + public static final int abc_alert_dialog_material = 0x7f0b0009; + public static final int abc_alert_dialog_title_material = 0x7f0b000a; + public static final int abc_cascading_menu_item_layout = 0x7f0b000b; + public static final int abc_dialog_title_material = 0x7f0b000c; + public static final int abc_expanded_menu_layout = 0x7f0b000d; + public static final int abc_list_menu_item_checkbox = 0x7f0b000e; + public static final int abc_list_menu_item_icon = 0x7f0b000f; + public static final int abc_list_menu_item_layout = 0x7f0b0010; + public static final int abc_list_menu_item_radio = 0x7f0b0011; + public static final int abc_popup_menu_header_item_layout = 0x7f0b0012; + public static final int abc_popup_menu_item_layout = 0x7f0b0013; + public static final int abc_screen_content_include = 0x7f0b0014; + public static final int abc_screen_simple = 0x7f0b0015; + public static final int abc_screen_simple_overlay_action_mode = 0x7f0b0016; + public static final int abc_screen_toolbar = 0x7f0b0017; + public static final int abc_search_dropdown_item_icons_2line = 0x7f0b0018; + public static final int abc_search_view = 0x7f0b0019; + public static final int abc_select_dialog_material = 0x7f0b001a; + public static final int abc_tooltip = 0x7f0b001b; + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + public static final int select_dialog_item_material = 0x7f0b003c; + public static final int select_dialog_multichoice_material = 0x7f0b003d; + public static final int select_dialog_singlechoice_material = 0x7f0b003e; + public static final int support_simple_spinner_dropdown_item = 0x7f0b003f; + } + public static final class string { + private string() {} + + public static final int abc_action_bar_home_description = 0x7f0d0000; + public static final int abc_action_bar_up_description = 0x7f0d0001; + public static final int abc_action_menu_overflow_description = 0x7f0d0002; + public static final int abc_action_mode_done = 0x7f0d0003; + public static final int abc_activity_chooser_view_see_all = 0x7f0d0004; + public static final int abc_activitychooserview_choose_application = 0x7f0d0005; + public static final int abc_capital_off = 0x7f0d0006; + public static final int abc_capital_on = 0x7f0d0007; + public static final int abc_font_family_body_1_material = 0x7f0d0008; + public static final int abc_font_family_body_2_material = 0x7f0d0009; + public static final int abc_font_family_button_material = 0x7f0d000a; + public static final int abc_font_family_caption_material = 0x7f0d000b; + public static final int abc_font_family_display_1_material = 0x7f0d000c; + public static final int abc_font_family_display_2_material = 0x7f0d000d; + public static final int abc_font_family_display_3_material = 0x7f0d000e; + public static final int abc_font_family_display_4_material = 0x7f0d000f; + public static final int abc_font_family_headline_material = 0x7f0d0010; + public static final int abc_font_family_menu_material = 0x7f0d0011; + public static final int abc_font_family_subhead_material = 0x7f0d0012; + public static final int abc_font_family_title_material = 0x7f0d0013; + public static final int abc_menu_alt_shortcut_label = 0x7f0d0014; + public static final int abc_menu_ctrl_shortcut_label = 0x7f0d0015; + public static final int abc_menu_delete_shortcut_label = 0x7f0d0016; + public static final int abc_menu_enter_shortcut_label = 0x7f0d0017; + public static final int abc_menu_function_shortcut_label = 0x7f0d0018; + public static final int abc_menu_meta_shortcut_label = 0x7f0d0019; + public static final int abc_menu_shift_shortcut_label = 0x7f0d001a; + public static final int abc_menu_space_shortcut_label = 0x7f0d001b; + public static final int abc_menu_sym_shortcut_label = 0x7f0d001c; + public static final int abc_prepend_shortcut_label = 0x7f0d001d; + public static final int abc_search_hint = 0x7f0d001e; + public static final int abc_searchview_description_clear = 0x7f0d001f; + public static final int abc_searchview_description_query = 0x7f0d0020; + public static final int abc_searchview_description_search = 0x7f0d0021; + public static final int abc_searchview_description_submit = 0x7f0d0022; + public static final int abc_searchview_description_voice = 0x7f0d0023; + public static final int abc_shareactionprovider_share_with = 0x7f0d0024; + public static final int abc_shareactionprovider_share_with_application = 0x7f0d0025; + public static final int abc_toolbar_collapse_description = 0x7f0d0026; + public static final int search_menu_title = 0x7f0d0036; + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int AlertDialog_AppCompat = 0x7f0e0000; + public static final int AlertDialog_AppCompat_Light = 0x7f0e0001; + public static final int Animation_AppCompat_Dialog = 0x7f0e0002; + public static final int Animation_AppCompat_DropDownUp = 0x7f0e0003; + public static final int Animation_AppCompat_Tooltip = 0x7f0e0004; + public static final int Base_AlertDialog_AppCompat = 0x7f0e0008; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f0e0009; + public static final int Base_Animation_AppCompat_Dialog = 0x7f0e000a; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0e000b; + public static final int Base_Animation_AppCompat_Tooltip = 0x7f0e000c; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0e000f; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f0e000e; + public static final int Base_TextAppearance_AppCompat = 0x7f0e0010; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0e0011; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0e0012; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f0e0013; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0e0014; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0e0015; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0e0016; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0e0017; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0e0018; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0e0019; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0e001a; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f0e001b; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0e001c; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0e001d; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0e001e; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0e001f; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0e0020; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0e0021; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0e0022; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0e0023; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0e0024; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f0e0025; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0e0026; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0e0027; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0e0028; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f0e0029; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0e002a; + public static final int Base_TextAppearance_AppCompat_Tooltip = 0x7f0e002b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0e002c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0e002d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0e002e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0e002f; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0e0030; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0e0031; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0e0032; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0e0033; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0e0034; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0e0035; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0e0036; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0e0037; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0e0038; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0e0039; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0e003a; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0e003b; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0e003c; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0e003d; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0e003e; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0e003f; + public static final int Base_ThemeOverlay_AppCompat = 0x7f0e005f; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0e0060; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0e0061; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0e0062; + public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f0e0063; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0e0064; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0e0065; + public static final int Base_Theme_AppCompat = 0x7f0e0040; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0e0041; + public static final int Base_Theme_AppCompat_Dialog = 0x7f0e0042; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0e0046; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0e0043; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0e0044; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0e0045; + public static final int Base_Theme_AppCompat_Light = 0x7f0e0047; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0e0048; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0e0049; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0e004d; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0e004a; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0e004b; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0e004c; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f0e0075; + public static final int Base_V21_Theme_AppCompat = 0x7f0e0071; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0e0072; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f0e0073; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0e0074; + public static final int Base_V22_Theme_AppCompat = 0x7f0e0076; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f0e0077; + public static final int Base_V23_Theme_AppCompat = 0x7f0e0078; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f0e0079; + public static final int Base_V26_Theme_AppCompat = 0x7f0e007a; + public static final int Base_V26_Theme_AppCompat_Light = 0x7f0e007b; + public static final int Base_V26_Widget_AppCompat_Toolbar = 0x7f0e007c; + public static final int Base_V28_Theme_AppCompat = 0x7f0e007d; + public static final int Base_V28_Theme_AppCompat_Light = 0x7f0e007e; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f0e0083; + public static final int Base_V7_Theme_AppCompat = 0x7f0e007f; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0e0080; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f0e0081; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0e0082; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0e0084; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0e0085; + public static final int Base_V7_Widget_AppCompat_Toolbar = 0x7f0e0086; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f0e0087; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0e0088; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0e0089; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0e008a; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0e008b; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f0e008c; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0e008d; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0e008e; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f0e008f; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0e0090; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0e0091; + public static final int Base_Widget_AppCompat_Button = 0x7f0e0092; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0e0098; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0e0099; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0e0093; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0e0094; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0e0095; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0e0096; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f0e0097; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0e009a; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0e009b; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0e009c; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0e009d; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0e009e; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0e009f; + public static final int Base_Widget_AppCompat_EditText = 0x7f0e00a0; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f0e00a1; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0e00a2; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0e00a3; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0e00a4; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0e00a5; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0e00a6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0e00a7; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0e00a8; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0e00a9; + public static final int Base_Widget_AppCompat_ListMenuView = 0x7f0e00aa; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0e00ab; + public static final int Base_Widget_AppCompat_ListView = 0x7f0e00ac; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0e00ad; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0e00ae; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0e00af; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0e00b0; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0e00b1; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0e00b2; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0e00b3; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f0e00b4; + public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0e00b5; + public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0e00b6; + public static final int Base_Widget_AppCompat_SearchView = 0x7f0e00b7; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0e00b8; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f0e00b9; + public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f0e00ba; + public static final int Base_Widget_AppCompat_Spinner = 0x7f0e00bb; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0e00bc; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0e00bd; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f0e00be; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0e00bf; + public static final int Platform_AppCompat = 0x7f0e00c7; + public static final int Platform_AppCompat_Light = 0x7f0e00c8; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f0e00cd; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0e00ce; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0e00cf; + public static final int Platform_V21_AppCompat = 0x7f0e00d0; + public static final int Platform_V21_AppCompat_Light = 0x7f0e00d1; + public static final int Platform_V25_AppCompat = 0x7f0e00d2; + public static final int Platform_V25_AppCompat_Light = 0x7f0e00d3; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f0e00d4; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0e00d5; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0e00d6; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0e00d7; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0e00d8; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0e00d9; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 0x7f0e00da; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 0x7f0e00db; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0e00dc; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 0x7f0e00dd; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0e00e3; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0e00de; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0e00df; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0e00e0; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0e00e1; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0e00e2; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0e00e4; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0e00e5; + public static final int TextAppearance_AppCompat = 0x7f0e00e6; + public static final int TextAppearance_AppCompat_Body1 = 0x7f0e00e7; + public static final int TextAppearance_AppCompat_Body2 = 0x7f0e00e8; + public static final int TextAppearance_AppCompat_Button = 0x7f0e00e9; + public static final int TextAppearance_AppCompat_Caption = 0x7f0e00ea; + public static final int TextAppearance_AppCompat_Display1 = 0x7f0e00eb; + public static final int TextAppearance_AppCompat_Display2 = 0x7f0e00ec; + public static final int TextAppearance_AppCompat_Display3 = 0x7f0e00ed; + public static final int TextAppearance_AppCompat_Display4 = 0x7f0e00ee; + public static final int TextAppearance_AppCompat_Headline = 0x7f0e00ef; + public static final int TextAppearance_AppCompat_Inverse = 0x7f0e00f0; + public static final int TextAppearance_AppCompat_Large = 0x7f0e00f1; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0e00f2; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0e00f3; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0e00f4; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0e00f5; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0e00f6; + public static final int TextAppearance_AppCompat_Medium = 0x7f0e00f7; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0e00f8; + public static final int TextAppearance_AppCompat_Menu = 0x7f0e00f9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0e00fa; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0e00fb; + public static final int TextAppearance_AppCompat_Small = 0x7f0e00fc; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0e00fd; + public static final int TextAppearance_AppCompat_Subhead = 0x7f0e00fe; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0e00ff; + public static final int TextAppearance_AppCompat_Title = 0x7f0e0100; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0e0101; + public static final int TextAppearance_AppCompat_Tooltip = 0x7f0e0102; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0e0103; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0e0104; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0e0105; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0e0106; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0e0107; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0e0108; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0e0109; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0e010a; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0e010b; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0e010c; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0e010d; + public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0e010e; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0e010f; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0e0110; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0e0111; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0e0112; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0e0113; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0e0114; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0e0115; + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0e0137; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0e0138; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0e0139; + public static final int ThemeOverlay_AppCompat = 0x7f0e016a; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0e016b; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f0e016c; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0e016d; + public static final int ThemeOverlay_AppCompat_Dialog = 0x7f0e016e; + public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0e016f; + public static final int ThemeOverlay_AppCompat_Light = 0x7f0e0170; + public static final int Theme_AppCompat = 0x7f0e013a; + public static final int Theme_AppCompat_CompactMenu = 0x7f0e013b; + public static final int Theme_AppCompat_DayNight = 0x7f0e013c; + public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0e013d; + public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0e013e; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0e0141; + public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0e013f; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0e0140; + public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0e0142; + public static final int Theme_AppCompat_Dialog = 0x7f0e0143; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0e0146; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f0e0144; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0e0145; + public static final int Theme_AppCompat_Light = 0x7f0e0147; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0e0148; + public static final int Theme_AppCompat_Light_Dialog = 0x7f0e0149; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0e014c; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0e014a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0e014b; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0e014d; + public static final int Theme_AppCompat_NoActionBar = 0x7f0e014e; + public static final int Widget_AppCompat_ActionBar = 0x7f0e017d; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0e017e; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0e017f; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0e0180; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0e0181; + public static final int Widget_AppCompat_ActionButton = 0x7f0e0182; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0e0183; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0e0184; + public static final int Widget_AppCompat_ActionMode = 0x7f0e0185; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f0e0186; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0e0187; + public static final int Widget_AppCompat_Button = 0x7f0e0188; + public static final int Widget_AppCompat_ButtonBar = 0x7f0e018e; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0e018f; + public static final int Widget_AppCompat_Button_Borderless = 0x7f0e0189; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0e018a; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0e018b; + public static final int Widget_AppCompat_Button_Colored = 0x7f0e018c; + public static final int Widget_AppCompat_Button_Small = 0x7f0e018d; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0e0190; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0e0191; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0e0192; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0e0193; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0e0194; + public static final int Widget_AppCompat_EditText = 0x7f0e0195; + public static final int Widget_AppCompat_ImageButton = 0x7f0e0196; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f0e0197; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0e0198; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0e0199; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0e019a; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0e019b; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0e019c; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0e019d; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0e019e; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0e019f; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f0e01a0; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0e01a1; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0e01a2; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0e01a3; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0e01a4; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0e01a5; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0e01a6; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0e01a7; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0e01a8; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0e01a9; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0e01aa; + public static final int Widget_AppCompat_Light_SearchView = 0x7f0e01ab; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0e01ac; + public static final int Widget_AppCompat_ListMenuView = 0x7f0e01ad; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f0e01ae; + public static final int Widget_AppCompat_ListView = 0x7f0e01af; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f0e01b0; + public static final int Widget_AppCompat_ListView_Menu = 0x7f0e01b1; + public static final int Widget_AppCompat_PopupMenu = 0x7f0e01b2; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0e01b3; + public static final int Widget_AppCompat_PopupWindow = 0x7f0e01b4; + public static final int Widget_AppCompat_ProgressBar = 0x7f0e01b5; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0e01b6; + public static final int Widget_AppCompat_RatingBar = 0x7f0e01b7; + public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0e01b8; + public static final int Widget_AppCompat_RatingBar_Small = 0x7f0e01b9; + public static final int Widget_AppCompat_SearchView = 0x7f0e01ba; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0e01bb; + public static final int Widget_AppCompat_SeekBar = 0x7f0e01bc; + public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f0e01bd; + public static final int Widget_AppCompat_Spinner = 0x7f0e01be; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0e01bf; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0e01c0; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0e01c1; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0e01c2; + public static final int Widget_AppCompat_Toolbar = 0x7f0e01c3; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0e01c4; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ActionBar = { 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f0300a4, 0x7f0300a9, 0x7f0300aa, 0x7f0300b5, 0x7f0300df, 0x7f0300e4, 0x7f0300e9, 0x7f0300ea, 0x7f0300ec, 0x7f0300f6, 0x7f030100, 0x7f030123, 0x7f03012f, 0x7f030140, 0x7f030144, 0x7f030145, 0x7f030173, 0x7f030176, 0x7f0301bb, 0x7f0301c5 }; + public static final int ActionBar_background = 0; + public static final int ActionBar_backgroundSplit = 1; + public static final int ActionBar_backgroundStacked = 2; + public static final int ActionBar_contentInsetEnd = 3; + public static final int ActionBar_contentInsetEndWithActions = 4; + public static final int ActionBar_contentInsetLeft = 5; + public static final int ActionBar_contentInsetRight = 6; + public static final int ActionBar_contentInsetStart = 7; + public static final int ActionBar_contentInsetStartWithNavigation = 8; + public static final int ActionBar_customNavigationLayout = 9; + public static final int ActionBar_displayOptions = 10; + public static final int ActionBar_divider = 11; + public static final int ActionBar_elevation = 12; + public static final int ActionBar_height = 13; + public static final int ActionBar_hideOnContentScroll = 14; + public static final int ActionBar_homeAsUpIndicator = 15; + public static final int ActionBar_homeLayout = 16; + public static final int ActionBar_icon = 17; + public static final int ActionBar_indeterminateProgressStyle = 18; + public static final int ActionBar_itemPadding = 19; + public static final int ActionBar_logo = 20; + public static final int ActionBar_navigationMode = 21; + public static final int ActionBar_popupTheme = 22; + public static final int ActionBar_progressBarPadding = 23; + public static final int ActionBar_progressBarStyle = 24; + public static final int ActionBar_subtitle = 25; + public static final int ActionBar_subtitleTextStyle = 26; + public static final int ActionBar_title = 27; + public static final int ActionBar_titleTextStyle = 28; + public static final int[] ActionBarLayout = { 0x10100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int[] ActionMenuItemView = { 0x101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMenuView = { }; + public static final int[] ActionMode = { 0x7f030031, 0x7f030032, 0x7f03007e, 0x7f0300df, 0x7f030176, 0x7f0301c5 }; + public static final int ActionMode_background = 0; + public static final int ActionMode_backgroundSplit = 1; + public static final int ActionMode_closeItemLayout = 2; + public static final int ActionMode_height = 3; + public static final int ActionMode_subtitleTextStyle = 4; + public static final int ActionMode_titleTextStyle = 5; + public static final int[] ActivityChooserView = { 0x7f0300ba, 0x7f0300f7 }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + public static final int ActivityChooserView_initialActivityCount = 1; + public static final int[] AlertDialog = { 0x10100f2, 0x7f030052, 0x7f030053, 0x7f03011a, 0x7f03011b, 0x7f03012c, 0x7f03015b, 0x7f03015c }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonIconDimen = 1; + public static final int AlertDialog_buttonPanelSideLayout = 2; + public static final int AlertDialog_listItemLayout = 3; + public static final int AlertDialog_listLayout = 4; + public static final int AlertDialog_multiChoiceItemLayout = 5; + public static final int AlertDialog_showTitle = 6; + public static final int AlertDialog_singleChoiceItemLayout = 7; + public static final int[] AnimatedStateListDrawableCompat = { 0x101011c, 0x1010194, 0x1010195, 0x1010196, 0x101030c, 0x101030d }; + public static final int AnimatedStateListDrawableCompat_android_dither = 0; + public static final int AnimatedStateListDrawableCompat_android_visible = 1; + public static final int AnimatedStateListDrawableCompat_android_variablePadding = 2; + public static final int AnimatedStateListDrawableCompat_android_constantSize = 3; + public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4; + public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5; + public static final int[] AnimatedStateListDrawableItem = { 0x10100d0, 0x1010199 }; + public static final int AnimatedStateListDrawableItem_android_id = 0; + public static final int AnimatedStateListDrawableItem_android_drawable = 1; + public static final int[] AnimatedStateListDrawableTransition = { 0x1010199, 0x1010449, 0x101044a, 0x101044b }; + public static final int AnimatedStateListDrawableTransition_android_drawable = 0; + public static final int AnimatedStateListDrawableTransition_android_toId = 1; + public static final int AnimatedStateListDrawableTransition_android_fromId = 2; + public static final int AnimatedStateListDrawableTransition_android_reversible = 3; + public static final int[] AppCompatImageView = { 0x1010119, 0x7f030166, 0x7f0301b9, 0x7f0301ba }; + public static final int AppCompatImageView_android_src = 0; + public static final int AppCompatImageView_srcCompat = 1; + public static final int AppCompatImageView_tint = 2; + public static final int AppCompatImageView_tintMode = 3; + public static final int[] AppCompatSeekBar = { 0x1010142, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8 }; + public static final int AppCompatSeekBar_android_thumb = 0; + public static final int AppCompatSeekBar_tickMark = 1; + public static final int AppCompatSeekBar_tickMarkTint = 2; + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + public static final int[] AppCompatTextHelper = { 0x1010034, 0x101016d, 0x101016e, 0x101016f, 0x1010170, 0x1010392, 0x1010393 }; + public static final int AppCompatTextHelper_android_textAppearance = 0; + public static final int AppCompatTextHelper_android_drawableTop = 1; + public static final int AppCompatTextHelper_android_drawableBottom = 2; + public static final int AppCompatTextHelper_android_drawableLeft = 3; + public static final int AppCompatTextHelper_android_drawableRight = 4; + public static final int AppCompatTextHelper_android_drawableStart = 5; + public static final int AppCompatTextHelper_android_drawableEnd = 6; + public static final int[] AppCompatTextView = { 0x1010034, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030030, 0x7f0300ce, 0x7f0300d1, 0x7f030108, 0x7f030116, 0x7f030196 }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_autoSizeMaxTextSize = 1; + public static final int AppCompatTextView_autoSizeMinTextSize = 2; + public static final int AppCompatTextView_autoSizePresetSizes = 3; + public static final int AppCompatTextView_autoSizeStepGranularity = 4; + public static final int AppCompatTextView_autoSizeTextType = 5; + public static final int AppCompatTextView_firstBaselineToTopHeight = 6; + public static final int AppCompatTextView_fontFamily = 7; + public static final int AppCompatTextView_lastBaselineToBottomHeight = 8; + public static final int AppCompatTextView_lineHeight = 9; + public static final int AppCompatTextView_textAllCaps = 10; + public static final int[] AppCompatTheme = { 0x1010057, 0x10100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, 0x7f030025, 0x7f03002b, 0x7f03003e, 0x7f03004c, 0x7f03004d, 0x7f03004e, 0x7f03004f, 0x7f030050, 0x7f030054, 0x7f030055, 0x7f03005f, 0x7f030064, 0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008e, 0x7f03009d, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300ab, 0x7f0300ad, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3, 0x7f0300b4, 0x7f0300e9, 0x7f0300f5, 0x7f030118, 0x7f030119, 0x7f03011c, 0x7f03011d, 0x7f03011e, 0x7f03011f, 0x7f030120, 0x7f030121, 0x7f030122, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013f, 0x7f030141, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f030156, 0x7f030163, 0x7f030164, 0x7f03017a, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301ac, 0x7f0301ad, 0x7f0301c7, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca, 0x7f0301d1, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc }; + public static final int AppCompatTheme_android_windowIsFloating = 0; + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + public static final int AppCompatTheme_actionBarDivider = 2; + public static final int AppCompatTheme_actionBarItemBackground = 3; + public static final int AppCompatTheme_actionBarPopupTheme = 4; + public static final int AppCompatTheme_actionBarSize = 5; + public static final int AppCompatTheme_actionBarSplitStyle = 6; + public static final int AppCompatTheme_actionBarStyle = 7; + public static final int AppCompatTheme_actionBarTabBarStyle = 8; + public static final int AppCompatTheme_actionBarTabStyle = 9; + public static final int AppCompatTheme_actionBarTabTextStyle = 10; + public static final int AppCompatTheme_actionBarTheme = 11; + public static final int AppCompatTheme_actionBarWidgetTheme = 12; + public static final int AppCompatTheme_actionButtonStyle = 13; + public static final int AppCompatTheme_actionDropDownStyle = 14; + public static final int AppCompatTheme_actionMenuTextAppearance = 15; + public static final int AppCompatTheme_actionMenuTextColor = 16; + public static final int AppCompatTheme_actionModeBackground = 17; + public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; + public static final int AppCompatTheme_actionModeCloseDrawable = 19; + public static final int AppCompatTheme_actionModeCopyDrawable = 20; + public static final int AppCompatTheme_actionModeCutDrawable = 21; + public static final int AppCompatTheme_actionModeFindDrawable = 22; + public static final int AppCompatTheme_actionModePasteDrawable = 23; + public static final int AppCompatTheme_actionModePopupWindowStyle = 24; + public static final int AppCompatTheme_actionModeSelectAllDrawable = 25; + public static final int AppCompatTheme_actionModeShareDrawable = 26; + public static final int AppCompatTheme_actionModeSplitBackground = 27; + public static final int AppCompatTheme_actionModeStyle = 28; + public static final int AppCompatTheme_actionModeWebSearchDrawable = 29; + public static final int AppCompatTheme_actionOverflowButtonStyle = 30; + public static final int AppCompatTheme_actionOverflowMenuStyle = 31; + public static final int AppCompatTheme_activityChooserViewStyle = 32; + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 33; + public static final int AppCompatTheme_alertDialogCenterButtons = 34; + public static final int AppCompatTheme_alertDialogStyle = 35; + public static final int AppCompatTheme_alertDialogTheme = 36; + public static final int AppCompatTheme_autoCompleteTextViewStyle = 37; + public static final int AppCompatTheme_borderlessButtonStyle = 38; + public static final int AppCompatTheme_buttonBarButtonStyle = 39; + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 40; + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 41; + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 42; + public static final int AppCompatTheme_buttonBarStyle = 43; + public static final int AppCompatTheme_buttonStyle = 44; + public static final int AppCompatTheme_buttonStyleSmall = 45; + public static final int AppCompatTheme_checkboxStyle = 46; + public static final int AppCompatTheme_checkedTextViewStyle = 47; + public static final int AppCompatTheme_colorAccent = 48; + public static final int AppCompatTheme_colorBackgroundFloating = 49; + public static final int AppCompatTheme_colorButtonNormal = 50; + public static final int AppCompatTheme_colorControlActivated = 51; + public static final int AppCompatTheme_colorControlHighlight = 52; + public static final int AppCompatTheme_colorControlNormal = 53; + public static final int AppCompatTheme_colorError = 54; + public static final int AppCompatTheme_colorPrimary = 55; + public static final int AppCompatTheme_colorPrimaryDark = 56; + public static final int AppCompatTheme_colorSwitchThumbNormal = 57; + public static final int AppCompatTheme_controlBackground = 58; + public static final int AppCompatTheme_dialogCornerRadius = 59; + public static final int AppCompatTheme_dialogPreferredPadding = 60; + public static final int AppCompatTheme_dialogTheme = 61; + public static final int AppCompatTheme_dividerHorizontal = 62; + public static final int AppCompatTheme_dividerVertical = 63; + public static final int AppCompatTheme_dropDownListViewStyle = 64; + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 65; + public static final int AppCompatTheme_editTextBackground = 66; + public static final int AppCompatTheme_editTextColor = 67; + public static final int AppCompatTheme_editTextStyle = 68; + public static final int AppCompatTheme_homeAsUpIndicator = 69; + public static final int AppCompatTheme_imageButtonStyle = 70; + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 71; + public static final int AppCompatTheme_listDividerAlertDialog = 72; + public static final int AppCompatTheme_listMenuViewStyle = 73; + public static final int AppCompatTheme_listPopupWindowStyle = 74; + public static final int AppCompatTheme_listPreferredItemHeight = 75; + public static final int AppCompatTheme_listPreferredItemHeightLarge = 76; + public static final int AppCompatTheme_listPreferredItemHeightSmall = 77; + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 78; + public static final int AppCompatTheme_listPreferredItemPaddingRight = 79; + public static final int AppCompatTheme_panelBackground = 80; + public static final int AppCompatTheme_panelMenuListTheme = 81; + public static final int AppCompatTheme_panelMenuListWidth = 82; + public static final int AppCompatTheme_popupMenuStyle = 83; + public static final int AppCompatTheme_popupWindowStyle = 84; + public static final int AppCompatTheme_radioButtonStyle = 85; + public static final int AppCompatTheme_ratingBarStyle = 86; + public static final int AppCompatTheme_ratingBarStyleIndicator = 87; + public static final int AppCompatTheme_ratingBarStyleSmall = 88; + public static final int AppCompatTheme_searchViewStyle = 89; + public static final int AppCompatTheme_seekBarStyle = 90; + public static final int AppCompatTheme_selectableItemBackground = 91; + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 92; + public static final int AppCompatTheme_spinnerDropDownItemStyle = 93; + public static final int AppCompatTheme_spinnerStyle = 94; + public static final int AppCompatTheme_switchStyle = 95; + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 96; + public static final int AppCompatTheme_textAppearanceListItem = 97; + public static final int AppCompatTheme_textAppearanceListItemSecondary = 98; + public static final int AppCompatTheme_textAppearanceListItemSmall = 99; + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 100; + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 101; + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 102; + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 103; + public static final int AppCompatTheme_textColorAlertDialogListItem = 104; + public static final int AppCompatTheme_textColorSearchUrl = 105; + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 106; + public static final int AppCompatTheme_toolbarStyle = 107; + public static final int AppCompatTheme_tooltipForegroundColor = 108; + public static final int AppCompatTheme_tooltipFrameBackground = 109; + public static final int AppCompatTheme_viewInflaterClass = 110; + public static final int AppCompatTheme_windowActionBar = 111; + public static final int AppCompatTheme_windowActionBarOverlay = 112; + public static final int AppCompatTheme_windowActionModeOverlay = 113; + public static final int AppCompatTheme_windowFixedHeightMajor = 114; + public static final int AppCompatTheme_windowFixedHeightMinor = 115; + public static final int AppCompatTheme_windowFixedWidthMajor = 116; + public static final int AppCompatTheme_windowFixedWidthMinor = 117; + public static final int AppCompatTheme_windowMinWidthMajor = 118; + public static final int AppCompatTheme_windowMinWidthMinor = 119; + public static final int AppCompatTheme_windowNoTitle = 120; + public static final int[] ButtonBarLayout = { 0x7f030026 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CompoundButton = { 0x1010107, 0x7f030056, 0x7f030057 }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonTint = 1; + public static final int CompoundButton_buttonTintMode = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] DrawerArrowToggle = { 0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030083, 0x7f0300ae, 0x7f0300dc, 0x7f030162, 0x7f0301b2 }; + public static final int DrawerArrowToggle_arrowHeadLength = 0; + public static final int DrawerArrowToggle_arrowShaftLength = 1; + public static final int DrawerArrowToggle_barLength = 2; + public static final int DrawerArrowToggle_color = 3; + public static final int DrawerArrowToggle_drawableSize = 4; + public static final int DrawerArrowToggle_gapBetweenBars = 5; + public static final int DrawerArrowToggle_spinBars = 6; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + public static final int[] LinearLayoutCompat = { 0x10100af, 0x10100c4, 0x1010126, 0x1010127, 0x1010128, 0x7f0300aa, 0x7f0300ac, 0x7f03012a, 0x7f030158 }; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 6; + public static final int LinearLayoutCompat_measureWithLargestChild = 7; + public static final int LinearLayoutCompat_showDividers = 8; + public static final int[] LinearLayoutCompat_Layout = { 0x10100b3, 0x10100f4, 0x10100f5, 0x1010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int[] ListPopupWindow = { 0x10102ac, 0x10102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MenuGroup = { 0x101000e, 0x10100d0, 0x1010194, 0x10101de, 0x10101df, 0x10101e0 }; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_visible = 2; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int[] MenuItem = { 0x1010002, 0x101000e, 0x10100d0, 0x1010106, 0x1010194, 0x10101de, 0x10101df, 0x10101e1, 0x10101e2, 0x10101e3, 0x10101e4, 0x10101e5, 0x101026f, 0x7f03000d, 0x7f03001f, 0x7f030020, 0x7f030028, 0x7f030090, 0x7f0300f2, 0x7f0300f3, 0x7f030131, 0x7f030157, 0x7f0301cb }; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_actionLayout = 13; + public static final int MenuItem_actionProviderClass = 14; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_alphabeticModifiers = 16; + public static final int MenuItem_contentDescription = 17; + public static final int MenuItem_iconTint = 18; + public static final int MenuItem_iconTintMode = 19; + public static final int MenuItem_numericModifiers = 20; + public static final int MenuItem_showAsAction = 21; + public static final int MenuItem_tooltipText = 22; + public static final int[] MenuView = { 0x10100ae, 0x101012c, 0x101012d, 0x101012e, 0x101012f, 0x1010130, 0x1010131, 0x7f030142, 0x7f030171 }; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_preserveIconSpacing = 7; + public static final int MenuView_subMenuArrow = 8; + public static final int[] PopupWindow = { 0x1010176, 0x10102c9, 0x7f030132 }; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_android_popupAnimationStyle = 1; + public static final int PopupWindow_overlapAnchor = 2; + public static final int[] PopupWindowBackgroundState = { 0x7f030168 }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int[] RecycleListView = { 0x7f030133, 0x7f030136 }; + public static final int RecycleListView_paddingBottomNoButtons = 0; + public static final int RecycleListView_paddingTopNoTitle = 1; + public static final int[] SearchView = { 0x10100da, 0x101011f, 0x1010220, 0x1010264, 0x7f030077, 0x7f03008f, 0x7f0300a5, 0x7f0300dd, 0x7f0300f4, 0x7f030109, 0x7f030146, 0x7f030147, 0x7f030151, 0x7f030152, 0x7f030172, 0x7f030177, 0x7f0301d2 }; + public static final int SearchView_android_focusable = 0; + public static final int SearchView_android_maxWidth = 1; + public static final int SearchView_android_inputType = 2; + public static final int SearchView_android_imeOptions = 3; + public static final int SearchView_closeIcon = 4; + public static final int SearchView_commitIcon = 5; + public static final int SearchView_defaultQueryHint = 6; + public static final int SearchView_goIcon = 7; + public static final int SearchView_iconifiedByDefault = 8; + public static final int SearchView_layout = 9; + public static final int SearchView_queryBackground = 10; + public static final int SearchView_queryHint = 11; + public static final int SearchView_searchHintIcon = 12; + public static final int SearchView_searchIcon = 13; + public static final int SearchView_submitBackground = 14; + public static final int SearchView_suggestionRowLayout = 15; + public static final int SearchView_voiceIcon = 16; + public static final int[] Spinner = { 0x10100b2, 0x1010176, 0x101017b, 0x1010262, 0x7f030140 }; + public static final int Spinner_android_entries = 0; + public static final int Spinner_android_popupBackground = 1; + public static final int Spinner_android_prompt = 2; + public static final int Spinner_android_dropDownWidth = 3; + public static final int Spinner_popupTheme = 4; + public static final int[] StateListDrawable = { 0x101011c, 0x1010194, 0x1010195, 0x1010196, 0x101030c, 0x101030d }; + public static final int StateListDrawable_android_dither = 0; + public static final int StateListDrawable_android_visible = 1; + public static final int StateListDrawable_android_variablePadding = 2; + public static final int StateListDrawable_android_constantSize = 3; + public static final int StateListDrawable_android_enterFadeDuration = 4; + public static final int StateListDrawable_android_exitFadeDuration = 5; + public static final int[] StateListDrawableItem = { 0x1010199 }; + public static final int StateListDrawableItem_android_drawable = 0; + public static final int[] SwitchCompat = { 0x1010124, 0x1010125, 0x1010142, 0x7f03015a, 0x7f030165, 0x7f030178, 0x7f030179, 0x7f03017b, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301cc, 0x7f0301cd, 0x7f0301ce }; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 3; + public static final int SwitchCompat_splitTrack = 4; + public static final int SwitchCompat_switchMinWidth = 5; + public static final int SwitchCompat_switchPadding = 6; + public static final int SwitchCompat_switchTextAppearance = 7; + public static final int SwitchCompat_thumbTextPadding = 8; + public static final int SwitchCompat_thumbTint = 9; + public static final int SwitchCompat_thumbTintMode = 10; + public static final int SwitchCompat_track = 11; + public static final int SwitchCompat_trackTint = 12; + public static final int SwitchCompat_trackTintMode = 13; + public static final int[] TextAppearance = { 0x1010095, 0x1010096, 0x1010097, 0x1010098, 0x101009a, 0x101009b, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x10103ac, 0x7f0300d1, 0x7f030196 }; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textColorHint = 4; + public static final int TextAppearance_android_textColorLink = 5; + public static final int TextAppearance_android_shadowColor = 6; + public static final int TextAppearance_android_shadowDx = 7; + public static final int TextAppearance_android_shadowDy = 8; + public static final int TextAppearance_android_shadowRadius = 9; + public static final int TextAppearance_android_fontFamily = 10; + public static final int TextAppearance_fontFamily = 11; + public static final int TextAppearance_textAllCaps = 12; + public static final int[] Toolbar = { 0x10100af, 0x1010140, 0x7f030051, 0x7f03007f, 0x7f030080, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f030123, 0x7f030124, 0x7f030128, 0x7f03012d, 0x7f03012e, 0x7f030140, 0x7f030173, 0x7f030174, 0x7f030175, 0x7f0301bb, 0x7f0301bd, 0x7f0301be, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4 }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_buttonGravity = 2; + public static final int Toolbar_collapseContentDescription = 3; + public static final int Toolbar_collapseIcon = 4; + public static final int Toolbar_contentInsetEnd = 5; + public static final int Toolbar_contentInsetEndWithActions = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 9; + public static final int Toolbar_contentInsetStartWithNavigation = 10; + public static final int Toolbar_logo = 11; + public static final int Toolbar_logoDescription = 12; + public static final int Toolbar_maxButtonHeight = 13; + public static final int Toolbar_navigationContentDescription = 14; + public static final int Toolbar_navigationIcon = 15; + public static final int Toolbar_popupTheme = 16; + public static final int Toolbar_subtitle = 17; + public static final int Toolbar_subtitleTextAppearance = 18; + public static final int Toolbar_subtitleTextColor = 19; + public static final int Toolbar_title = 20; + public static final int Toolbar_titleMargin = 21; + public static final int Toolbar_titleMarginBottom = 22; + public static final int Toolbar_titleMarginEnd = 23; + public static final int Toolbar_titleMarginStart = 24; + public static final int Toolbar_titleMarginTop = 25; + public static final int Toolbar_titleMargins = 26; + public static final int Toolbar_titleTextAppearance = 27; + public static final int Toolbar_titleTextColor = 28; + public static final int[] View = { 0x1010000, 0x10100da, 0x7f030134, 0x7f030135, 0x7f0301b1 }; + public static final int View_android_theme = 0; + public static final int View_android_focusable = 1; + public static final int View_paddingEnd = 2; + public static final int View_paddingStart = 3; + public static final int View_theme = 4; + public static final int[] ViewBackgroundHelper = { 0x10100d4, 0x7f030034, 0x7f030035 }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = { 0x10100d0, 0x10100f2, 0x10100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_layout = 1; + public static final int ViewStubCompat_android_inflatedId = 2; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/cardview/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/cardview/R.java new file mode 100644 index 0000000000000000000000000000000000000000..2aa62279f0124477dc49e2034a684f99db9821ad --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/cardview/R.java @@ -0,0 +1,69 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v7.cardview; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int cardBackgroundColor = 0x7f030058; + public static final int cardCornerRadius = 0x7f030059; + public static final int cardElevation = 0x7f03005a; + public static final int cardMaxElevation = 0x7f03005b; + public static final int cardPreventCornerOverlap = 0x7f03005c; + public static final int cardUseCompatPadding = 0x7f03005d; + public static final int cardViewStyle = 0x7f03005e; + public static final int contentPadding = 0x7f030097; + public static final int contentPaddingBottom = 0x7f030098; + public static final int contentPaddingLeft = 0x7f030099; + public static final int contentPaddingRight = 0x7f03009a; + public static final int contentPaddingTop = 0x7f03009b; + } + public static final class color { + private color() {} + + public static final int cardview_dark_background = 0x7f050027; + public static final int cardview_light_background = 0x7f050028; + public static final int cardview_shadow_end_color = 0x7f050029; + public static final int cardview_shadow_start_color = 0x7f05002a; + } + public static final class dimen { + private dimen() {} + + public static final int cardview_compat_inset_shadow = 0x7f06004b; + public static final int cardview_default_elevation = 0x7f06004c; + public static final int cardview_default_radius = 0x7f06004d; + } + public static final class style { + private style() {} + + public static final int Base_CardView = 0x7f0e000d; + public static final int CardView = 0x7f0e00c4; + public static final int CardView_Dark = 0x7f0e00c5; + public static final int CardView_Light = 0x7f0e00c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] CardView = { 0x101013f, 0x1010140, 0x7f030058, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a, 0x7f03009b }; + public static final int CardView_android_minWidth = 0; + public static final int CardView_android_minHeight = 1; + public static final int CardView_cardBackgroundColor = 2; + public static final int CardView_cardCornerRadius = 3; + public static final int CardView_cardElevation = 4; + public static final int CardView_cardMaxElevation = 5; + public static final int CardView_cardPreventCornerOverlap = 6; + public static final int CardView_cardUseCompatPadding = 7; + public static final int CardView_contentPadding = 8; + public static final int CardView_contentPaddingBottom = 9; + public static final int CardView_contentPaddingLeft = 10; + public static final int CardView_contentPaddingRight = 11; + public static final int CardView_contentPaddingTop = 12; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/recyclerview/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/recyclerview/R.java new file mode 100644 index 0000000000000000000000000000000000000000..d1ea4238ecfcf40c89908b5e6d093e71816cc923 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/recyclerview/R.java @@ -0,0 +1,239 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v7.recyclerview; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int coordinatorLayoutStyle = 0x7f03009e; + public static final int fastScrollEnabled = 0x7f0300c9; + public static final int fastScrollHorizontalThumbDrawable = 0x7f0300ca; + public static final int fastScrollHorizontalTrackDrawable = 0x7f0300cb; + public static final int fastScrollVerticalThumbDrawable = 0x7f0300cc; + public static final int fastScrollVerticalTrackDrawable = 0x7f0300cd; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int keylines = 0x7f030106; + public static final int layoutManager = 0x7f03010a; + public static final int layout_anchor = 0x7f03010b; + public static final int layout_anchorGravity = 0x7f03010c; + public static final int layout_behavior = 0x7f03010d; + public static final int layout_dodgeInsetEdges = 0x7f030110; + public static final int layout_insetEdge = 0x7f030111; + public static final int layout_keyline = 0x7f030112; + public static final int reverseLayout = 0x7f03014c; + public static final int spanCount = 0x7f030161; + public static final int stackFromEnd = 0x7f030167; + public static final int statusBarBackground = 0x7f03016d; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int fastscroll_default_thickness = 0x7f060083; + public static final int fastscroll_margin = 0x7f060084; + public static final int fastscroll_minimum_range = 0x7f060085; + public static final int item_touch_helper_max_drag_scroll_per_frame = 0x7f06008d; + public static final int item_touch_helper_swipe_escape_max_velocity = 0x7f06008e; + public static final int item_touch_helper_swipe_escape_velocity = 0x7f06008f; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int bottom = 0x7f080022; + public static final int chronometer = 0x7f080029; + public static final int end = 0x7f08003c; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int item_touch_helper_previous_elevation = 0x7f080053; + public static final int left = 0x7f080056; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int none = 0x7f080065; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right = 0x7f080072; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int start = 0x7f080098; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + public static final int top = 0x7f0800ae; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + public static final int Widget_Support_CoordinatorLayout = 0x7f0e01f5; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CoordinatorLayout = { 0x7f030106, 0x7f03016d }; + public static final int CoordinatorLayout_keylines = 0; + public static final int CoordinatorLayout_statusBarBackground = 1; + public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; + public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; + public static final int CoordinatorLayout_Layout_layout_anchor = 1; + public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; + public static final int CoordinatorLayout_Layout_layout_behavior = 3; + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; + public static final int CoordinatorLayout_Layout_layout_keyline = 6; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + public static final int[] RecyclerView = { 0x10100c4, 0x10100f1, 0x7f0300c9, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f03010a, 0x7f03014c, 0x7f030161, 0x7f030167 }; + public static final int RecyclerView_android_orientation = 0; + public static final int RecyclerView_android_descendantFocusability = 1; + public static final int RecyclerView_fastScrollEnabled = 2; + public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 3; + public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 4; + public static final int RecyclerView_fastScrollVerticalThumbDrawable = 5; + public static final int RecyclerView_fastScrollVerticalTrackDrawable = 6; + public static final int RecyclerView_layoutManager = 7; + public static final int RecyclerView_reverseLayout = 8; + public static final int RecyclerView_spanCount = 9; + public static final int RecyclerView_stackFromEnd = 10; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/viewpager/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/viewpager/R.java new file mode 100644 index 0000000000000000000000000000000000000000..8bcad4e87c13fd549288da6a56fdf06e73b5de6a --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/viewpager/R.java @@ -0,0 +1,183 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v7.viewpager; + +public final class R { + private R() {} + + public static final class attr { + private attr() {} + + public static final int alpha = 0x7f030027; + public static final int font = 0x7f0300d0; + public static final int fontProviderAuthority = 0x7f0300d2; + public static final int fontProviderCerts = 0x7f0300d3; + public static final int fontProviderFetchStrategy = 0x7f0300d4; + public static final int fontProviderFetchTimeout = 0x7f0300d5; + public static final int fontProviderPackage = 0x7f0300d6; + public static final int fontProviderQuery = 0x7f0300d7; + public static final int fontStyle = 0x7f0300d8; + public static final int fontVariationSettings = 0x7f0300d9; + public static final int fontWeight = 0x7f0300da; + public static final int ttcIndex = 0x7f0301cf; + } + public static final class color { + private color() {} + + public static final int notification_action_color_filter = 0x7f05006a; + public static final int notification_icon_bg_color = 0x7f05006b; + public static final int ripple_material_light = 0x7f05007a; + public static final int secondary_text_default_material_light = 0x7f05007d; + } + public static final class dimen { + private dimen() {} + + public static final int compat_button_inset_horizontal_material = 0x7f06004e; + public static final int compat_button_inset_vertical_material = 0x7f06004f; + public static final int compat_button_padding_horizontal_material = 0x7f060050; + public static final int compat_button_padding_vertical_material = 0x7f060051; + public static final int compat_control_corner_material = 0x7f060052; + public static final int compat_notification_large_icon_max_height = 0x7f060053; + public static final int compat_notification_large_icon_max_width = 0x7f060054; + public static final int notification_action_icon_size = 0x7f0600c0; + public static final int notification_action_text_size = 0x7f0600c1; + public static final int notification_big_circle_margin = 0x7f0600c2; + public static final int notification_content_margin_start = 0x7f0600c3; + public static final int notification_large_icon_height = 0x7f0600c4; + public static final int notification_large_icon_width = 0x7f0600c5; + public static final int notification_main_column_padding_top = 0x7f0600c6; + public static final int notification_media_narrow_margin = 0x7f0600c7; + public static final int notification_right_icon_size = 0x7f0600c8; + public static final int notification_right_side_padding_top = 0x7f0600c9; + public static final int notification_small_icon_background_padding = 0x7f0600ca; + public static final int notification_small_icon_size_as_large = 0x7f0600cb; + public static final int notification_subtext_size = 0x7f0600cc; + public static final int notification_top_pad = 0x7f0600cd; + public static final int notification_top_pad_large_text = 0x7f0600ce; + } + public static final class drawable { + private drawable() {} + + public static final int notification_action_background = 0x7f07007a; + public static final int notification_bg = 0x7f07007b; + public static final int notification_bg_low = 0x7f07007c; + public static final int notification_bg_low_normal = 0x7f07007d; + public static final int notification_bg_low_pressed = 0x7f07007e; + public static final int notification_bg_normal = 0x7f07007f; + public static final int notification_bg_normal_pressed = 0x7f070080; + public static final int notification_icon_background = 0x7f070081; + public static final int notification_template_icon_bg = 0x7f070082; + public static final int notification_template_icon_low_bg = 0x7f070083; + public static final int notification_tile_bg = 0x7f070084; + public static final int notify_panel_notification_icon_bg = 0x7f070085; + } + public static final class id { + private id() {} + + public static final int action_container = 0x7f08000e; + public static final int action_divider = 0x7f080010; + public static final int action_image = 0x7f080011; + public static final int action_text = 0x7f080017; + public static final int actions = 0x7f080018; + public static final int async = 0x7f08001e; + public static final int blocking = 0x7f080021; + public static final int chronometer = 0x7f080029; + public static final int forever = 0x7f080048; + public static final int icon = 0x7f08004d; + public static final int icon_group = 0x7f08004e; + public static final int info = 0x7f080051; + public static final int italic = 0x7f080052; + public static final int line1 = 0x7f080057; + public static final int line3 = 0x7f080058; + public static final int normal = 0x7f080066; + public static final int notification_background = 0x7f080067; + public static final int notification_main_column = 0x7f080068; + public static final int notification_main_column_container = 0x7f080069; + public static final int right_icon = 0x7f080073; + public static final int right_side = 0x7f080074; + public static final int tag_transition_group = 0x7f08009e; + public static final int tag_unhandled_key_event_manager = 0x7f08009f; + public static final int tag_unhandled_key_listeners = 0x7f0800a0; + public static final int text = 0x7f0800a1; + public static final int text2 = 0x7f0800a2; + public static final int time = 0x7f0800aa; + public static final int title = 0x7f0800ab; + } + public static final class integer { + private integer() {} + + public static final int status_bar_notification_info_maxnum = 0x7f09000e; + } + public static final class layout { + private layout() {} + + public static final int notification_action = 0x7f0b002d; + public static final int notification_action_tombstone = 0x7f0b002e; + public static final int notification_template_custom_big = 0x7f0b0035; + public static final int notification_template_icon_group = 0x7f0b0036; + public static final int notification_template_part_chronometer = 0x7f0b003a; + public static final int notification_template_part_time = 0x7f0b003b; + } + public static final class string { + private string() {} + + public static final int status_bar_notification_info_overflow = 0x7f0d0037; + } + public static final class style { + private style() {} + + public static final int TextAppearance_Compat_Notification = 0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info = 0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Time = 0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Title = 0x7f0e011e; + public static final int Widget_Compat_NotificationActionContainer = 0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText = 0x7f0e01c6; + } + public static final class styleable { + private styleable() {} + + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] FontFamily = { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; + public static final int FontFamily_fontProviderAuthority = 0; + public static final int FontFamily_fontProviderCerts = 1; + public static final int FontFamily_fontProviderFetchStrategy = 2; + public static final int FontFamily_fontProviderFetchTimeout = 3; + public static final int FontFamily_fontProviderPackage = 4; + public static final int FontFamily_fontProviderQuery = 5; + public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; + public static final int FontFamilyFont_android_font = 0; + public static final int FontFamilyFont_android_fontWeight = 1; + public static final int FontFamilyFont_android_fontStyle = 2; + public static final int FontFamilyFont_android_ttcIndex = 3; + public static final int FontFamilyFont_android_fontVariationSettings = 4; + public static final int FontFamilyFont_font = 5; + public static final int FontFamilyFont_fontStyle = 6; + public static final int FontFamilyFont_fontVariationSettings = 7; + public static final int FontFamilyFont_fontWeight = 8; + public static final int FontFamilyFont_ttcIndex = 9; + public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; + public static final int GradientColor_android_startColor = 0; + public static final int GradientColor_android_endColor = 1; + public static final int GradientColor_android_type = 2; + public static final int GradientColor_android_centerX = 3; + public static final int GradientColor_android_centerY = 4; + public static final int GradientColor_android_gradientRadius = 5; + public static final int GradientColor_android_tileMode = 6; + public static final int GradientColor_android_centerColor = 7; + public static final int GradientColor_android_startX = 8; + public static final int GradientColor_android_startY = 9; + public static final int GradientColor_android_endX = 10; + public static final int GradientColor_android_endY = 11; + public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; + public static final int GradientColorItem_android_color = 0; + public static final int GradientColorItem_android_offset = 1; + } +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/androidx/versionedparcelable/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/androidx/versionedparcelable/R.java new file mode 100644 index 0000000000000000000000000000000000000000..92e83d409e9bf977a24a3f3cd025a5cd3ed6e976 --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/androidx/versionedparcelable/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package androidx.versionedparcelable; + +public final class R { + private R() {} + +} diff --git a/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/org/muctec/smartfritz/R.java b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/org/muctec/smartfritz/R.java new file mode 100644 index 0000000000000000000000000000000000000000..993d3aaf03fb0878e5dbb7d7aed38628173c436f --- /dev/null +++ b/SmartFritz/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/org/muctec/smartfritz/R.java @@ -0,0 +1,17147 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package org.muctec.smartfritz; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f010000; + public static final int abc_fade_out=0x7f010001; + public static final int abc_grow_fade_in_from_bottom=0x7f010002; + public static final int abc_popup_enter=0x7f010003; + public static final int abc_popup_exit=0x7f010004; + public static final int abc_shrink_fade_out_from_bottom=0x7f010005; + public static final int abc_slide_in_bottom=0x7f010006; + public static final int abc_slide_in_top=0x7f010007; + public static final int abc_slide_out_bottom=0x7f010008; + public static final int abc_slide_out_top=0x7f010009; + public static final int abc_tooltip_enter=0x7f01000a; + public static final int abc_tooltip_exit=0x7f01000b; + public static final int design_bottom_sheet_slide_in=0x7f01000c; + public static final int design_bottom_sheet_slide_out=0x7f01000d; + public static final int design_snackbar_in=0x7f01000e; + public static final int design_snackbar_out=0x7f01000f; + } + public static final class animator { + public static final int design_appbar_state_list_animator=0x7f020000; + public static final int design_fab_hide_motion_spec=0x7f020001; + public static final int design_fab_show_motion_spec=0x7f020002; + public static final int mtrl_btn_state_list_anim=0x7f020003; + public static final int mtrl_btn_unelevated_state_list_anim=0x7f020004; + public static final int mtrl_chip_state_list_anim=0x7f020005; + public static final int mtrl_fab_hide_motion_spec=0x7f020006; + public static final int mtrl_fab_show_motion_spec=0x7f020007; + public static final int mtrl_fab_transformation_sheet_collapse_spec=0x7f020008; + public static final int mtrl_fab_transformation_sheet_expand_spec=0x7f020009; + } + public static final class attr { + /** + * Custom divider drawable to use for elements in the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarDivider=0x7f030000; + /** + * Custom item state list drawable background for action bar items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarItemBackground=0x7f030001; + /** + * Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarPopupTheme=0x7f030002; + /** + * Size of the Action Bar, including the contextual + * bar used to present Action Modes. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f030003; + /** + * Reference to a style for the split Action Bar. This style + * controls the split component that holds the menu/action + * buttons. actionBarStyle is still used for the primary + * bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarSplitStyle=0x7f030004; + /** + * Reference to a style for the Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarStyle=0x7f030005; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabBarStyle=0x7f030006; + /** + * Default style for tabs within an action bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabStyle=0x7f030007; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabTextStyle=0x7f030008; + /** + * Reference to a theme that should be used to inflate the + * action bar. This will be inherited by any widget inflated + * into the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTheme=0x7f030009; + /** + * Reference to a theme that should be used to inflate widgets + * and layouts destined for the action bar. Most of the time + * this will be a reference to the current theme, but when + * the action bar has a significantly different contrast + * profile than the rest of the activity the difference + * can become important. If this is set to @null the current + * theme will be used. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarWidgetTheme=0x7f03000a; + /** + * Default action button style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionButtonStyle=0x7f03000b; + /** + * Default ActionBar dropdown style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionDropDownStyle=0x7f03000c; + /** + * An optional layout to be used as an action view. + * See {@link android.view.MenuItem#setActionView(android.view.View)} + * for more info. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionLayout=0x7f03000d; + /** + * TextAppearance style that will be applied to text that + * appears within action menu items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionMenuTextAppearance=0x7f03000e; + /** + * Color for text that appears within action menu items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f03000f; + /** + * Background drawable to use for action mode UI + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeBackground=0x7f030010; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCloseButtonStyle=0x7f030011; + /** + * Drawable to use for the close action mode button + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCloseDrawable=0x7f030012; + /** + * Drawable to use for the Copy action button in Contextual Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCopyDrawable=0x7f030013; + /** + * Drawable to use for the Cut action button in Contextual Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCutDrawable=0x7f030014; + /** + * Drawable to use for the Find action button in WebView selection action modes + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeFindDrawable=0x7f030015; + /** + * Drawable to use for the Paste action button in Contextual Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModePasteDrawable=0x7f030016; + /** + * PopupWindow style to use for action modes when showing as a window overlay. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModePopupWindowStyle=0x7f030017; + /** + * Drawable to use for the Select all action button in Contextual Action Bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeSelectAllDrawable=0x7f030018; + /** + * Drawable to use for the Share action button in WebView selection action modes + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeShareDrawable=0x7f030019; + /** + * Background drawable to use for action mode UI in the lower split bar + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeSplitBackground=0x7f03001a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeStyle=0x7f03001b; + /** + * Drawable to use for the Web Search action button in WebView selection action modes + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeWebSearchDrawable=0x7f03001c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionOverflowButtonStyle=0x7f03001d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionOverflowMenuStyle=0x7f03001e; + /** + * The name of an optional ActionProvider class to instantiate an action view + * and perform operations such as default action for that menu item. + * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} + * for more info. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int actionProviderClass=0x7f03001f; + /** + * The name of an optional View class to instantiate and use as an + * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} + * for more info. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int actionViewClass=0x7f030020; + /** + * Default ActivityChooserView style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int activityChooserViewStyle=0x7f030021; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogButtonGroupStyle=0x7f030022; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int alertDialogCenterButtons=0x7f030023; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogStyle=0x7f030024; + /** + * Theme to use for alert dialogs spawned from this theme. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogTheme=0x7f030025; + /** + * Whether to automatically stack the buttons when there is not + * enough space to lay them out side-by-side. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int allowStacking=0x7f030026; + /** + * Alpha multiplier applied to the base color. + *

May be a floating point value, such as "1.2". + */ + public static final int alpha=0x7f030027; + /** + * The alphabetic modifier key. This is the modifier when using a keyboard + * with alphabetic keys. The values should be kept in sync with KeyEvent + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ */ + public static final int alphabeticModifiers=0x7f030028; + /** + * The length of the arrow head when formed to make an arrow + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int arrowHeadLength=0x7f030029; + /** + * The length of the shaft when formed to make an arrow + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int arrowShaftLength=0x7f03002a; + /** + * Default AutoCompleteTextView style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int autoCompleteTextViewStyle=0x7f03002b; + /** + * The maximum text size constraint to be used when auto-sizing text. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int autoSizeMaxTextSize=0x7f03002c; + /** + * The minimum text size constraint to be used when auto-sizing text. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int autoSizeMinTextSize=0x7f03002d; + /** + * Resource array of dimensions to be used in conjunction with + * autoSizeTextType set to uniform. Overrides + * autoSizeStepGranularity if set. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int autoSizePresetSizes=0x7f03002e; + /** + * Specify the auto-size step size if autoSizeTextType is set to + * uniform. The default is 1px. Overwrites + * autoSizePresetSizes if set. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int autoSizeStepGranularity=0x7f03002f; + /** + * Specify the type of auto-size. Note that this feature is not supported by EditText, + * works only for TextView. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
none0No auto-sizing (default).
uniform1Uniform horizontal and vertical text size scaling to fit within the + * container.
+ */ + public static final int autoSizeTextType=0x7f030030; + /** + * Specifies a background drawable for the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int background=0x7f030031; + /** + * Specifies a background drawable for the bottom component of a split action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundSplit=0x7f030032; + /** + * Specifies a background drawable for a second stacked row of the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundStacked=0x7f030033; + /** + * Tint to apply to the background. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundTint=0x7f030034; + /** + * Blending mode used to apply the background tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int backgroundTintMode=0x7f030035; + /** + * The length of the bars when they are parallel to each other + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int barLength=0x7f030036; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_autoHide=0x7f030037; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_fitToContents=0x7f030038; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_hideable=0x7f030039; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int behavior_overlapTop=0x7f03003a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
+ */ + public static final int behavior_peekHeight=0x7f03003b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int behavior_skipCollapsed=0x7f03003c; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int borderWidth=0x7f03003d; + /** + * Style for buttons without an explicit border, often used in groups. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int borderlessButtonStyle=0x7f03003e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomAppBarStyle=0x7f03003f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomNavigationStyle=0x7f030040; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomSheetDialogTheme=0x7f030041; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int bottomSheetStyle=0x7f030042; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int boxBackgroundColor=0x7f030043; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
filled1
none0
outline2
+ */ + public static final int boxBackgroundMode=0x7f030044; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCollapsedPaddingTop=0x7f030045; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCornerRadiusBottomEnd=0x7f030046; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCornerRadiusBottomStart=0x7f030047; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCornerRadiusTopEnd=0x7f030048; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxCornerRadiusTopStart=0x7f030049; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int boxStrokeColor=0x7f03004a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int boxStrokeWidth=0x7f03004b; + /** + * Style for buttons within button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarButtonStyle=0x7f03004c; + /** + * Style for the "negative" buttons within button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f03004d; + /** + * Style for the "neutral" buttons within button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f03004e; + /** + * Style for the "positive" buttons within button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f03004f; + /** + * Style for button bars + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarStyle=0x7f030050; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ */ + public static final int buttonGravity=0x7f030051; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int buttonIconDimen=0x7f030052; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonPanelSideLayout=0x7f030053; + /** + * Normal Button style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonStyle=0x7f030054; + /** + * Small Button style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonStyleSmall=0x7f030055; + /** + * Tint to apply to the button drawable. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int buttonTint=0x7f030056; + /** + * Blending mode used to apply the button tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int buttonTintMode=0x7f030057; + /** + * Background color for CardView. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int cardBackgroundColor=0x7f030058; + /** + * Corner radius for CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int cardCornerRadius=0x7f030059; + /** + * Elevation for CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int cardElevation=0x7f03005a; + /** + * Maximum Elevation for CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int cardMaxElevation=0x7f03005b; + /** + * Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int cardPreventCornerOverlap=0x7f03005c; + /** + * Add padding in API v21+ as well to have the same measurements with previous versions. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int cardUseCompatPadding=0x7f03005d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int cardViewStyle=0x7f03005e; + /** + * Default Checkbox style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkboxStyle=0x7f03005f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkedChip=0x7f030060; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkedIcon=0x7f030061; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int checkedIconEnabled=0x7f030062; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int checkedIconVisible=0x7f030063; + /** + * Default CheckedTextView style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkedTextViewStyle=0x7f030064; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int chipBackgroundColor=0x7f030065; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipCornerRadius=0x7f030066; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipEndPadding=0x7f030067; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int chipGroupStyle=0x7f030068; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int chipIcon=0x7f030069; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int chipIconEnabled=0x7f03006a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipIconSize=0x7f03006b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int chipIconTint=0x7f03006c; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int chipIconVisible=0x7f03006d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipMinHeight=0x7f03006e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipSpacing=0x7f03006f; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipSpacingHorizontal=0x7f030070; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipSpacingVertical=0x7f030071; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int chipStandaloneStyle=0x7f030072; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipStartPadding=0x7f030073; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int chipStrokeColor=0x7f030074; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int chipStrokeWidth=0x7f030075; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int chipStyle=0x7f030076; + /** + * Close button icon + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int closeIcon=0x7f030077; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int closeIconEnabled=0x7f030078; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int closeIconEndPadding=0x7f030079; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int closeIconSize=0x7f03007a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int closeIconStartPadding=0x7f03007b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int closeIconTint=0x7f03007c; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int closeIconVisible=0x7f03007d; + /** + * Specifies a layout to use for the "close" item at the starting edge. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int closeItemLayout=0x7f03007e; + /** + * Text to set as the content description for the collapse button. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int collapseContentDescription=0x7f03007f; + /** + * Icon drawable to use for the collapse button. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collapseIcon=0x7f030080; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
end800005
fill_vertical70
left3
right5
start800003
top30
+ */ + public static final int collapsedTitleGravity=0x7f030081; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collapsedTitleTextAppearance=0x7f030082; + /** + * The drawing color for the bars + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int color=0x7f030083; + /** + * Bright complement to the primary branding color. By default, this is the color applied + * to framework controls (via colorControlActivated). + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorAccent=0x7f030084; + /** + * Default color of background imagery for floating components, ex. dialogs, popups, and cards. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorBackgroundFloating=0x7f030085; + /** + * The color applied to framework buttons in their normal state. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorButtonNormal=0x7f030086; + /** + * The color applied to framework controls in their activated (ex. checked) state. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlActivated=0x7f030087; + /** + * The color applied to framework control highlights (ex. ripples, list selectors). + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlHighlight=0x7f030088; + /** + * The color applied to framework controls in their normal state. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlNormal=0x7f030089; + /** + * Color used for error states and things that need to be drawn to + * the user's attention. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorError=0x7f03008a; + /** + * The primary branding color for the app. By default, this is the color applied to the + * action bar background. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimary=0x7f03008b; + /** + * Dark variant of the primary branding color. By default, this is the color applied to + * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimaryDark=0x7f03008c; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSecondary=0x7f03008d; + /** + * The color applied to framework switch thumbs in their normal state. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSwitchThumbNormal=0x7f03008e; + /** + * Commit icon shown in the query suggestion row + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int commitIcon=0x7f03008f; + /** + * The content description associated with the item. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int contentDescription=0x7f030090; + /** + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetEnd=0x7f030091; + /** + * Minimum inset for content views within a bar when actions from a menu + * are present. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetEndWithActions=0x7f030092; + /** + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetLeft=0x7f030093; + /** + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetRight=0x7f030094; + /** + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetStart=0x7f030095; + /** + * Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button. Only valid for some themes and configurations. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetStartWithNavigation=0x7f030096; + /** + * Inner padding between the edges of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPadding=0x7f030097; + /** + * Inner padding between the bottom edge of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingBottom=0x7f030098; + /** + * Inner padding between the left edge of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingLeft=0x7f030099; + /** + * Inner padding between the right edge of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingRight=0x7f03009a; + /** + * Inner padding between the top edge of the Card and children of the CardView. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentPaddingTop=0x7f03009b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int contentScrim=0x7f03009c; + /** + * The background used by framework controls. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int controlBackground=0x7f03009d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int coordinatorLayoutStyle=0x7f03009e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int cornerRadius=0x7f03009f; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int counterEnabled=0x7f0300a0; + /** + *

May be an integer value, such as "100". + */ + public static final int counterMaxLength=0x7f0300a1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int counterOverflowTextAppearance=0x7f0300a2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int counterTextAppearance=0x7f0300a3; + /** + * Specifies a layout for custom navigation. Overrides navigationMode. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int customNavigationLayout=0x7f0300a4; + /** + * Default query hint used when {@code queryHint} is undefined and + * the search view's {@code SearchableInfo} does not provide a hint. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int defaultQueryHint=0x7f0300a5; + /** + * Preferred corner radius of dialogs. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dialogCornerRadius=0x7f0300a6; + /** + * Preferred padding for dialog content. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dialogPreferredPadding=0x7f0300a7; + /** + * Theme to use for dialogs spawned from this theme. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dialogTheme=0x7f0300a8; + /** + * Options affecting how the action bar is displayed. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
+ */ + public static final int displayOptions=0x7f0300a9; + /** + * Specifies the drawable used for item dividers. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int divider=0x7f0300aa; + /** + * A drawable that may be used as a horizontal divider between visual elements. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dividerHorizontal=0x7f0300ab; + /** + * Size of padding on either end of a divider. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dividerPadding=0x7f0300ac; + /** + * A drawable that may be used as a vertical divider between visual elements. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dividerVertical=0x7f0300ad; + /** + * The total size of the drawable + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int drawableSize=0x7f0300ae; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int drawerArrowStyle=0x7f0300af; + /** + * ListPopupWindow compatibility + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dropDownListViewStyle=0x7f0300b0; + /** + * The preferred item height for dropdown lists. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dropdownListPreferredItemHeight=0x7f0300b1; + /** + * EditText background drawable. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int editTextBackground=0x7f0300b2; + /** + * EditText text foreground color. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int editTextColor=0x7f0300b3; + /** + * Default EditText style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int editTextStyle=0x7f0300b4; + /** + * Elevation for the action bar itself + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int elevation=0x7f0300b5; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int enforceMaterialTheme=0x7f0300b6; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int enforceTextAppearance=0x7f0300b7; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int errorEnabled=0x7f0300b8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int errorTextAppearance=0x7f0300b9; + /** + * The drawable to show in the button for expanding the activities overflow popup. + * Note: Clients would like to set this drawable + * as a clue about the action the chosen activity will perform. For + * example, if share activity is to be chosen the drawable should + * give a clue that sharing is to be performed. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f0300ba; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int expanded=0x7f0300bb; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
end800005
fill_vertical70
left3
right5
start800003
top30
+ */ + public static final int expandedTitleGravity=0x7f0300bc; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMargin=0x7f0300bd; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMarginBottom=0x7f0300be; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMarginEnd=0x7f0300bf; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMarginStart=0x7f0300c0; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int expandedTitleMarginTop=0x7f0300c1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int expandedTitleTextAppearance=0x7f0300c2; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
center0
end1
+ */ + public static final int fabAlignmentMode=0x7f0300c3; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int fabCradleMargin=0x7f0300c4; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int fabCradleRoundedCornerRadius=0x7f0300c5; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int fabCradleVerticalOffset=0x7f0300c6; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int fabCustomSize=0x7f0300c7; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
mini1
normal0
+ */ + public static final int fabSize=0x7f0300c8; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int fastScrollEnabled=0x7f0300c9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fastScrollHorizontalThumbDrawable=0x7f0300ca; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fastScrollHorizontalTrackDrawable=0x7f0300cb; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fastScrollVerticalThumbDrawable=0x7f0300cc; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fastScrollVerticalTrackDrawable=0x7f0300cd; + /** + * Distance from the top of the TextView to the first text baseline. If set, this + * overrides the value set for paddingTop. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int firstBaselineToTopHeight=0x7f0300ce; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be an integer value, such as "100". + *

May be a boolean value, such as "true" or + * "false". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int floatingActionButtonStyle=0x7f0300cf; + /** + * The reference to the font file to be used. This should be a file in the res/font folder + * and should therefore have an R reference value. E.g. @font/myfont + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int font=0x7f0300d0; + /** + * The attribute for the font family. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontFamily=0x7f0300d1; + /** + * The authority of the Font Provider to be used for the request. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderAuthority=0x7f0300d2; + /** + * The sets of hashes for the certificates the provider should be signed with. This is + * used to verify the identity of the provider, and is only required if the provider is not + * part of the system image. This value may point to one list or a list of lists, where each + * individual list represents one collection of signature hashes. Refer to your font provider's + * documentation for these values. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int fontProviderCerts=0x7f0300d3; + /** + * The strategy to be used when fetching font data from a font provider in XML layouts. + * This attribute is ignored when the resource is loaded from code, as it is equivalent to the + * choice of API between {@link + * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + * {@link + * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + * (async). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
async1The async font fetch works as follows. + * First, check the local cache, then if the requeted font is not cached, trigger a + * request the font and continue with layout inflation. Once the font fetch succeeds, the + * target text view will be refreshed with the downloaded font data. The + * fontProviderFetchTimeout will be ignored if async loading is specified.
blocking0The blocking font fetch works as follows. + * First, check the local cache, then if the requested font is not cached, request the + * font from the provider and wait until it is finished. You can change the length of + * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + * default typeface will be used instead.
+ */ + public static final int fontProviderFetchStrategy=0x7f0300d4; + /** + * The length of the timeout during fetching. + *

May be an integer value, such as "100". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
foreverffffffffA special value for the timeout. In this case, the blocking font fetching will not + * timeout and wait until a reply is received from the font provider.
+ */ + public static final int fontProviderFetchTimeout=0x7f0300d5; + /** + * The package for the Font Provider to be used for the request. This is used to verify + * the identity of the provider. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderPackage=0x7f0300d6; + /** + * The query to be sent over to the provider. Refer to your font provider's documentation + * on the format of this string. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontProviderQuery=0x7f0300d7; + /** + * The style of the given font file. This will be used when the font is being loaded into + * the font stack and will override any style information in the font's header tables. If + * unspecified, the value in the font's header tables will be used. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
italic1
normal0
+ */ + public static final int fontStyle=0x7f0300d8; + /** + * The variation settings to be applied to the font. The string should be in the following + * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + * used, or the font used does not support variation settings, this attribute needs not be + * specified. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int fontVariationSettings=0x7f0300d9; + /** + * The weight of the given font file. This will be used when the font is being loaded into + * the font stack and will override any weight information in the font's header tables. Must + * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + * in the font's header tables will be used. + *

May be an integer value, such as "100". + */ + public static final int fontWeight=0x7f0300da; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int foregroundInsidePadding=0x7f0300db; + /** + * The max gap between the bars when they are parallel to each other + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int gapBetweenBars=0x7f0300dc; + /** + * Go button icon + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int goIcon=0x7f0300dd; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int headerLayout=0x7f0300de; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int height=0x7f0300df; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int helperText=0x7f0300e0; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int helperTextEnabled=0x7f0300e1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int helperTextTextAppearance=0x7f0300e2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int hideMotionSpec=0x7f0300e3; + /** + * Set true to hide the action bar on a vertical nested scroll of content. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hideOnContentScroll=0x7f0300e4; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hideOnScroll=0x7f0300e5; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hintAnimationEnabled=0x7f0300e6; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hintEnabled=0x7f0300e7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int hintTextAppearance=0x7f0300e8; + /** + * Specifies a drawable to use for the 'home as up' indicator. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int homeAsUpIndicator=0x7f0300e9; + /** + * Specifies a layout to use for the "home" section of the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int homeLayout=0x7f0300ea; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int hoveredFocusedTranslationZ=0x7f0300eb; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int icon=0x7f0300ec; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int iconEndPadding=0x7f0300ed; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
start1
textStart2
+ */ + public static final int iconGravity=0x7f0300ee; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int iconPadding=0x7f0300ef; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int iconSize=0x7f0300f0; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int iconStartPadding=0x7f0300f1; + /** + * Tint to apply to the icon. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int iconTint=0x7f0300f2; + /** + * Blending mode used to apply the icon tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the icon with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the icon, but with the icon’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the icon. The icon’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the icon. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int iconTintMode=0x7f0300f3; + /** + * The default state of the SearchView. If true, it will be iconified when not in + * use and expanded when clicked. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int iconifiedByDefault=0x7f0300f4; + /** + * ImageButton background drawable. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int imageButtonStyle=0x7f0300f5; + /** + * Specifies a style resource to use for an indeterminate progress spinner. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int indeterminateProgressStyle=0x7f0300f6; + /** + * The maximal number of items initially shown in the activity list. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int initialActivityCount=0x7f0300f7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int insetForeground=0x7f0300f8; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int isLightTheme=0x7f0300f9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemBackground=0x7f0300fa; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemHorizontalPadding=0x7f0300fb; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int itemHorizontalTranslationEnabled=0x7f0300fc; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemIconPadding=0x7f0300fd; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemIconSize=0x7f0300fe; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int itemIconTint=0x7f0300ff; + /** + * Specifies padding that should be applied to the left and right sides of + * system-provided items in the bar. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemPadding=0x7f030100; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemSpacing=0x7f030101; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemTextAppearance=0x7f030102; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemTextAppearanceActive=0x7f030103; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int itemTextAppearanceInactive=0x7f030104; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int itemTextColor=0x7f030105; + /** + * A reference to an array of integers representing the + * locations of horizontal keylines in dp from the starting edge. + * Child views can refer to these keylines for alignment using + * layout_keyline="index" where index is a 0-based index into + * this array. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int keylines=0x7f030106; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
labeled1
selected0
unlabeled2
+ */ + public static final int labelVisibilityMode=0x7f030107; + /** + * Distance from the bottom of the TextView to the last text baseline. If set, this + * overrides the value set for paddingBottom. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int lastBaselineToBottomHeight=0x7f030108; + /** + * The layout to use for the search view. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layout=0x7f030109; + /** + * Class name of the Layout Manager to be used. + *

+ * The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager + * and have either a default constructor or constructor with the signature + * (android.content.Context, android.util.AttributeSet, int, int). + *

+ * If the name starts with a '.', application package is prefixed. + * Else, if the name contains a '.', the classname is assumed to be a full class name. + * Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int layoutManager=0x7f03010a; + /** + * The id of an anchor view that this view should position relative to. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layout_anchor=0x7f03010b; + /** + * Specifies how an object should position relative to an anchor, on both the X and Y axes, + * within its parent's bounds. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
center11Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
center_horizontal1Place object in the horizontal center of its container, not changing its size.
center_vertical10Place object in the vertical center of its container, not changing its size.
clip_horizontal8Additional option that can be set to have the left and/or right edges of + * the child clipped to its container's bounds. + * The clip will be based on the horizontal gravity: a left gravity will clip the right + * edge, a right gravity will clip the left edge, and neither will clip both edges.
clip_vertical80Additional option that can be set to have the top and/or bottom edges of + * the child clipped to its container's bounds. + * The clip will be based on the vertical gravity: a top gravity will clip the bottom + * edge, a bottom gravity will clip the top edge, and neither will clip both edges.
end800005Push object to the end of its container, not changing its size.
fill77Grow the horizontal and vertical size of the object if needed so it completely fills its container.
fill_horizontal7Grow the horizontal size of the object if needed so it completely fills its container.
fill_vertical70Grow the vertical size of the object if needed so it completely fills its container.
left3Push object to the left of its container, not changing its size.
right5Push object to the right of its container, not changing its size.
start800003Push object to the beginning of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ */ + public static final int layout_anchorGravity=0x7f03010c; + /** + * The class name of a Behavior class defining special runtime behavior + * for this child view. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int layout_behavior=0x7f03010d; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
none0
parallax2
pin1
+ */ + public static final int layout_collapseMode=0x7f03010e; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int layout_collapseParallaxMultiplier=0x7f03010f; + /** + * Specifies how this view dodges the inset edges of the CoordinatorLayout. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
all77Dodge all the inset edges.
bottom50Dodge the bottom inset edge.
end800005Dodge the end inset edge.
left3Dodge the left inset edge.
none0Don't dodge any edges
right5Dodge the right inset edge.
start800003Dodge the start inset edge.
top30Dodge the top inset edge.
+ */ + public static final int layout_dodgeInsetEdges=0x7f030110; + /** + * Specifies how this view insets the CoordinatorLayout and make some other views + * dodge it. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Inset the bottom edge.
end800005Inset the end edge.
left3Inset the left edge.
none0Don't inset.
right5Inset the right edge.
start800003Inset the start edge.
top30Inset the top edge.
+ */ + public static final int layout_insetEdge=0x7f030111; + /** + * The index of a keyline this view should position relative to. + * android:layout_gravity will affect how the view aligns to the + * specified keyline. + *

May be an integer value, such as "100". + */ + public static final int layout_keyline=0x7f030112; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
enterAlways4
enterAlwaysCollapsed8
exitUntilCollapsed2
scroll1
snap10
snapMargins20
+ */ + public static final int layout_scrollFlags=0x7f030113; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layout_scrollInterpolator=0x7f030114; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int liftOnScroll=0x7f030115; + /** + * Explicit height between lines of text. If set, this will override the values set + * for lineSpacingExtra and lineSpacingMultiplier. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int lineHeight=0x7f030116; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int lineSpacing=0x7f030117; + /** + * Drawable used as a background for selected list items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listChoiceBackgroundIndicator=0x7f030118; + /** + * The list divider used in alert dialogs. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listDividerAlertDialog=0x7f030119; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listItemLayout=0x7f03011a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listLayout=0x7f03011b; + /** + * Default menu-style ListView style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listMenuViewStyle=0x7f03011c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listPopupWindowStyle=0x7f03011d; + /** + * The preferred list item height. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeight=0x7f03011e; + /** + * A larger, more robust list item height. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeightLarge=0x7f03011f; + /** + * A smaller, sleeker list item height. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeightSmall=0x7f030120; + /** + * The preferred padding along the left edge of list items. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemPaddingLeft=0x7f030121; + /** + * The preferred padding along the right edge of list items. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemPaddingRight=0x7f030122; + /** + * Specifies the drawable used for the application logo. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int logo=0x7f030123; + /** + * A content description string to describe the appearance of the + * associated logo image. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int logoDescription=0x7f030124; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialButtonStyle=0x7f030125; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int materialCardViewStyle=0x7f030126; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int maxActionInlineWidth=0x7f030127; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int maxButtonHeight=0x7f030128; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int maxImageSize=0x7f030129; + /** + * When set to true, all children with a weight will be considered having + * the minimum size of the largest child. If false, all children are + * measured normally. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int measureWithLargestChild=0x7f03012a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int menu=0x7f03012b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int multiChoiceItemLayout=0x7f03012c; + /** + * Text to set as the content description for the navigation button + * located at the start of the toolbar. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int navigationContentDescription=0x7f03012d; + /** + * Icon drawable to use for the navigation button located at + * the start of the toolbar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int navigationIcon=0x7f03012e; + /** + * The type of navigation to use. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
listMode1The action bar will use a selection list for navigation.
normal0Normal static title text
tabMode2The action bar will use a series of horizontal tabs for navigation.
+ */ + public static final int navigationMode=0x7f03012f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int navigationViewStyle=0x7f030130; + /** + * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) + * keyboard. The values should be kept in sync with KeyEvent + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ */ + public static final int numericModifiers=0x7f030131; + /** + * Whether the popup window should overlap its anchor view. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int overlapAnchor=0x7f030132; + /** + * Bottom padding to use when no buttons are present. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingBottomNoButtons=0x7f030133; + /** + * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingEnd=0x7f030134; + /** + * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingStart=0x7f030135; + /** + * Top padding to use when no title is present. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingTopNoTitle=0x7f030136; + /** + * The background of a panel when it is inset from the left and right edges of the screen. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int panelBackground=0x7f030137; + /** + * Default Panel Menu style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int panelMenuListTheme=0x7f030138; + /** + * Default Panel Menu width. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int panelMenuListWidth=0x7f030139; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int passwordToggleContentDescription=0x7f03013a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int passwordToggleDrawable=0x7f03013b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int passwordToggleEnabled=0x7f03013c; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int passwordToggleTint=0x7f03013d; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
+ */ + public static final int passwordToggleTintMode=0x7f03013e; + /** + * Default PopupMenu style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupMenuStyle=0x7f03013f; + /** + * Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupTheme=0x7f030140; + /** + * Default PopupWindow style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupWindowStyle=0x7f030141; + /** + * Whether space should be reserved in layout when an icon is missing. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int preserveIconSpacing=0x7f030142; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int pressedTranslationZ=0x7f030143; + /** + * Specifies the horizontal padding on either end for an embedded progress bar. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int progressBarPadding=0x7f030144; + /** + * Specifies a style resource to use for an embedded progress bar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int progressBarStyle=0x7f030145; + /** + * Background for the section containing the search query + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int queryBackground=0x7f030146; + /** + * An optional user-defined query hint string to be displayed in the empty query field. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int queryHint=0x7f030147; + /** + * Default RadioButton style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int radioButtonStyle=0x7f030148; + /** + * Default RatingBar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyle=0x7f030149; + /** + * Indicator RatingBar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyleIndicator=0x7f03014a; + /** + * Small indicator RatingBar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyleSmall=0x7f03014b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int reverseLayout=0x7f03014c; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int rippleColor=0x7f03014d; + /** + *

May be an integer value, such as "100". + */ + public static final int scrimAnimationDuration=0x7f03014e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int scrimBackground=0x7f03014f; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int scrimVisibleHeightTrigger=0x7f030150; + /** + * Search icon displayed as a text field hint + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchHintIcon=0x7f030151; + /** + * Search icon + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchIcon=0x7f030152; + /** + * Style for the search query widget. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchViewStyle=0x7f030153; + /** + * Default SeekBar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int seekBarStyle=0x7f030154; + /** + * A style that may be applied to buttons or other selectable items + * that should react to pressed and focus states, but that do not + * have a clear visual border along the edges. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int selectableItemBackground=0x7f030155; + /** + * Background drawable for borderless standalone items that need focus/pressed states. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int selectableItemBackgroundBorderless=0x7f030156; + /** + * How this item should display in the Action Bar, if present. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
always2Always show this item in an actionbar, even if it would override + * the system's limits of how much stuff to put there. This may make + * your action bar look bad on some screens. In most cases you should + * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".
collapseActionView8This item's action view collapses to a normal menu + * item. When expanded, the action view takes over a + * larger segment of its container.
ifRoom1Show this item in an action bar if there is room for it as determined + * by the system. Favor this option over "always" where possible. + * Mutually exclusive with "never" and "always".
never0Never show this item in an action bar, show it in the overflow menu instead. + * Mutually exclusive with "ifRoom" and "always".
withText4When this item is shown as an action in the action bar, show a text + * label with it even if it has an icon representation.
+ */ + public static final int showAsAction=0x7f030157; + /** + * Setting for which dividers to show. + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
beginning1
end4
middle2
none0
+ */ + public static final int showDividers=0x7f030158; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int showMotionSpec=0x7f030159; + /** + * Whether to draw on/off text. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int showText=0x7f03015a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int showTitle=0x7f03015b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int singleChoiceItemLayout=0x7f03015c; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int singleLine=0x7f03015d; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int singleSelection=0x7f03015e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int snackbarButtonStyle=0x7f03015f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int snackbarStyle=0x7f030160; + /** + *

May be an integer value, such as "100". + */ + public static final int spanCount=0x7f030161; + /** + * Whether bars should rotate or not during transition + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int spinBars=0x7f030162; + /** + * Default Spinner style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int spinnerDropDownItemStyle=0x7f030163; + /** + * Default Spinner style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int spinnerStyle=0x7f030164; + /** + * Whether to split the track and leave a gap for the thumb drawable. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int splitTrack=0x7f030165; + /** + * Sets a drawable as the content of this ImageView. Allows the use of vector drawable + * when running on older versions of the platform. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int srcCompat=0x7f030166; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int stackFromEnd=0x7f030167; + /** + * State identifier indicating the popup will be above the anchor. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_above_anchor=0x7f030168; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_collapsed=0x7f030169; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_collapsible=0x7f03016a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_liftable=0x7f03016b; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_lifted=0x7f03016c; + /** + * Drawable to display behind the status bar when the view is set to draw behind it. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int statusBarBackground=0x7f03016d; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int statusBarScrim=0x7f03016e; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int strokeColor=0x7f03016f; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int strokeWidth=0x7f030170; + /** + * Drawable for the arrow icon indicating a particular item is a submenu. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subMenuArrow=0x7f030171; + /** + * Background for the section containing the action (e.g. voice search) + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int submitBackground=0x7f030172; + /** + * Specifies subtitle text used for navigationMode="normal" + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int subtitle=0x7f030173; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subtitleTextAppearance=0x7f030174; + /** + * A color to apply to the subtitle string. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int subtitleTextColor=0x7f030175; + /** + * Specifies a style to use for subtitle text. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subtitleTextStyle=0x7f030176; + /** + * Layout for query suggestion rows + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int suggestionRowLayout=0x7f030177; + /** + * Minimum width for the switch component + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int switchMinWidth=0x7f030178; + /** + * Minimum space between the switch and caption text + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int switchPadding=0x7f030179; + /** + * Default style for the Switch widget. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int switchStyle=0x7f03017a; + /** + * TextAppearance style for text displayed on the switch thumb. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int switchTextAppearance=0x7f03017b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabBackground=0x7f03017c; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabContentStart=0x7f03017d; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
center1
fill0
+ */ + public static final int tabGravity=0x7f03017e; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabIconTint=0x7f03017f; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
+ */ + public static final int tabIconTintMode=0x7f030180; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabIndicator=0x7f030181; + /** + *

May be an integer value, such as "100". + */ + public static final int tabIndicatorAnimationDuration=0x7f030182; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabIndicatorColor=0x7f030183; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int tabIndicatorFullWidth=0x7f030184; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom0
center1
stretch3
top2
+ */ + public static final int tabIndicatorGravity=0x7f030185; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabIndicatorHeight=0x7f030186; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int tabInlineLabel=0x7f030187; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabMaxWidth=0x7f030188; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabMinWidth=0x7f030189; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
fixed1
scrollable0
+ */ + public static final int tabMode=0x7f03018a; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPadding=0x7f03018b; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPaddingBottom=0x7f03018c; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPaddingEnd=0x7f03018d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPaddingStart=0x7f03018e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int tabPaddingTop=0x7f03018f; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabRippleColor=0x7f030190; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabSelectedTextColor=0x7f030191; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabStyle=0x7f030192; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tabTextAppearance=0x7f030193; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tabTextColor=0x7f030194; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int tabUnboundedRipple=0x7f030195; + /** + * Present the text in ALL CAPS. This may use a small-caps form when available. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int textAllCaps=0x7f030196; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceBody1=0x7f030197; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceBody2=0x7f030198; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceButton=0x7f030199; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceCaption=0x7f03019a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline1=0x7f03019b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline2=0x7f03019c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline3=0x7f03019d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline4=0x7f03019e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline5=0x7f03019f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceHeadline6=0x7f0301a0; + /** + * Text color, typeface, size, and style for the text inside of a popup menu. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0301a1; + /** + * The preferred TextAppearance for the primary text of list items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItem=0x7f0301a2; + /** + * The preferred TextAppearance for the secondary text of list items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItemSecondary=0x7f0301a3; + /** + * The preferred TextAppearance for the primary text of small list items. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItemSmall=0x7f0301a4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceOverline=0x7f0301a5; + /** + * Text color, typeface, size, and style for header text inside of a popup menu. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0301a6; + /** + * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0301a7; + /** + * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0301a8; + /** + * Text color, typeface, size, and style for small text inside of a popup menu. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0301a9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSubtitle1=0x7f0301aa; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSubtitle2=0x7f0301ab; + /** + * Color of list item text in alert dialogs. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0301ac; + /** + * Text color for urls in search suggestions, used by things like global search + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0301ad; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int textEndPadding=0x7f0301ae; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textInputStyle=0x7f0301af; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int textStartPadding=0x7f0301b0; + /** + * Deprecated. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int theme=0x7f0301b1; + /** + * The thickness (stroke size) for the bar paint + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thickness=0x7f0301b2; + /** + * Amount of padding on either side of text within the switch thumb. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thumbTextPadding=0x7f0301b3; + /** + * Tint to apply to the thumb drawable. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int thumbTint=0x7f0301b4; + /** + * Blending mode used to apply the thumb tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int thumbTintMode=0x7f0301b5; + /** + * Drawable displayed at each progress position on a seekbar. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tickMark=0x7f0301b6; + /** + * Tint to apply to the tick mark drawable. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tickMarkTint=0x7f0301b7; + /** + * Blending mode used to apply the tick mark tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int tickMarkTintMode=0x7f0301b8; + /** + * Tint to apply to the image source. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tint=0x7f0301b9; + /** + * Blending mode used to apply the image source tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int tintMode=0x7f0301ba; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int title=0x7f0301bb; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int titleEnabled=0x7f0301bc; + /** + * Specifies extra space on the left, start, right and end sides + * of the toolbar's title. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMargin=0x7f0301bd; + /** + * Specifies extra space on the bottom side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginBottom=0x7f0301be; + /** + * Specifies extra space on the end side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginEnd=0x7f0301bf; + /** + * Specifies extra space on the start side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginStart=0x7f0301c0; + /** + * Specifies extra space on the top side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginTop=0x7f0301c1; + /** + * {@deprecated Use titleMargin} + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + @Deprecated + public static final int titleMargins=0x7f0301c2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int titleTextAppearance=0x7f0301c3; + /** + * A color to apply to the title string. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int titleTextColor=0x7f0301c4; + /** + * Specifies a style to use for title text. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int titleTextStyle=0x7f0301c5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarId=0x7f0301c6; + /** + * Default Toolar NavigationButtonStyle + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0301c7; + /** + * Default Toolbar style. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarStyle=0x7f0301c8; + /** + * Foreground color to use for tooltips + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tooltipForegroundColor=0x7f0301c9; + /** + * Background to use for tooltips + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tooltipFrameBackground=0x7f0301ca; + /** + * The tooltip text associated with the item. + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int tooltipText=0x7f0301cb; + /** + * Drawable to use as the "track" that the switch thumb slides within. + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int track=0x7f0301cc; + /** + * Tint to apply to the track. + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int trackTint=0x7f0301cd; + /** + * Blending mode used to apply the track tint. + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ */ + public static final int trackTintMode=0x7f0301ce; + /** + * The index of the font in the tcc font file. If the font file referenced is not in the + * tcc format, this attribute needs not be specified. + *

May be an integer value, such as "100". + */ + public static final int ttcIndex=0x7f0301cf; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int useCompatPadding=0x7f0301d0; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int viewInflaterClass=0x7f0301d1; + /** + * Voice button icon + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int voiceIcon=0x7f0301d2; + /** + * Flag indicating whether this window should have an Action Bar + * in place of the usual title bar. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionBar=0x7f0301d3; + /** + * Flag indicating whether this window's Action Bar should overlay + * application content. Does nothing if the window would not + * have an Action Bar. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionBarOverlay=0x7f0301d4; + /** + * Flag indicating whether action modes should overlay window content + * when there is not reserved space for their UI (such as an Action Bar). + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionModeOverlay=0x7f0301d5; + /** + * A fixed height for the window along the major axis of the screen, + * that is, when in portrait. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedHeightMajor=0x7f0301d6; + /** + * A fixed height for the window along the minor axis of the screen, + * that is, when in landscape. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedHeightMinor=0x7f0301d7; + /** + * A fixed width for the window along the major axis of the screen, + * that is, when in landscape. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedWidthMajor=0x7f0301d8; + /** + * A fixed width for the window along the minor axis of the screen, + * that is, when in portrait. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedWidthMinor=0x7f0301d9; + /** + * The minimum width the window is allowed to be, along the major + * axis of the screen. That is, when in landscape. Can be either + * an absolute dimension or a fraction of the screen size in that + * dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowMinWidthMajor=0x7f0301da; + /** + * The minimum width the window is allowed to be, along the minor + * axis of the screen. That is, when in portrait. Can be either + * an absolute dimension or a fraction of the screen size in that + * dimension. + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowMinWidthMinor=0x7f0301db; + /** + * Flag indicating whether there should be no title on this window. + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowNoTitle=0x7f0301dc; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f040000; + public static final int abc_allow_stacked_button_bar=0x7f040001; + public static final int abc_config_actionMenuItemAllCaps=0x7f040002; + public static final int mtrl_btn_textappearance_all_caps=0x7f040003; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f050000; + public static final int abc_background_cache_hint_selector_material_light=0x7f050001; + public static final int abc_btn_colored_borderless_text_material=0x7f050002; + public static final int abc_btn_colored_text_material=0x7f050003; + public static final int abc_color_highlight_material=0x7f050004; + public static final int abc_hint_foreground_material_dark=0x7f050005; + public static final int abc_hint_foreground_material_light=0x7f050006; + public static final int abc_input_method_navigation_guard=0x7f050007; + public static final int abc_primary_text_disable_only_material_dark=0x7f050008; + public static final int abc_primary_text_disable_only_material_light=0x7f050009; + public static final int abc_primary_text_material_dark=0x7f05000a; + public static final int abc_primary_text_material_light=0x7f05000b; + public static final int abc_search_url_text=0x7f05000c; + public static final int abc_search_url_text_normal=0x7f05000d; + public static final int abc_search_url_text_pressed=0x7f05000e; + public static final int abc_search_url_text_selected=0x7f05000f; + public static final int abc_secondary_text_material_dark=0x7f050010; + public static final int abc_secondary_text_material_light=0x7f050011; + public static final int abc_tint_btn_checkable=0x7f050012; + public static final int abc_tint_default=0x7f050013; + public static final int abc_tint_edittext=0x7f050014; + public static final int abc_tint_seek_thumb=0x7f050015; + public static final int abc_tint_spinner=0x7f050016; + public static final int abc_tint_switch_track=0x7f050017; + public static final int accent=0x7f050018; + public static final int accent_material_dark=0x7f050019; + public static final int accent_material_light=0x7f05001a; + public static final int background_floating_material_dark=0x7f05001b; + public static final int background_floating_material_light=0x7f05001c; + public static final int background_material_dark=0x7f05001d; + public static final int background_material_light=0x7f05001e; + public static final int bright_foreground_disabled_material_dark=0x7f05001f; + public static final int bright_foreground_disabled_material_light=0x7f050020; + public static final int bright_foreground_inverse_material_dark=0x7f050021; + public static final int bright_foreground_inverse_material_light=0x7f050022; + public static final int bright_foreground_material_dark=0x7f050023; + public static final int bright_foreground_material_light=0x7f050024; + public static final int button_material_dark=0x7f050025; + public static final int button_material_light=0x7f050026; + public static final int cardview_dark_background=0x7f050027; + public static final int cardview_light_background=0x7f050028; + public static final int cardview_shadow_end_color=0x7f050029; + public static final int cardview_shadow_start_color=0x7f05002a; + public static final int design_bottom_navigation_shadow_color=0x7f05002b; + public static final int design_default_color_primary=0x7f05002c; + public static final int design_default_color_primary_dark=0x7f05002d; + public static final int design_error=0x7f05002e; + public static final int design_fab_shadow_end_color=0x7f05002f; + public static final int design_fab_shadow_mid_color=0x7f050030; + public static final int design_fab_shadow_start_color=0x7f050031; + public static final int design_fab_stroke_end_inner_color=0x7f050032; + public static final int design_fab_stroke_end_outer_color=0x7f050033; + public static final int design_fab_stroke_top_inner_color=0x7f050034; + public static final int design_fab_stroke_top_outer_color=0x7f050035; + public static final int design_snackbar_background_color=0x7f050036; + public static final int design_tint_password_toggle=0x7f050037; + public static final int dim_foreground_disabled_material_dark=0x7f050038; + public static final int dim_foreground_disabled_material_light=0x7f050039; + public static final int dim_foreground_material_dark=0x7f05003a; + public static final int dim_foreground_material_light=0x7f05003b; + public static final int divider=0x7f05003c; + public static final int error_color_material_dark=0x7f05003d; + public static final int error_color_material_light=0x7f05003e; + public static final int foreground_material_dark=0x7f05003f; + public static final int foreground_material_light=0x7f050040; + public static final int highlighted_text_material_dark=0x7f050041; + public static final int highlighted_text_material_light=0x7f050042; + public static final int icons=0x7f050043; + public static final int material_blue_grey_800=0x7f050044; + public static final int material_blue_grey_900=0x7f050045; + public static final int material_blue_grey_950=0x7f050046; + public static final int material_deep_teal_200=0x7f050047; + public static final int material_deep_teal_500=0x7f050048; + public static final int material_grey_100=0x7f050049; + public static final int material_grey_300=0x7f05004a; + public static final int material_grey_50=0x7f05004b; + public static final int material_grey_600=0x7f05004c; + public static final int material_grey_800=0x7f05004d; + public static final int material_grey_850=0x7f05004e; + public static final int material_grey_900=0x7f05004f; + public static final int mtrl_bottom_nav_colored_item_tint=0x7f050050; + public static final int mtrl_bottom_nav_item_tint=0x7f050051; + public static final int mtrl_btn_bg_color_disabled=0x7f050052; + public static final int mtrl_btn_bg_color_selector=0x7f050053; + public static final int mtrl_btn_ripple_color=0x7f050054; + public static final int mtrl_btn_stroke_color_selector=0x7f050055; + public static final int mtrl_btn_text_btn_ripple_color=0x7f050056; + public static final int mtrl_btn_text_color_disabled=0x7f050057; + public static final int mtrl_btn_text_color_selector=0x7f050058; + public static final int mtrl_btn_transparent_bg_color=0x7f050059; + public static final int mtrl_chip_background_color=0x7f05005a; + public static final int mtrl_chip_close_icon_tint=0x7f05005b; + public static final int mtrl_chip_ripple_color=0x7f05005c; + public static final int mtrl_chip_text_color=0x7f05005d; + public static final int mtrl_fab_ripple_color=0x7f05005e; + public static final int mtrl_scrim_color=0x7f05005f; + public static final int mtrl_tabs_colored_ripple_color=0x7f050060; + public static final int mtrl_tabs_icon_color_selector=0x7f050061; + public static final int mtrl_tabs_icon_color_selector_colored=0x7f050062; + public static final int mtrl_tabs_legacy_text_color_selector=0x7f050063; + public static final int mtrl_tabs_ripple_color=0x7f050064; + public static final int mtrl_text_btn_text_color_selector=0x7f050065; + public static final int mtrl_textinput_default_box_stroke_color=0x7f050066; + public static final int mtrl_textinput_disabled_color=0x7f050067; + public static final int mtrl_textinput_filled_box_default_background_color=0x7f050068; + public static final int mtrl_textinput_hovered_box_stroke_color=0x7f050069; + public static final int notification_action_color_filter=0x7f05006a; + public static final int notification_icon_bg_color=0x7f05006b; + public static final int notification_material_background_media_default_color=0x7f05006c; + public static final int primary=0x7f05006d; + public static final int primary_dark=0x7f05006e; + public static final int primary_dark_material_dark=0x7f05006f; + public static final int primary_dark_material_light=0x7f050070; + public static final int primary_light=0x7f050071; + public static final int primary_material_dark=0x7f050072; + public static final int primary_material_light=0x7f050073; + public static final int primary_text=0x7f050074; + public static final int primary_text_default_material_dark=0x7f050075; + public static final int primary_text_default_material_light=0x7f050076; + public static final int primary_text_disabled_material_dark=0x7f050077; + public static final int primary_text_disabled_material_light=0x7f050078; + public static final int ripple_material_dark=0x7f050079; + public static final int ripple_material_light=0x7f05007a; + public static final int secondary_text=0x7f05007b; + public static final int secondary_text_default_material_dark=0x7f05007c; + public static final int secondary_text_default_material_light=0x7f05007d; + public static final int secondary_text_disabled_material_dark=0x7f05007e; + public static final int secondary_text_disabled_material_light=0x7f05007f; + public static final int switch_thumb_disabled_material_dark=0x7f050080; + public static final int switch_thumb_disabled_material_light=0x7f050081; + public static final int switch_thumb_material_dark=0x7f050082; + public static final int switch_thumb_material_light=0x7f050083; + public static final int switch_thumb_normal_material_dark=0x7f050084; + public static final int switch_thumb_normal_material_light=0x7f050085; + public static final int tooltip_background_dark=0x7f050086; + public static final int tooltip_background_light=0x7f050087; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f060000; + public static final int abc_action_bar_content_inset_with_nav=0x7f060001; + public static final int abc_action_bar_default_height_material=0x7f060002; + public static final int abc_action_bar_default_padding_end_material=0x7f060003; + public static final int abc_action_bar_default_padding_start_material=0x7f060004; + public static final int abc_action_bar_elevation_material=0x7f060005; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f060006; + public static final int abc_action_bar_overflow_padding_end_material=0x7f060007; + public static final int abc_action_bar_overflow_padding_start_material=0x7f060008; + public static final int abc_action_bar_stacked_max_height=0x7f060009; + public static final int abc_action_bar_stacked_tab_max_width=0x7f06000a; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f06000b; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f06000c; + public static final int abc_action_button_min_height_material=0x7f06000d; + public static final int abc_action_button_min_width_material=0x7f06000e; + public static final int abc_action_button_min_width_overflow_material=0x7f06000f; + public static final int abc_alert_dialog_button_bar_height=0x7f060010; + public static final int abc_alert_dialog_button_dimen=0x7f060011; + public static final int abc_button_inset_horizontal_material=0x7f060012; + public static final int abc_button_inset_vertical_material=0x7f060013; + public static final int abc_button_padding_horizontal_material=0x7f060014; + public static final int abc_button_padding_vertical_material=0x7f060015; + public static final int abc_cascading_menus_min_smallest_width=0x7f060016; + public static final int abc_config_prefDialogWidth=0x7f060017; + public static final int abc_control_corner_material=0x7f060018; + public static final int abc_control_inset_material=0x7f060019; + public static final int abc_control_padding_material=0x7f06001a; + public static final int abc_dialog_corner_radius_material=0x7f06001b; + public static final int abc_dialog_fixed_height_major=0x7f06001c; + public static final int abc_dialog_fixed_height_minor=0x7f06001d; + public static final int abc_dialog_fixed_width_major=0x7f06001e; + public static final int abc_dialog_fixed_width_minor=0x7f06001f; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f060020; + public static final int abc_dialog_list_padding_top_no_title=0x7f060021; + public static final int abc_dialog_min_width_major=0x7f060022; + public static final int abc_dialog_min_width_minor=0x7f060023; + public static final int abc_dialog_padding_material=0x7f060024; + public static final int abc_dialog_padding_top_material=0x7f060025; + public static final int abc_dialog_title_divider_material=0x7f060026; + public static final int abc_disabled_alpha_material_dark=0x7f060027; + public static final int abc_disabled_alpha_material_light=0x7f060028; + public static final int abc_dropdownitem_icon_width=0x7f060029; + public static final int abc_dropdownitem_text_padding_left=0x7f06002a; + public static final int abc_dropdownitem_text_padding_right=0x7f06002b; + public static final int abc_edit_text_inset_bottom_material=0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material=0x7f06002d; + public static final int abc_edit_text_inset_top_material=0x7f06002e; + public static final int abc_floating_window_z=0x7f06002f; + public static final int abc_list_item_padding_horizontal_material=0x7f060030; + public static final int abc_panel_menu_list_width=0x7f060031; + public static final int abc_progress_bar_height_material=0x7f060032; + public static final int abc_search_view_preferred_height=0x7f060033; + public static final int abc_search_view_preferred_width=0x7f060034; + public static final int abc_seekbar_track_background_height_material=0x7f060035; + public static final int abc_seekbar_track_progress_height_material=0x7f060036; + public static final int abc_select_dialog_padding_start_material=0x7f060037; + public static final int abc_switch_padding=0x7f060038; + public static final int abc_text_size_body_1_material=0x7f060039; + public static final int abc_text_size_body_2_material=0x7f06003a; + public static final int abc_text_size_button_material=0x7f06003b; + public static final int abc_text_size_caption_material=0x7f06003c; + public static final int abc_text_size_display_1_material=0x7f06003d; + public static final int abc_text_size_display_2_material=0x7f06003e; + public static final int abc_text_size_display_3_material=0x7f06003f; + public static final int abc_text_size_display_4_material=0x7f060040; + public static final int abc_text_size_headline_material=0x7f060041; + public static final int abc_text_size_large_material=0x7f060042; + public static final int abc_text_size_medium_material=0x7f060043; + public static final int abc_text_size_menu_header_material=0x7f060044; + public static final int abc_text_size_menu_material=0x7f060045; + public static final int abc_text_size_small_material=0x7f060046; + public static final int abc_text_size_subhead_material=0x7f060047; + public static final int abc_text_size_subtitle_material_toolbar=0x7f060048; + public static final int abc_text_size_title_material=0x7f060049; + public static final int abc_text_size_title_material_toolbar=0x7f06004a; + public static final int cardview_compat_inset_shadow=0x7f06004b; + public static final int cardview_default_elevation=0x7f06004c; + public static final int cardview_default_radius=0x7f06004d; + public static final int compat_button_inset_horizontal_material=0x7f06004e; + public static final int compat_button_inset_vertical_material=0x7f06004f; + public static final int compat_button_padding_horizontal_material=0x7f060050; + public static final int compat_button_padding_vertical_material=0x7f060051; + public static final int compat_control_corner_material=0x7f060052; + public static final int compat_notification_large_icon_max_height=0x7f060053; + public static final int compat_notification_large_icon_max_width=0x7f060054; + public static final int design_appbar_elevation=0x7f060055; + public static final int design_bottom_navigation_active_item_max_width=0x7f060056; + public static final int design_bottom_navigation_active_item_min_width=0x7f060057; + public static final int design_bottom_navigation_active_text_size=0x7f060058; + public static final int design_bottom_navigation_elevation=0x7f060059; + public static final int design_bottom_navigation_height=0x7f06005a; + public static final int design_bottom_navigation_icon_size=0x7f06005b; + public static final int design_bottom_navigation_item_max_width=0x7f06005c; + public static final int design_bottom_navigation_item_min_width=0x7f06005d; + public static final int design_bottom_navigation_margin=0x7f06005e; + public static final int design_bottom_navigation_shadow_height=0x7f06005f; + public static final int design_bottom_navigation_text_size=0x7f060060; + public static final int design_bottom_sheet_modal_elevation=0x7f060061; + public static final int design_bottom_sheet_peek_height_min=0x7f060062; + public static final int design_fab_border_width=0x7f060063; + public static final int design_fab_elevation=0x7f060064; + public static final int design_fab_image_size=0x7f060065; + public static final int design_fab_size_mini=0x7f060066; + public static final int design_fab_size_normal=0x7f060067; + public static final int design_fab_translation_z_hovered_focused=0x7f060068; + public static final int design_fab_translation_z_pressed=0x7f060069; + public static final int design_navigation_elevation=0x7f06006a; + public static final int design_navigation_icon_padding=0x7f06006b; + public static final int design_navigation_icon_size=0x7f06006c; + public static final int design_navigation_item_horizontal_padding=0x7f06006d; + public static final int design_navigation_item_icon_padding=0x7f06006e; + public static final int design_navigation_max_width=0x7f06006f; + public static final int design_navigation_padding_bottom=0x7f060070; + public static final int design_navigation_separator_vertical_padding=0x7f060071; + public static final int design_snackbar_action_inline_max_width=0x7f060072; + public static final int design_snackbar_background_corner_radius=0x7f060073; + public static final int design_snackbar_elevation=0x7f060074; + public static final int design_snackbar_extra_spacing_horizontal=0x7f060075; + public static final int design_snackbar_max_width=0x7f060076; + public static final int design_snackbar_min_width=0x7f060077; + public static final int design_snackbar_padding_horizontal=0x7f060078; + public static final int design_snackbar_padding_vertical=0x7f060079; + public static final int design_snackbar_padding_vertical_2lines=0x7f06007a; + public static final int design_snackbar_text_size=0x7f06007b; + public static final int design_tab_max_width=0x7f06007c; + public static final int design_tab_scrollable_min_width=0x7f06007d; + public static final int design_tab_text_size=0x7f06007e; + public static final int design_tab_text_size_2line=0x7f06007f; + public static final int design_textinput_caption_translate_y=0x7f060080; + public static final int disabled_alpha_material_dark=0x7f060081; + public static final int disabled_alpha_material_light=0x7f060082; + public static final int fastscroll_default_thickness=0x7f060083; + public static final int fastscroll_margin=0x7f060084; + public static final int fastscroll_minimum_range=0x7f060085; + public static final int highlight_alpha_material_colored=0x7f060086; + public static final int highlight_alpha_material_dark=0x7f060087; + public static final int highlight_alpha_material_light=0x7f060088; + public static final int hint_alpha_material_dark=0x7f060089; + public static final int hint_alpha_material_light=0x7f06008a; + public static final int hint_pressed_alpha_material_dark=0x7f06008b; + public static final int hint_pressed_alpha_material_light=0x7f06008c; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f06008d; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f06008e; + public static final int item_touch_helper_swipe_escape_velocity=0x7f06008f; + public static final int mtrl_bottomappbar_fabOffsetEndMode=0x7f060090; + public static final int mtrl_bottomappbar_fab_cradle_margin=0x7f060091; + public static final int mtrl_bottomappbar_fab_cradle_rounded_corner_radius=0x7f060092; + public static final int mtrl_bottomappbar_fab_cradle_vertical_offset=0x7f060093; + public static final int mtrl_bottomappbar_height=0x7f060094; + public static final int mtrl_btn_corner_radius=0x7f060095; + public static final int mtrl_btn_dialog_btn_min_width=0x7f060096; + public static final int mtrl_btn_disabled_elevation=0x7f060097; + public static final int mtrl_btn_disabled_z=0x7f060098; + public static final int mtrl_btn_elevation=0x7f060099; + public static final int mtrl_btn_focused_z=0x7f06009a; + public static final int mtrl_btn_hovered_z=0x7f06009b; + public static final int mtrl_btn_icon_btn_padding_left=0x7f06009c; + public static final int mtrl_btn_icon_padding=0x7f06009d; + public static final int mtrl_btn_inset=0x7f06009e; + public static final int mtrl_btn_letter_spacing=0x7f06009f; + public static final int mtrl_btn_padding_bottom=0x7f0600a0; + public static final int mtrl_btn_padding_left=0x7f0600a1; + public static final int mtrl_btn_padding_right=0x7f0600a2; + public static final int mtrl_btn_padding_top=0x7f0600a3; + public static final int mtrl_btn_pressed_z=0x7f0600a4; + public static final int mtrl_btn_stroke_size=0x7f0600a5; + public static final int mtrl_btn_text_btn_icon_padding=0x7f0600a6; + public static final int mtrl_btn_text_btn_padding_left=0x7f0600a7; + public static final int mtrl_btn_text_btn_padding_right=0x7f0600a8; + public static final int mtrl_btn_text_size=0x7f0600a9; + public static final int mtrl_btn_z=0x7f0600aa; + public static final int mtrl_card_elevation=0x7f0600ab; + public static final int mtrl_card_spacing=0x7f0600ac; + public static final int mtrl_chip_pressed_translation_z=0x7f0600ad; + public static final int mtrl_chip_text_size=0x7f0600ae; + public static final int mtrl_fab_elevation=0x7f0600af; + public static final int mtrl_fab_translation_z_hovered_focused=0x7f0600b0; + public static final int mtrl_fab_translation_z_pressed=0x7f0600b1; + public static final int mtrl_navigation_elevation=0x7f0600b2; + public static final int mtrl_navigation_item_horizontal_padding=0x7f0600b3; + public static final int mtrl_navigation_item_icon_padding=0x7f0600b4; + public static final int mtrl_snackbar_background_corner_radius=0x7f0600b5; + public static final int mtrl_snackbar_margin=0x7f0600b6; + public static final int mtrl_textinput_box_bottom_offset=0x7f0600b7; + public static final int mtrl_textinput_box_corner_radius_medium=0x7f0600b8; + public static final int mtrl_textinput_box_corner_radius_small=0x7f0600b9; + public static final int mtrl_textinput_box_label_cutout_padding=0x7f0600ba; + public static final int mtrl_textinput_box_padding_end=0x7f0600bb; + public static final int mtrl_textinput_box_stroke_width_default=0x7f0600bc; + public static final int mtrl_textinput_box_stroke_width_focused=0x7f0600bd; + public static final int mtrl_textinput_outline_box_expanded_padding=0x7f0600be; + public static final int mtrl_toolbar_default_height=0x7f0600bf; + public static final int notification_action_icon_size=0x7f0600c0; + public static final int notification_action_text_size=0x7f0600c1; + public static final int notification_big_circle_margin=0x7f0600c2; + public static final int notification_content_margin_start=0x7f0600c3; + public static final int notification_large_icon_height=0x7f0600c4; + public static final int notification_large_icon_width=0x7f0600c5; + public static final int notification_main_column_padding_top=0x7f0600c6; + public static final int notification_media_narrow_margin=0x7f0600c7; + public static final int notification_right_icon_size=0x7f0600c8; + public static final int notification_right_side_padding_top=0x7f0600c9; + public static final int notification_small_icon_background_padding=0x7f0600ca; + public static final int notification_small_icon_size_as_large=0x7f0600cb; + public static final int notification_subtext_size=0x7f0600cc; + public static final int notification_top_pad=0x7f0600cd; + public static final int notification_top_pad_large_text=0x7f0600ce; + public static final int subtitle_corner_radius=0x7f0600cf; + public static final int subtitle_outline_width=0x7f0600d0; + public static final int subtitle_shadow_offset=0x7f0600d1; + public static final int subtitle_shadow_radius=0x7f0600d2; + public static final int tooltip_corner_radius=0x7f0600d3; + public static final int tooltip_horizontal_padding=0x7f0600d4; + public static final int tooltip_margin=0x7f0600d5; + public static final int tooltip_precise_anchor_extra_offset=0x7f0600d6; + public static final int tooltip_precise_anchor_threshold=0x7f0600d7; + public static final int tooltip_vertical_padding=0x7f0600d8; + public static final int tooltip_y_offset_non_touch=0x7f0600d9; + public static final int tooltip_y_offset_touch=0x7f0600da; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f070006; + public static final int abc_action_bar_item_background_material=0x7f070007; + public static final int abc_btn_borderless_material=0x7f070008; + public static final int abc_btn_check_material=0x7f070009; + public static final int abc_btn_check_to_on_mtrl_000=0x7f07000a; + public static final int abc_btn_check_to_on_mtrl_015=0x7f07000b; + public static final int abc_btn_colored_material=0x7f07000c; + public static final int abc_btn_default_mtrl_shape=0x7f07000d; + public static final int abc_btn_radio_material=0x7f07000e; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f07000f; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f070010; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f070011; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f070012; + public static final int abc_cab_background_internal_bg=0x7f070013; + public static final int abc_cab_background_top_material=0x7f070014; + public static final int abc_cab_background_top_mtrl_alpha=0x7f070015; + public static final int abc_control_background_material=0x7f070016; + public static final int abc_dialog_material_background=0x7f070017; + public static final int abc_edit_text_material=0x7f070018; + public static final int abc_ic_ab_back_material=0x7f070019; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f07001a; + public static final int abc_ic_clear_material=0x7f07001b; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f07001c; + public static final int abc_ic_go_search_api_material=0x7f07001d; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f07001e; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f07001f; + public static final int abc_ic_menu_overflow_material=0x7f070020; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f070021; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f070022; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f070023; + public static final int abc_ic_search_api_material=0x7f070024; + public static final int abc_ic_star_black_16dp=0x7f070025; + public static final int abc_ic_star_black_36dp=0x7f070026; + public static final int abc_ic_star_black_48dp=0x7f070027; + public static final int abc_ic_star_half_black_16dp=0x7f070028; + public static final int abc_ic_star_half_black_36dp=0x7f070029; + public static final int abc_ic_star_half_black_48dp=0x7f07002a; + public static final int abc_ic_voice_search_api_material=0x7f07002b; + public static final int abc_item_background_holo_dark=0x7f07002c; + public static final int abc_item_background_holo_light=0x7f07002d; + public static final int abc_list_divider_material=0x7f07002e; + public static final int abc_list_divider_mtrl_alpha=0x7f07002f; + public static final int abc_list_focused_holo=0x7f070030; + public static final int abc_list_longpressed_holo=0x7f070031; + public static final int abc_list_pressed_holo_dark=0x7f070032; + public static final int abc_list_pressed_holo_light=0x7f070033; + public static final int abc_list_selector_background_transition_holo_dark=0x7f070034; + public static final int abc_list_selector_background_transition_holo_light=0x7f070035; + public static final int abc_list_selector_disabled_holo_dark=0x7f070036; + public static final int abc_list_selector_disabled_holo_light=0x7f070037; + public static final int abc_list_selector_holo_dark=0x7f070038; + public static final int abc_list_selector_holo_light=0x7f070039; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f07003a; + public static final int abc_popup_background_mtrl_mult=0x7f07003b; + public static final int abc_ratingbar_indicator_material=0x7f07003c; + public static final int abc_ratingbar_material=0x7f07003d; + public static final int abc_ratingbar_small_material=0x7f07003e; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f07003f; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f070040; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f070041; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f070042; + public static final int abc_scrubber_track_mtrl_alpha=0x7f070043; + public static final int abc_seekbar_thumb_material=0x7f070044; + public static final int abc_seekbar_tick_mark_material=0x7f070045; + public static final int abc_seekbar_track_material=0x7f070046; + public static final int abc_spinner_mtrl_am_alpha=0x7f070047; + public static final int abc_spinner_textfield_background_material=0x7f070048; + public static final int abc_switch_thumb_material=0x7f070049; + public static final int abc_switch_track_mtrl_alpha=0x7f07004a; + public static final int abc_tab_indicator_material=0x7f07004b; + public static final int abc_tab_indicator_mtrl_alpha=0x7f07004c; + public static final int abc_text_cursor_material=0x7f07004d; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f07004e; + public static final int abc_text_select_handle_left_mtrl_light=0x7f07004f; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f070050; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f070051; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f070052; + public static final int abc_text_select_handle_right_mtrl_light=0x7f070053; + public static final int abc_textfield_activated_mtrl_alpha=0x7f070054; + public static final int abc_textfield_default_mtrl_alpha=0x7f070055; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f070056; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f070057; + public static final int abc_textfield_search_material=0x7f070058; + public static final int abc_vector_test=0x7f070059; + public static final int avd_hide_password=0x7f07005a; + public static final int avd_show_password=0x7f07005b; + public static final int bg_material=0x7f07005c; + public static final int design_bottom_navigation_item_background=0x7f07005d; + public static final int design_fab_background=0x7f07005e; + public static final int design_ic_visibility=0x7f07005f; + public static final int design_ic_visibility_off=0x7f070060; + public static final int design_password_eye=0x7f070061; + public static final int design_snackbar_background=0x7f070062; + public static final int ic_call_icon=0x7f070063; + public static final int ic_cervantes=0x7f070064; + public static final int ic_chevron_left_black_48dp=0x7f070065; + public static final int ic_chevron_right_black_48dp=0x7f070066; + public static final int ic_don_quixote=0x7f070067; + public static final int ic_fritzbox=0x7f070068; + public static final int ic_fritzbox_icon=0x7f070069; + public static final int ic_lance=0x7f07006a; + public static final int ic_launcher=0x7f07006b; + public static final int ic_log_icon=0x7f07006c; + public static final int ic_menu_white_36dp=0x7f07006d; + public static final int ic_mtrl_chip_checked_black=0x7f07006e; + public static final int ic_mtrl_chip_checked_circle=0x7f07006f; + public static final int ic_mtrl_chip_close_circle=0x7f070070; + public static final int ic_scene_1=0x7f070071; + public static final int ic_scene_2=0x7f070072; + public static final int ic_scene_3=0x7f070073; + public static final int ic_settings_icon=0x7f070074; + public static final int ic_state_icon=0x7f070075; + public static final int ic_windmil=0x7f070076; + public static final int mtrl_snackbar_background=0x7f070077; + public static final int mtrl_tabs_default_indicator=0x7f070078; + public static final int navigation_empty_icon=0x7f070079; + public static final int notification_action_background=0x7f07007a; + public static final int notification_bg=0x7f07007b; + public static final int notification_bg_low=0x7f07007c; + public static final int notification_bg_low_normal=0x7f07007d; + public static final int notification_bg_low_pressed=0x7f07007e; + public static final int notification_bg_normal=0x7f07007f; + public static final int notification_bg_normal_pressed=0x7f070080; + public static final int notification_icon_background=0x7f070081; + public static final int notification_template_icon_bg=0x7f070082; + public static final int notification_template_icon_low_bg=0x7f070083; + public static final int notification_tile_bg=0x7f070084; + public static final int notify_panel_notification_icon_bg=0x7f070085; + public static final int tooltip_frame_dark=0x7f070086; + public static final int tooltip_frame_light=0x7f070087; + } + public static final class id { + public static final int ALT=0x7f080000; + public static final int CTRL=0x7f080001; + public static final int FUNCTION=0x7f080002; + public static final int META=0x7f080003; + public static final int SHIFT=0x7f080004; + public static final int SYM=0x7f080005; + public static final int action0=0x7f080006; + public static final int action_bar=0x7f080007; + public static final int action_bar_activity_content=0x7f080008; + public static final int action_bar_container=0x7f080009; + public static final int action_bar_root=0x7f08000a; + public static final int action_bar_spinner=0x7f08000b; + public static final int action_bar_subtitle=0x7f08000c; + public static final int action_bar_title=0x7f08000d; + public static final int action_container=0x7f08000e; + public static final int action_context_bar=0x7f08000f; + public static final int action_divider=0x7f080010; + public static final int action_image=0x7f080011; + public static final int action_menu_divider=0x7f080012; + public static final int action_menu_presenter=0x7f080013; + public static final int action_mode_bar=0x7f080014; + public static final int action_mode_bar_stub=0x7f080015; + public static final int action_mode_close_button=0x7f080016; + public static final int action_text=0x7f080017; + public static final int actions=0x7f080018; + public static final int activity_chooser_view_content=0x7f080019; + public static final int add=0x7f08001a; + public static final int alertTitle=0x7f08001b; + public static final int all=0x7f08001c; + public static final int always=0x7f08001d; + public static final int async=0x7f08001e; + public static final int auto=0x7f08001f; + public static final int beginning=0x7f080020; + public static final int blocking=0x7f080021; + public static final int bottom=0x7f080022; + public static final int buttonPanel=0x7f080023; + public static final int cancel_action=0x7f080024; + public static final int center=0x7f080025; + public static final int center_horizontal=0x7f080026; + public static final int center_vertical=0x7f080027; + public static final int checkbox=0x7f080028; + public static final int chronometer=0x7f080029; + public static final int clip_horizontal=0x7f08002a; + public static final int clip_vertical=0x7f08002b; + public static final int collapseActionView=0x7f08002c; + public static final int container=0x7f08002d; + public static final int content=0x7f08002e; + public static final int contentPanel=0x7f08002f; + public static final int coordinator=0x7f080030; + public static final int custom=0x7f080031; + public static final int customPanel=0x7f080032; + public static final int decor_content_parent=0x7f080033; + public static final int default_activity_button=0x7f080034; + public static final int design_bottom_sheet=0x7f080035; + public static final int design_menu_item_action_area=0x7f080036; + public static final int design_menu_item_action_area_stub=0x7f080037; + public static final int design_menu_item_text=0x7f080038; + public static final int design_navigation_view=0x7f080039; + public static final int disableHome=0x7f08003a; + public static final int edit_query=0x7f08003b; + public static final int end=0x7f08003c; + public static final int end_padder=0x7f08003d; + public static final int enterAlways=0x7f08003e; + public static final int enterAlwaysCollapsed=0x7f08003f; + public static final int exitUntilCollapsed=0x7f080040; + public static final int expand_activities_button=0x7f080041; + public static final int expanded_menu=0x7f080042; + public static final int fill=0x7f080043; + public static final int fill_horizontal=0x7f080044; + public static final int fill_vertical=0x7f080045; + public static final int filled=0x7f080046; + public static final int fixed=0x7f080047; + public static final int forever=0x7f080048; + public static final int ghost_view=0x7f080049; + public static final int group_divider=0x7f08004a; + public static final int home=0x7f08004b; + public static final int homeAsUp=0x7f08004c; + public static final int icon=0x7f08004d; + public static final int icon_group=0x7f08004e; + public static final int ifRoom=0x7f08004f; + public static final int image=0x7f080050; + public static final int info=0x7f080051; + public static final int italic=0x7f080052; + public static final int item_touch_helper_previous_elevation=0x7f080053; + public static final int labeled=0x7f080054; + public static final int largeLabel=0x7f080055; + public static final int left=0x7f080056; + public static final int line1=0x7f080057; + public static final int line3=0x7f080058; + public static final int listMode=0x7f080059; + public static final int list_item=0x7f08005a; + public static final int masked=0x7f08005b; + public static final int media_actions=0x7f08005c; + public static final int message=0x7f08005d; + public static final int middle=0x7f08005e; + public static final int mini=0x7f08005f; + public static final int mtrl_child_content_container=0x7f080060; + public static final int mtrl_internal_children_alpha_tag=0x7f080061; + public static final int multiply=0x7f080062; + public static final int navigation_header_container=0x7f080063; + public static final int never=0x7f080064; + public static final int none=0x7f080065; + public static final int normal=0x7f080066; + public static final int notification_background=0x7f080067; + public static final int notification_main_column=0x7f080068; + public static final int notification_main_column_container=0x7f080069; + public static final int outline=0x7f08006a; + public static final int parallax=0x7f08006b; + public static final int parentPanel=0x7f08006c; + public static final int parent_matrix=0x7f08006d; + public static final int pin=0x7f08006e; + public static final int progress_circular=0x7f08006f; + public static final int progress_horizontal=0x7f080070; + public static final int radio=0x7f080071; + public static final int right=0x7f080072; + public static final int right_icon=0x7f080073; + public static final int right_side=0x7f080074; + public static final int save_image_matrix=0x7f080075; + public static final int save_non_transition_alpha=0x7f080076; + public static final int save_scale_type=0x7f080077; + public static final int screen=0x7f080078; + public static final int scroll=0x7f080079; + public static final int scrollIndicatorDown=0x7f08007a; + public static final int scrollIndicatorUp=0x7f08007b; + public static final int scrollView=0x7f08007c; + public static final int scrollable=0x7f08007d; + public static final int search_badge=0x7f08007e; + public static final int search_bar=0x7f08007f; + public static final int search_button=0x7f080080; + public static final int search_close_btn=0x7f080081; + public static final int search_edit_frame=0x7f080082; + public static final int search_go_btn=0x7f080083; + public static final int search_mag_icon=0x7f080084; + public static final int search_plate=0x7f080085; + public static final int search_src_text=0x7f080086; + public static final int search_voice_btn=0x7f080087; + public static final int select_dialog_listview=0x7f080088; + public static final int selected=0x7f080089; + public static final int shortcut=0x7f08008a; + public static final int showCustom=0x7f08008b; + public static final int showHome=0x7f08008c; + public static final int showTitle=0x7f08008d; + public static final int smallLabel=0x7f08008e; + public static final int snackbar_action=0x7f08008f; + public static final int snackbar_text=0x7f080090; + public static final int snap=0x7f080091; + public static final int snapMargins=0x7f080092; + public static final int spacer=0x7f080093; + public static final int split_action_bar=0x7f080094; + public static final int src_atop=0x7f080095; + public static final int src_in=0x7f080096; + public static final int src_over=0x7f080097; + public static final int start=0x7f080098; + public static final int status_bar_latest_event_content=0x7f080099; + public static final int stretch=0x7f08009a; + public static final int submenuarrow=0x7f08009b; + public static final int submit_area=0x7f08009c; + public static final int tabMode=0x7f08009d; + public static final int tag_transition_group=0x7f08009e; + public static final int tag_unhandled_key_event_manager=0x7f08009f; + public static final int tag_unhandled_key_listeners=0x7f0800a0; + public static final int text=0x7f0800a1; + public static final int text2=0x7f0800a2; + public static final int textSpacerNoButtons=0x7f0800a3; + public static final int textSpacerNoTitle=0x7f0800a4; + public static final int textStart=0x7f0800a5; + public static final int text_input_password_toggle=0x7f0800a6; + public static final int textinput_counter=0x7f0800a7; + public static final int textinput_error=0x7f0800a8; + public static final int textinput_helper_text=0x7f0800a9; + public static final int time=0x7f0800aa; + public static final int title=0x7f0800ab; + public static final int titleDividerNoCustom=0x7f0800ac; + public static final int title_template=0x7f0800ad; + public static final int top=0x7f0800ae; + public static final int topPanel=0x7f0800af; + public static final int touch_outside=0x7f0800b0; + public static final int transition_current_scene=0x7f0800b1; + public static final int transition_layout_save=0x7f0800b2; + public static final int transition_position=0x7f0800b3; + public static final int transition_scene_layoutid_cache=0x7f0800b4; + public static final int transition_transform=0x7f0800b5; + public static final int uniform=0x7f0800b6; + public static final int unlabeled=0x7f0800b7; + public static final int up=0x7f0800b8; + public static final int useLogo=0x7f0800b9; + public static final int view_offset_helper=0x7f0800ba; + public static final int visible=0x7f0800bb; + public static final int withText=0x7f0800bc; + public static final int wrap_content=0x7f0800bd; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f090000; + public static final int abc_config_activityShortDur=0x7f090001; + public static final int app_bar_elevation_anim_duration=0x7f090002; + public static final int bottom_sheet_slide_duration=0x7f090003; + public static final int cancel_button_image_alpha=0x7f090004; + public static final int config_tooltipAnimTime=0x7f090005; + public static final int design_snackbar_text_max_lines=0x7f090006; + public static final int design_tab_indicator_anim_duration_ms=0x7f090007; + public static final int hide_password_duration=0x7f090008; + public static final int mtrl_btn_anim_delay_ms=0x7f090009; + public static final int mtrl_btn_anim_duration_ms=0x7f09000a; + public static final int mtrl_chip_anim_duration=0x7f09000b; + public static final int mtrl_tab_indicator_anim_duration_ms=0x7f09000c; + public static final int show_password_duration=0x7f09000d; + public static final int status_bar_notification_info_maxnum=0x7f09000e; + } + public static final class interpolator { + public static final int mtrl_fast_out_linear_in=0x7f0a0000; + public static final int mtrl_fast_out_slow_in=0x7f0a0001; + public static final int mtrl_linear=0x7f0a0002; + public static final int mtrl_linear_out_slow_in=0x7f0a0003; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f0b0000; + public static final int abc_action_bar_up_container=0x7f0b0001; + public static final int abc_action_menu_item_layout=0x7f0b0002; + public static final int abc_action_menu_layout=0x7f0b0003; + public static final int abc_action_mode_bar=0x7f0b0004; + public static final int abc_action_mode_close_item_material=0x7f0b0005; + public static final int abc_activity_chooser_view=0x7f0b0006; + public static final int abc_activity_chooser_view_list_item=0x7f0b0007; + public static final int abc_alert_dialog_button_bar_material=0x7f0b0008; + public static final int abc_alert_dialog_material=0x7f0b0009; + public static final int abc_alert_dialog_title_material=0x7f0b000a; + public static final int abc_cascading_menu_item_layout=0x7f0b000b; + public static final int abc_dialog_title_material=0x7f0b000c; + public static final int abc_expanded_menu_layout=0x7f0b000d; + public static final int abc_list_menu_item_checkbox=0x7f0b000e; + public static final int abc_list_menu_item_icon=0x7f0b000f; + public static final int abc_list_menu_item_layout=0x7f0b0010; + public static final int abc_list_menu_item_radio=0x7f0b0011; + public static final int abc_popup_menu_header_item_layout=0x7f0b0012; + public static final int abc_popup_menu_item_layout=0x7f0b0013; + public static final int abc_screen_content_include=0x7f0b0014; + public static final int abc_screen_simple=0x7f0b0015; + public static final int abc_screen_simple_overlay_action_mode=0x7f0b0016; + public static final int abc_screen_toolbar=0x7f0b0017; + public static final int abc_search_dropdown_item_icons_2line=0x7f0b0018; + public static final int abc_search_view=0x7f0b0019; + public static final int abc_select_dialog_material=0x7f0b001a; + public static final int abc_tooltip=0x7f0b001b; + public static final int activity_app=0x7f0b001c; + public static final int design_bottom_navigation_item=0x7f0b001d; + public static final int design_bottom_sheet_dialog=0x7f0b001e; + public static final int design_layout_snackbar=0x7f0b001f; + public static final int design_layout_snackbar_include=0x7f0b0020; + public static final int design_layout_tab_icon=0x7f0b0021; + public static final int design_layout_tab_text=0x7f0b0022; + public static final int design_menu_item_action_area=0x7f0b0023; + public static final int design_navigation_item=0x7f0b0024; + public static final int design_navigation_item_header=0x7f0b0025; + public static final int design_navigation_item_separator=0x7f0b0026; + public static final int design_navigation_item_subheader=0x7f0b0027; + public static final int design_navigation_menu=0x7f0b0028; + public static final int design_navigation_menu_item=0x7f0b0029; + public static final int design_text_input_password_icon=0x7f0b002a; + public static final int mtrl_layout_snackbar=0x7f0b002b; + public static final int mtrl_layout_snackbar_include=0x7f0b002c; + public static final int notification_action=0x7f0b002d; + public static final int notification_action_tombstone=0x7f0b002e; + public static final int notification_media_action=0x7f0b002f; + public static final int notification_media_cancel_action=0x7f0b0030; + public static final int notification_template_big_media=0x7f0b0031; + public static final int notification_template_big_media_custom=0x7f0b0032; + public static final int notification_template_big_media_narrow=0x7f0b0033; + public static final int notification_template_big_media_narrow_custom=0x7f0b0034; + public static final int notification_template_custom_big=0x7f0b0035; + public static final int notification_template_icon_group=0x7f0b0036; + public static final int notification_template_lines_media=0x7f0b0037; + public static final int notification_template_media=0x7f0b0038; + public static final int notification_template_media_custom=0x7f0b0039; + public static final int notification_template_part_chronometer=0x7f0b003a; + public static final int notification_template_part_time=0x7f0b003b; + public static final int select_dialog_item_material=0x7f0b003c; + public static final int select_dialog_multichoice_material=0x7f0b003d; + public static final int select_dialog_singlechoice_material=0x7f0b003e; + public static final int support_simple_spinner_dropdown_item=0x7f0b003f; + } + public static final class raw { + public static final int my_ca=0x7f0c0000; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f0d0000; + public static final int abc_action_bar_up_description=0x7f0d0001; + public static final int abc_action_menu_overflow_description=0x7f0d0002; + public static final int abc_action_mode_done=0x7f0d0003; + public static final int abc_activity_chooser_view_see_all=0x7f0d0004; + public static final int abc_activitychooserview_choose_application=0x7f0d0005; + public static final int abc_capital_off=0x7f0d0006; + public static final int abc_capital_on=0x7f0d0007; + public static final int abc_font_family_body_1_material=0x7f0d0008; + public static final int abc_font_family_body_2_material=0x7f0d0009; + public static final int abc_font_family_button_material=0x7f0d000a; + public static final int abc_font_family_caption_material=0x7f0d000b; + public static final int abc_font_family_display_1_material=0x7f0d000c; + public static final int abc_font_family_display_2_material=0x7f0d000d; + public static final int abc_font_family_display_3_material=0x7f0d000e; + public static final int abc_font_family_display_4_material=0x7f0d000f; + public static final int abc_font_family_headline_material=0x7f0d0010; + public static final int abc_font_family_menu_material=0x7f0d0011; + public static final int abc_font_family_subhead_material=0x7f0d0012; + public static final int abc_font_family_title_material=0x7f0d0013; + public static final int abc_menu_alt_shortcut_label=0x7f0d0014; + public static final int abc_menu_ctrl_shortcut_label=0x7f0d0015; + public static final int abc_menu_delete_shortcut_label=0x7f0d0016; + public static final int abc_menu_enter_shortcut_label=0x7f0d0017; + public static final int abc_menu_function_shortcut_label=0x7f0d0018; + public static final int abc_menu_meta_shortcut_label=0x7f0d0019; + public static final int abc_menu_shift_shortcut_label=0x7f0d001a; + public static final int abc_menu_space_shortcut_label=0x7f0d001b; + public static final int abc_menu_sym_shortcut_label=0x7f0d001c; + public static final int abc_prepend_shortcut_label=0x7f0d001d; + public static final int abc_search_hint=0x7f0d001e; + public static final int abc_searchview_description_clear=0x7f0d001f; + public static final int abc_searchview_description_query=0x7f0d0020; + public static final int abc_searchview_description_search=0x7f0d0021; + public static final int abc_searchview_description_submit=0x7f0d0022; + public static final int abc_searchview_description_voice=0x7f0d0023; + public static final int abc_shareactionprovider_share_with=0x7f0d0024; + public static final int abc_shareactionprovider_share_with_application=0x7f0d0025; + public static final int abc_toolbar_collapse_description=0x7f0d0026; + public static final int app_name=0x7f0d0027; + public static final int appbar_scrolling_view_behavior=0x7f0d0028; + public static final int bottom_sheet_behavior=0x7f0d0029; + public static final int character_counter_content_description=0x7f0d002a; + public static final int character_counter_pattern=0x7f0d002b; + public static final int fab_transformation_scrim_behavior=0x7f0d002c; + public static final int fab_transformation_sheet_behavior=0x7f0d002d; + public static final int hello_world=0x7f0d002e; + public static final int hide_bottom_view_on_scroll_behavior=0x7f0d002f; + public static final int mtrl_chip_close_icon_content_description=0x7f0d0030; + public static final int password_toggle_content_description=0x7f0d0031; + public static final int path_password_eye=0x7f0d0032; + public static final int path_password_eye_mask_strike_through=0x7f0d0033; + public static final int path_password_eye_mask_visible=0x7f0d0034; + public static final int path_password_strike_through=0x7f0d0035; + public static final int search_menu_title=0x7f0d0036; + public static final int status_bar_notification_info_overflow=0x7f0d0037; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0e0000; + public static final int AlertDialog_AppCompat_Light=0x7f0e0001; + public static final int Animation_AppCompat_Dialog=0x7f0e0002; + public static final int Animation_AppCompat_DropDownUp=0x7f0e0003; + public static final int Animation_AppCompat_Tooltip=0x7f0e0004; + public static final int Animation_Design_BottomSheetDialog=0x7f0e0005; + public static final int AppBaseTheme=0x7f0e0006; + public static final int AppTheme=0x7f0e0007; + public static final int Base_AlertDialog_AppCompat=0x7f0e0008; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0e0009; + public static final int Base_Animation_AppCompat_Dialog=0x7f0e000a; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0e000b; + public static final int Base_Animation_AppCompat_Tooltip=0x7f0e000c; + public static final int Base_CardView=0x7f0e000d; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0e000e; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0e000f; + public static final int Base_TextAppearance_AppCompat=0x7f0e0010; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f0e0011; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f0e0012; + public static final int Base_TextAppearance_AppCompat_Button=0x7f0e0013; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f0e0014; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f0e0015; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f0e0016; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f0e0017; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f0e0018; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f0e0019; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0e001a; + public static final int Base_TextAppearance_AppCompat_Large=0x7f0e001b; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0e001c; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e001d; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e001e; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f0e001f; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0e0020; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f0e0021; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0e0022; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e0023; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0e0024; + public static final int Base_TextAppearance_AppCompat_Small=0x7f0e0025; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0e0026; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0e0027; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0e0028; + public static final int Base_TextAppearance_AppCompat_Title=0x7f0e0029; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0e002a; + public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0e002b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e002c; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e002d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e002e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e002f; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e0030; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e0031; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e0032; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0e0033; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e0034; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e0035; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e0036; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e0037; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e0038; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e0039; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e003a; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0e003b; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e003c; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e003d; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e003e; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e003f; + public static final int Base_Theme_AppCompat=0x7f0e0040; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0e0041; + public static final int Base_Theme_AppCompat_Dialog=0x7f0e0042; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0e0043; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0e0044; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0e0045; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0e0046; + public static final int Base_Theme_AppCompat_Light=0x7f0e0047; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0e0048; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0e0049; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0e004a; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0e004b; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e004c; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0e004d; + public static final int Base_Theme_MaterialComponents=0x7f0e004e; + public static final int Base_Theme_MaterialComponents_Bridge=0x7f0e004f; + public static final int Base_Theme_MaterialComponents_CompactMenu=0x7f0e0050; + public static final int Base_Theme_MaterialComponents_Dialog=0x7f0e0051; + public static final int Base_Theme_MaterialComponents_Dialog_Alert=0x7f0e0052; + public static final int Base_Theme_MaterialComponents_Dialog_FixedSize=0x7f0e0053; + public static final int Base_Theme_MaterialComponents_Dialog_MinWidth=0x7f0e0054; + public static final int Base_Theme_MaterialComponents_DialogWhenLarge=0x7f0e0055; + public static final int Base_Theme_MaterialComponents_Light=0x7f0e0056; + public static final int Base_Theme_MaterialComponents_Light_Bridge=0x7f0e0057; + public static final int Base_Theme_MaterialComponents_Light_DarkActionBar=0x7f0e0058; + public static final int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0e0059; + public static final int Base_Theme_MaterialComponents_Light_Dialog=0x7f0e005a; + public static final int Base_Theme_MaterialComponents_Light_Dialog_Alert=0x7f0e005b; + public static final int Base_Theme_MaterialComponents_Light_Dialog_FixedSize=0x7f0e005c; + public static final int Base_Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f0e005d; + public static final int Base_Theme_MaterialComponents_Light_DialogWhenLarge=0x7f0e005e; + public static final int Base_ThemeOverlay_AppCompat=0x7f0e005f; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0e0060; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0e0061; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e0062; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0e0063; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e0064; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0e0065; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog=0x7f0e0066; + public static final int Base_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0e0067; + public static final int Base_V14_Theme_MaterialComponents=0x7f0e0068; + public static final int Base_V14_Theme_MaterialComponents_Bridge=0x7f0e0069; + public static final int Base_V14_Theme_MaterialComponents_Dialog=0x7f0e006a; + public static final int Base_V14_Theme_MaterialComponents_Light=0x7f0e006b; + public static final int Base_V14_Theme_MaterialComponents_Light_Bridge=0x7f0e006c; + public static final int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0e006d; + public static final int Base_V14_Theme_MaterialComponents_Light_Dialog=0x7f0e006e; + public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog=0x7f0e006f; + public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0e0070; + public static final int Base_V21_Theme_AppCompat=0x7f0e0071; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0e0072; + public static final int Base_V21_Theme_AppCompat_Light=0x7f0e0073; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0e0074; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0e0075; + public static final int Base_V22_Theme_AppCompat=0x7f0e0076; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0e0077; + public static final int Base_V23_Theme_AppCompat=0x7f0e0078; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0e0079; + public static final int Base_V26_Theme_AppCompat=0x7f0e007a; + public static final int Base_V26_Theme_AppCompat_Light=0x7f0e007b; + public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0e007c; + public static final int Base_V28_Theme_AppCompat=0x7f0e007d; + public static final int Base_V28_Theme_AppCompat_Light=0x7f0e007e; + public static final int Base_V7_Theme_AppCompat=0x7f0e007f; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0e0080; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0e0081; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0e0082; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0e0083; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0e0084; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0e0085; + public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0e0086; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0e0087; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0e0088; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0e0089; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0e008a; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0e008b; + public static final int Base_Widget_AppCompat_ActionButton=0x7f0e008c; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0e008d; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0e008e; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0e008f; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0e0090; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0e0091; + public static final int Base_Widget_AppCompat_Button=0x7f0e0092; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0e0093; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0e0094; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e0095; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0e0096; + public static final int Base_Widget_AppCompat_Button_Small=0x7f0e0097; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f0e0098; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e0099; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0e009a; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0e009b; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0e009c; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0e009d; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0e009e; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0e009f; + public static final int Base_Widget_AppCompat_EditText=0x7f0e00a0; + public static final int Base_Widget_AppCompat_ImageButton=0x7f0e00a1; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0e00a2; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0e00a3; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e00a4; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0e00a5; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e00a6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0e00a7; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0e00a8; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e00a9; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0e00aa; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0e00ab; + public static final int Base_Widget_AppCompat_ListView=0x7f0e00ac; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0e00ad; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0e00ae; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f0e00af; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0e00b0; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0e00b1; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f0e00b2; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0e00b3; + public static final int Base_Widget_AppCompat_RatingBar=0x7f0e00b4; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0e00b5; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0e00b6; + public static final int Base_Widget_AppCompat_SearchView=0x7f0e00b7; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0e00b8; + public static final int Base_Widget_AppCompat_SeekBar=0x7f0e00b9; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0e00ba; + public static final int Base_Widget_AppCompat_Spinner=0x7f0e00bb; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0e00bc; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0e00bd; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0e00be; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e00bf; + public static final int Base_Widget_Design_TabLayout=0x7f0e00c0; + public static final int Base_Widget_MaterialComponents_Chip=0x7f0e00c1; + public static final int Base_Widget_MaterialComponents_TextInputEditText=0x7f0e00c2; + public static final int Base_Widget_MaterialComponents_TextInputLayout=0x7f0e00c3; + public static final int CardView=0x7f0e00c4; + public static final int CardView_Dark=0x7f0e00c5; + public static final int CardView_Light=0x7f0e00c6; + public static final int Platform_AppCompat=0x7f0e00c7; + public static final int Platform_AppCompat_Light=0x7f0e00c8; + public static final int Platform_MaterialComponents=0x7f0e00c9; + public static final int Platform_MaterialComponents_Dialog=0x7f0e00ca; + public static final int Platform_MaterialComponents_Light=0x7f0e00cb; + public static final int Platform_MaterialComponents_Light_Dialog=0x7f0e00cc; + public static final int Platform_ThemeOverlay_AppCompat=0x7f0e00cd; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0e00ce; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0e00cf; + public static final int Platform_V21_AppCompat=0x7f0e00d0; + public static final int Platform_V21_AppCompat_Light=0x7f0e00d1; + public static final int Platform_V25_AppCompat=0x7f0e00d2; + public static final int Platform_V25_AppCompat_Light=0x7f0e00d3; + public static final int Platform_Widget_AppCompat_Spinner=0x7f0e00d4; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0e00d5; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0e00d6; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0e00d7; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0e00d8; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0e00d9; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut=0x7f0e00da; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow=0x7f0e00db; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0e00dc; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title=0x7f0e00dd; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0e00de; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0e00df; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0e00e0; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0e00e1; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0e00e2; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0e00e3; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0e00e4; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0e00e5; + public static final int TextAppearance_AppCompat=0x7f0e00e6; + public static final int TextAppearance_AppCompat_Body1=0x7f0e00e7; + public static final int TextAppearance_AppCompat_Body2=0x7f0e00e8; + public static final int TextAppearance_AppCompat_Button=0x7f0e00e9; + public static final int TextAppearance_AppCompat_Caption=0x7f0e00ea; + public static final int TextAppearance_AppCompat_Display1=0x7f0e00eb; + public static final int TextAppearance_AppCompat_Display2=0x7f0e00ec; + public static final int TextAppearance_AppCompat_Display3=0x7f0e00ed; + public static final int TextAppearance_AppCompat_Display4=0x7f0e00ee; + public static final int TextAppearance_AppCompat_Headline=0x7f0e00ef; + public static final int TextAppearance_AppCompat_Inverse=0x7f0e00f0; + public static final int TextAppearance_AppCompat_Large=0x7f0e00f1; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0e00f2; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0e00f3; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0e00f4; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e00f5; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e00f6; + public static final int TextAppearance_AppCompat_Medium=0x7f0e00f7; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0e00f8; + public static final int TextAppearance_AppCompat_Menu=0x7f0e00f9; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e00fa; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0e00fb; + public static final int TextAppearance_AppCompat_Small=0x7f0e00fc; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0e00fd; + public static final int TextAppearance_AppCompat_Subhead=0x7f0e00fe; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0e00ff; + public static final int TextAppearance_AppCompat_Title=0x7f0e0100; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0e0101; + public static final int TextAppearance_AppCompat_Tooltip=0x7f0e0102; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e0103; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e0104; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e0105; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e0106; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e0107; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e0108; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0e0109; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e010a; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0e010b; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f0e010c; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e010d; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e010e; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e010f; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e0110; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e0111; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e0112; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e0113; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0e0114; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e0115; + public static final int TextAppearance_Compat_Notification=0x7f0e0116; + public static final int TextAppearance_Compat_Notification_Info=0x7f0e0117; + public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0e0118; + public static final int TextAppearance_Compat_Notification_Line2=0x7f0e0119; + public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0e011a; + public static final int TextAppearance_Compat_Notification_Media=0x7f0e011b; + public static final int TextAppearance_Compat_Notification_Time=0x7f0e011c; + public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0e011d; + public static final int TextAppearance_Compat_Notification_Title=0x7f0e011e; + public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0e011f; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0e0120; + public static final int TextAppearance_Design_Counter=0x7f0e0121; + public static final int TextAppearance_Design_Counter_Overflow=0x7f0e0122; + public static final int TextAppearance_Design_Error=0x7f0e0123; + public static final int TextAppearance_Design_HelperText=0x7f0e0124; + public static final int TextAppearance_Design_Hint=0x7f0e0125; + public static final int TextAppearance_Design_Snackbar_Message=0x7f0e0126; + public static final int TextAppearance_Design_Tab=0x7f0e0127; + public static final int TextAppearance_MaterialComponents_Body1=0x7f0e0128; + public static final int TextAppearance_MaterialComponents_Body2=0x7f0e0129; + public static final int TextAppearance_MaterialComponents_Button=0x7f0e012a; + public static final int TextAppearance_MaterialComponents_Caption=0x7f0e012b; + public static final int TextAppearance_MaterialComponents_Chip=0x7f0e012c; + public static final int TextAppearance_MaterialComponents_Headline1=0x7f0e012d; + public static final int TextAppearance_MaterialComponents_Headline2=0x7f0e012e; + public static final int TextAppearance_MaterialComponents_Headline3=0x7f0e012f; + public static final int TextAppearance_MaterialComponents_Headline4=0x7f0e0130; + public static final int TextAppearance_MaterialComponents_Headline5=0x7f0e0131; + public static final int TextAppearance_MaterialComponents_Headline6=0x7f0e0132; + public static final int TextAppearance_MaterialComponents_Overline=0x7f0e0133; + public static final int TextAppearance_MaterialComponents_Subtitle1=0x7f0e0134; + public static final int TextAppearance_MaterialComponents_Subtitle2=0x7f0e0135; + public static final int TextAppearance_MaterialComponents_Tab=0x7f0e0136; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e0137; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e0138; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e0139; + public static final int Theme_AppCompat=0x7f0e013a; + public static final int Theme_AppCompat_CompactMenu=0x7f0e013b; + public static final int Theme_AppCompat_DayNight=0x7f0e013c; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0e013d; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f0e013e; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0e013f; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0e0140; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0e0141; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0e0142; + public static final int Theme_AppCompat_Dialog=0x7f0e0143; + public static final int Theme_AppCompat_Dialog_Alert=0x7f0e0144; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0e0145; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f0e0146; + public static final int Theme_AppCompat_Light=0x7f0e0147; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0e0148; + public static final int Theme_AppCompat_Light_Dialog=0x7f0e0149; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0e014a; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e014b; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0e014c; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f0e014d; + public static final int Theme_AppCompat_NoActionBar=0x7f0e014e; + public static final int Theme_Design=0x7f0e014f; + public static final int Theme_Design_BottomSheetDialog=0x7f0e0150; + public static final int Theme_Design_Light=0x7f0e0151; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f0e0152; + public static final int Theme_Design_Light_NoActionBar=0x7f0e0153; + public static final int Theme_Design_NoActionBar=0x7f0e0154; + public static final int Theme_MaterialComponents=0x7f0e0155; + public static final int Theme_MaterialComponents_BottomSheetDialog=0x7f0e0156; + public static final int Theme_MaterialComponents_Bridge=0x7f0e0157; + public static final int Theme_MaterialComponents_CompactMenu=0x7f0e0158; + public static final int Theme_MaterialComponents_Dialog=0x7f0e0159; + public static final int Theme_MaterialComponents_Dialog_Alert=0x7f0e015a; + public static final int Theme_MaterialComponents_Dialog_MinWidth=0x7f0e015b; + public static final int Theme_MaterialComponents_DialogWhenLarge=0x7f0e015c; + public static final int Theme_MaterialComponents_Light=0x7f0e015d; + public static final int Theme_MaterialComponents_Light_BottomSheetDialog=0x7f0e015e; + public static final int Theme_MaterialComponents_Light_Bridge=0x7f0e015f; + public static final int Theme_MaterialComponents_Light_DarkActionBar=0x7f0e0160; + public static final int Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0e0161; + public static final int Theme_MaterialComponents_Light_Dialog=0x7f0e0162; + public static final int Theme_MaterialComponents_Light_Dialog_Alert=0x7f0e0163; + public static final int Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f0e0164; + public static final int Theme_MaterialComponents_Light_DialogWhenLarge=0x7f0e0165; + public static final int Theme_MaterialComponents_Light_NoActionBar=0x7f0e0166; + public static final int Theme_MaterialComponents_Light_NoActionBar_Bridge=0x7f0e0167; + public static final int Theme_MaterialComponents_NoActionBar=0x7f0e0168; + public static final int Theme_MaterialComponents_NoActionBar_Bridge=0x7f0e0169; + public static final int ThemeOverlay_AppCompat=0x7f0e016a; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0e016b; + public static final int ThemeOverlay_AppCompat_Dark=0x7f0e016c; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e016d; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f0e016e; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e016f; + public static final int ThemeOverlay_AppCompat_Light=0x7f0e0170; + public static final int ThemeOverlay_MaterialComponents=0x7f0e0171; + public static final int ThemeOverlay_MaterialComponents_ActionBar=0x7f0e0172; + public static final int ThemeOverlay_MaterialComponents_Dark=0x7f0e0173; + public static final int ThemeOverlay_MaterialComponents_Dark_ActionBar=0x7f0e0174; + public static final int ThemeOverlay_MaterialComponents_Dialog=0x7f0e0175; + public static final int ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0e0176; + public static final int ThemeOverlay_MaterialComponents_Light=0x7f0e0177; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText=0x7f0e0178; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox=0x7f0e0179; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0e017a; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0e017b; + public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0e017c; + public static final int Widget_AppCompat_ActionBar=0x7f0e017d; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f0e017e; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0e017f; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f0e0180; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f0e0181; + public static final int Widget_AppCompat_ActionButton=0x7f0e0182; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0e0183; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0e0184; + public static final int Widget_AppCompat_ActionMode=0x7f0e0185; + public static final int Widget_AppCompat_ActivityChooserView=0x7f0e0186; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0e0187; + public static final int Widget_AppCompat_Button=0x7f0e0188; + public static final int Widget_AppCompat_Button_Borderless=0x7f0e0189; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0e018a; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e018b; + public static final int Widget_AppCompat_Button_Colored=0x7f0e018c; + public static final int Widget_AppCompat_Button_Small=0x7f0e018d; + public static final int Widget_AppCompat_ButtonBar=0x7f0e018e; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e018f; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0e0190; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0e0191; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0e0192; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0e0193; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0e0194; + public static final int Widget_AppCompat_EditText=0x7f0e0195; + public static final int Widget_AppCompat_ImageButton=0x7f0e0196; + public static final int Widget_AppCompat_Light_ActionBar=0x7f0e0197; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0e0198; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0e0199; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e019a; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0e019b; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0e019c; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e019d; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0e019e; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0e019f; + public static final int Widget_AppCompat_Light_ActionButton=0x7f0e01a0; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0e01a1; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0e01a2; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0e01a3; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0e01a4; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0e01a5; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0e01a6; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0e01a7; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0e01a8; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f0e01a9; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e01aa; + public static final int Widget_AppCompat_Light_SearchView=0x7f0e01ab; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0e01ac; + public static final int Widget_AppCompat_ListMenuView=0x7f0e01ad; + public static final int Widget_AppCompat_ListPopupWindow=0x7f0e01ae; + public static final int Widget_AppCompat_ListView=0x7f0e01af; + public static final int Widget_AppCompat_ListView_DropDown=0x7f0e01b0; + public static final int Widget_AppCompat_ListView_Menu=0x7f0e01b1; + public static final int Widget_AppCompat_PopupMenu=0x7f0e01b2; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0e01b3; + public static final int Widget_AppCompat_PopupWindow=0x7f0e01b4; + public static final int Widget_AppCompat_ProgressBar=0x7f0e01b5; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0e01b6; + public static final int Widget_AppCompat_RatingBar=0x7f0e01b7; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0e01b8; + public static final int Widget_AppCompat_RatingBar_Small=0x7f0e01b9; + public static final int Widget_AppCompat_SearchView=0x7f0e01ba; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0e01bb; + public static final int Widget_AppCompat_SeekBar=0x7f0e01bc; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0e01bd; + public static final int Widget_AppCompat_Spinner=0x7f0e01be; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f0e01bf; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0e01c0; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f0e01c1; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0e01c2; + public static final int Widget_AppCompat_Toolbar=0x7f0e01c3; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e01c4; + public static final int Widget_Compat_NotificationActionContainer=0x7f0e01c5; + public static final int Widget_Compat_NotificationActionText=0x7f0e01c6; + public static final int Widget_Design_AppBarLayout=0x7f0e01c7; + public static final int Widget_Design_BottomNavigationView=0x7f0e01c8; + public static final int Widget_Design_BottomSheet_Modal=0x7f0e01c9; + public static final int Widget_Design_CollapsingToolbar=0x7f0e01ca; + public static final int Widget_Design_FloatingActionButton=0x7f0e01cb; + public static final int Widget_Design_NavigationView=0x7f0e01cc; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0e01cd; + public static final int Widget_Design_Snackbar=0x7f0e01ce; + public static final int Widget_Design_TabLayout=0x7f0e01cf; + public static final int Widget_Design_TextInputLayout=0x7f0e01d0; + public static final int Widget_MaterialComponents_BottomAppBar=0x7f0e01d1; + public static final int Widget_MaterialComponents_BottomAppBar_Colored=0x7f0e01d2; + public static final int Widget_MaterialComponents_BottomNavigationView=0x7f0e01d3; + public static final int Widget_MaterialComponents_BottomNavigationView_Colored=0x7f0e01d4; + public static final int Widget_MaterialComponents_BottomSheet_Modal=0x7f0e01d5; + public static final int Widget_MaterialComponents_Button=0x7f0e01d6; + public static final int Widget_MaterialComponents_Button_Icon=0x7f0e01d7; + public static final int Widget_MaterialComponents_Button_OutlinedButton=0x7f0e01d8; + public static final int Widget_MaterialComponents_Button_OutlinedButton_Icon=0x7f0e01d9; + public static final int Widget_MaterialComponents_Button_TextButton=0x7f0e01da; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog=0x7f0e01db; + public static final int Widget_MaterialComponents_Button_TextButton_Dialog_Icon=0x7f0e01dc; + public static final int Widget_MaterialComponents_Button_TextButton_Icon=0x7f0e01dd; + public static final int Widget_MaterialComponents_Button_UnelevatedButton=0x7f0e01de; + public static final int Widget_MaterialComponents_Button_UnelevatedButton_Icon=0x7f0e01df; + public static final int Widget_MaterialComponents_CardView=0x7f0e01e0; + public static final int Widget_MaterialComponents_Chip_Action=0x7f0e01e1; + public static final int Widget_MaterialComponents_Chip_Choice=0x7f0e01e2; + public static final int Widget_MaterialComponents_Chip_Entry=0x7f0e01e3; + public static final int Widget_MaterialComponents_Chip_Filter=0x7f0e01e4; + public static final int Widget_MaterialComponents_ChipGroup=0x7f0e01e5; + public static final int Widget_MaterialComponents_FloatingActionButton=0x7f0e01e6; + public static final int Widget_MaterialComponents_NavigationView=0x7f0e01e7; + public static final int Widget_MaterialComponents_Snackbar=0x7f0e01e8; + public static final int Widget_MaterialComponents_Snackbar_FullWidth=0x7f0e01e9; + public static final int Widget_MaterialComponents_TabLayout=0x7f0e01ea; + public static final int Widget_MaterialComponents_TabLayout_Colored=0x7f0e01eb; + public static final int Widget_MaterialComponents_TextInputEditText_FilledBox=0x7f0e01ec; + public static final int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0e01ed; + public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0e01ee; + public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0e01ef; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox=0x7f0e01f0; + public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense=0x7f0e01f1; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox=0x7f0e01f2; + public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense=0x7f0e01f3; + public static final int Widget_MaterialComponents_Toolbar=0x7f0e01f4; + public static final int Widget_Support_CoordinatorLayout=0x7f0e01f5; + } + public static final class styleable { + /** + * Attributes that can be used with a ActionBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ActionBar_background org.muctec.smartfritz:background}Specifies a background drawable for the action bar.
{@link #ActionBar_backgroundSplit org.muctec.smartfritz:backgroundSplit}Specifies a background drawable for the bottom component of a split action bar.
{@link #ActionBar_backgroundStacked org.muctec.smartfritz:backgroundStacked}Specifies a background drawable for a second stacked row of the action bar.
{@link #ActionBar_contentInsetEnd org.muctec.smartfritz:contentInsetEnd}Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetEndWithActions org.muctec.smartfritz:contentInsetEndWithActions}Minimum inset for content views within a bar when actions from a menu + * are present.
{@link #ActionBar_contentInsetLeft org.muctec.smartfritz:contentInsetLeft}Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetRight org.muctec.smartfritz:contentInsetRight}Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetStart org.muctec.smartfritz:contentInsetStart}Minimum inset for content views within a bar.
{@link #ActionBar_contentInsetStartWithNavigation org.muctec.smartfritz:contentInsetStartWithNavigation}Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button.
{@link #ActionBar_customNavigationLayout org.muctec.smartfritz:customNavigationLayout}Specifies a layout for custom navigation.
{@link #ActionBar_displayOptions org.muctec.smartfritz:displayOptions}Options affecting how the action bar is displayed.
{@link #ActionBar_divider org.muctec.smartfritz:divider}Specifies the drawable used for item dividers.
{@link #ActionBar_elevation org.muctec.smartfritz:elevation}Elevation for the action bar itself
{@link #ActionBar_height org.muctec.smartfritz:height}
{@link #ActionBar_hideOnContentScroll org.muctec.smartfritz:hideOnContentScroll}Set true to hide the action bar on a vertical nested scroll of content.
{@link #ActionBar_homeAsUpIndicator org.muctec.smartfritz:homeAsUpIndicator}Specifies a drawable to use for the 'home as up' indicator.
{@link #ActionBar_homeLayout org.muctec.smartfritz:homeLayout}Specifies a layout to use for the "home" section of the action bar.
{@link #ActionBar_icon org.muctec.smartfritz:icon}
{@link #ActionBar_indeterminateProgressStyle org.muctec.smartfritz:indeterminateProgressStyle}Specifies a style resource to use for an indeterminate progress spinner.
{@link #ActionBar_itemPadding org.muctec.smartfritz:itemPadding}Specifies padding that should be applied to the left and right sides of + * system-provided items in the bar.
{@link #ActionBar_logo org.muctec.smartfritz:logo}Specifies the drawable used for the application logo.
{@link #ActionBar_navigationMode org.muctec.smartfritz:navigationMode}The type of navigation to use.
{@link #ActionBar_popupTheme org.muctec.smartfritz:popupTheme}Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar.
{@link #ActionBar_progressBarPadding org.muctec.smartfritz:progressBarPadding}Specifies the horizontal padding on either end for an embedded progress bar.
{@link #ActionBar_progressBarStyle org.muctec.smartfritz:progressBarStyle}Specifies a style resource to use for an embedded progress bar.
{@link #ActionBar_subtitle org.muctec.smartfritz:subtitle}Specifies subtitle text used for navigationMode="normal"
{@link #ActionBar_subtitleTextStyle org.muctec.smartfritz:subtitleTextStyle}Specifies a style to use for subtitle text.
{@link #ActionBar_title org.muctec.smartfritz:title}
{@link #ActionBar_titleTextStyle org.muctec.smartfritz:titleTextStyle}Specifies a style to use for title text.
+ * @see #ActionBar_background + * @see #ActionBar_backgroundSplit + * @see #ActionBar_backgroundStacked + * @see #ActionBar_contentInsetEnd + * @see #ActionBar_contentInsetEndWithActions + * @see #ActionBar_contentInsetLeft + * @see #ActionBar_contentInsetRight + * @see #ActionBar_contentInsetStart + * @see #ActionBar_contentInsetStartWithNavigation + * @see #ActionBar_customNavigationLayout + * @see #ActionBar_displayOptions + * @see #ActionBar_divider + * @see #ActionBar_elevation + * @see #ActionBar_height + * @see #ActionBar_hideOnContentScroll + * @see #ActionBar_homeAsUpIndicator + * @see #ActionBar_homeLayout + * @see #ActionBar_icon + * @see #ActionBar_indeterminateProgressStyle + * @see #ActionBar_itemPadding + * @see #ActionBar_logo + * @see #ActionBar_navigationMode + * @see #ActionBar_popupTheme + * @see #ActionBar_progressBarPadding + * @see #ActionBar_progressBarStyle + * @see #ActionBar_subtitle + * @see #ActionBar_subtitleTextStyle + * @see #ActionBar_title + * @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar={ + 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030091, + 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, + 0x7f030096, 0x7f0300a4, 0x7f0300a9, 0x7f0300aa, + 0x7f0300b5, 0x7f0300df, 0x7f0300e4, 0x7f0300e9, + 0x7f0300ea, 0x7f0300ec, 0x7f0300f6, 0x7f030100, + 0x7f030123, 0x7f03012f, 0x7f030140, 0x7f030144, + 0x7f030145, 0x7f030173, 0x7f030176, 0x7f0301bb, + 0x7f0301c5 + }; + /** + *

+ * @attr description + * Specifies a background drawable for the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:background + */ + public static final int ActionBar_background=0; + /** + *

+ * @attr description + * Specifies a background drawable for the bottom component of a split action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundSplit + */ + public static final int ActionBar_backgroundSplit=1; + /** + *

+ * @attr description + * Specifies a background drawable for a second stacked row of the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundStacked + */ + public static final int ActionBar_backgroundStacked=2; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd=3; + /** + *

+ * @attr description + * Minimum inset for content views within a bar when actions from a menu + * are present. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions=4; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft=5; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetRight + */ + public static final int ActionBar_contentInsetRight=6; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetStart + */ + public static final int ActionBar_contentInsetStart=7; + /** + *

+ * @attr description + * Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation=8; + /** + *

+ * @attr description + * Specifies a layout for custom navigation. Overrides navigationMode. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout=9; + /** + *

+ * @attr description + * Options affecting how the action bar is displayed. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
+ * + * @attr name org.muctec.smartfritz:displayOptions + */ + public static final int ActionBar_displayOptions=10; + /** + *

+ * @attr description + * Specifies the drawable used for item dividers. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:divider + */ + public static final int ActionBar_divider=11; + /** + *

+ * @attr description + * Elevation for the action bar itself + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:elevation + */ + public static final int ActionBar_elevation=12; + /** + *

+ * @attr description + * Specifies a fixed height. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:height + */ + public static final int ActionBar_height=13; + /** + *

+ * @attr description + * Set true to hide the action bar on a vertical nested scroll of content. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll=14; + /** + *

+ * @attr description + * Up navigation glyph + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator=15; + /** + *

+ * @attr description + * Specifies a layout to use for the "home" section of the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:homeLayout + */ + public static final int ActionBar_homeLayout=16; + /** + *

+ * @attr description + * Specifies the drawable used for the application icon. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:icon + */ + public static final int ActionBar_icon=17; + /** + *

+ * @attr description + * Specifies a style resource to use for an indeterminate progress spinner. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle=18; + /** + *

+ * @attr description + * Specifies padding that should be applied to the left and right sides of + * system-provided items in the bar. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:itemPadding + */ + public static final int ActionBar_itemPadding=19; + /** + *

+ * @attr description + * Specifies the drawable used for the application logo. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:logo + */ + public static final int ActionBar_logo=20; + /** + *

+ * @attr description + * The type of navigation to use. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
listMode1The action bar will use a selection list for navigation.
normal0Normal static title text
tabMode2The action bar will use a series of horizontal tabs for navigation.
+ * + * @attr name org.muctec.smartfritz:navigationMode + */ + public static final int ActionBar_navigationMode=21; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:popupTheme + */ + public static final int ActionBar_popupTheme=22; + /** + *

+ * @attr description + * Specifies the horizontal padding on either end for an embedded progress bar. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:progressBarPadding + */ + public static final int ActionBar_progressBarPadding=23; + /** + *

+ * @attr description + * Specifies a style resource to use for an embedded progress bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:progressBarStyle + */ + public static final int ActionBar_progressBarStyle=24; + /** + *

+ * @attr description + * Specifies subtitle text used for navigationMode="normal" + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:subtitle + */ + public static final int ActionBar_subtitle=25; + /** + *

+ * @attr description + * Specifies a style to use for subtitle text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle=26; + /** + *

+ * @attr description + * Specifies title text used for navigationMode="normal" + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:title + */ + public static final int ActionBar_title=27; + /** + *

+ * @attr description + * Specifies a style to use for title text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:titleTextStyle + */ + public static final int ActionBar_titleTextStyle=28; + /** + * Attributes that can be used with a ActionBarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ * @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout={ + 0x010100b3 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #ActionBarLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity=0; + /** + * Attributes that can be used with a ActionMenuItemView. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ * @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView={ + 0x0101013f + }; + /** + *

This symbol is the offset where the {@link android.R.attr#minWidth} + * attribute's value can be found in the {@link #ActionMenuItemView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth=0; + public static final int[] ActionMenuView={ + }; + /** + * Attributes that can be used with a ActionMode. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ActionMode_background org.muctec.smartfritz:background}Specifies a background drawable for the action bar.
{@link #ActionMode_backgroundSplit org.muctec.smartfritz:backgroundSplit}Specifies a background drawable for the bottom component of a split action bar.
{@link #ActionMode_closeItemLayout org.muctec.smartfritz:closeItemLayout}Specifies a layout to use for the "close" item at the starting edge.
{@link #ActionMode_height org.muctec.smartfritz:height}
{@link #ActionMode_subtitleTextStyle org.muctec.smartfritz:subtitleTextStyle}Specifies a style to use for subtitle text.
{@link #ActionMode_titleTextStyle org.muctec.smartfritz:titleTextStyle}Specifies a style to use for title text.
+ * @see #ActionMode_background + * @see #ActionMode_backgroundSplit + * @see #ActionMode_closeItemLayout + * @see #ActionMode_height + * @see #ActionMode_subtitleTextStyle + * @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode={ + 0x7f030031, 0x7f030032, 0x7f03007e, 0x7f0300df, + 0x7f030176, 0x7f0301c5 + }; + /** + *

+ * @attr description + * Specifies a background for the action mode bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:background + */ + public static final int ActionMode_background=0; + /** + *

+ * @attr description + * Specifies a background for the split action mode bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundSplit + */ + public static final int ActionMode_backgroundSplit=1; + /** + *

+ * @attr description + * Specifies a layout to use for the "close" item at the starting edge. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:closeItemLayout + */ + public static final int ActionMode_closeItemLayout=2; + /** + *

+ * @attr description + * Specifies a fixed height for the action mode bar. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:height + */ + public static final int ActionMode_height=3; + /** + *

+ * @attr description + * Specifies a style to use for subtitle text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle=4; + /** + *

+ * @attr description + * Specifies a style to use for title text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:titleTextStyle + */ + public static final int ActionMode_titleTextStyle=5; + /** + * Attributes that can be used with a ActivityChooserView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable org.muctec.smartfritz:expandActivityOverflowButtonDrawable}The drawable to show in the button for expanding the activities overflow popup.
{@link #ActivityChooserView_initialActivityCount org.muctec.smartfritz:initialActivityCount}The maximal number of items initially shown in the activity list.
+ * @see #ActivityChooserView_expandActivityOverflowButtonDrawable + * @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView={ + 0x7f0300ba, 0x7f0300f7 + }; + /** + *

+ * @attr description + * The drawable to show in the button for expanding the activities overflow popup. + * Note: Clients would like to set this drawable + * as a clue about the action the chosen activity will perform. For + * example, if share activity is to be chosen the drawable should + * give a clue that sharing is to be performed. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; + /** + *

+ * @attr description + * The maximal number of items initially shown in the activity list. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount=1; + /** + * Attributes that can be used with a AlertDialog. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonIconDimen org.muctec.smartfritz:buttonIconDimen}
{@link #AlertDialog_buttonPanelSideLayout org.muctec.smartfritz:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout org.muctec.smartfritz:listItemLayout}
{@link #AlertDialog_listLayout org.muctec.smartfritz:listLayout}
{@link #AlertDialog_multiChoiceItemLayout org.muctec.smartfritz:multiChoiceItemLayout}
{@link #AlertDialog_showTitle org.muctec.smartfritz:showTitle}
{@link #AlertDialog_singleChoiceItemLayout org.muctec.smartfritz:singleChoiceItemLayout}
+ * @see #AlertDialog_android_layout + * @see #AlertDialog_buttonIconDimen + * @see #AlertDialog_buttonPanelSideLayout + * @see #AlertDialog_listItemLayout + * @see #AlertDialog_listLayout + * @see #AlertDialog_multiChoiceItemLayout + * @see #AlertDialog_showTitle + * @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog={ + 0x010100f2, 0x7f030052, 0x7f030053, 0x7f03011a, + 0x7f03011b, 0x7f03012c, 0x7f03015b, 0x7f03015c + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:layout + */ + public static final int AlertDialog_android_layout=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#buttonIconDimen} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:buttonIconDimen + */ + public static final int AlertDialog_buttonIconDimen=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#buttonPanelSideLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#listItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:listItemLayout + */ + public static final int AlertDialog_listItemLayout=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#listLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:listLayout + */ + public static final int AlertDialog_listLayout=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#multiChoiceItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#showTitle} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:showTitle + */ + public static final int AlertDialog_showTitle=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#singleChoiceItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout=7; + /** + * Attributes that can be used with a AnimatedStateListDrawableCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AnimatedStateListDrawableCompat_android_dither android:dither}
{@link #AnimatedStateListDrawableCompat_android_visible android:visible}
{@link #AnimatedStateListDrawableCompat_android_variablePadding android:variablePadding}
{@link #AnimatedStateListDrawableCompat_android_constantSize android:constantSize}
{@link #AnimatedStateListDrawableCompat_android_enterFadeDuration android:enterFadeDuration}
{@link #AnimatedStateListDrawableCompat_android_exitFadeDuration android:exitFadeDuration}
+ * @see #AnimatedStateListDrawableCompat_android_dither + * @see #AnimatedStateListDrawableCompat_android_visible + * @see #AnimatedStateListDrawableCompat_android_variablePadding + * @see #AnimatedStateListDrawableCompat_android_constantSize + * @see #AnimatedStateListDrawableCompat_android_enterFadeDuration + * @see #AnimatedStateListDrawableCompat_android_exitFadeDuration + */ + public static final int[] AnimatedStateListDrawableCompat={ + 0x0101011c, 0x01010194, 0x01010195, 0x01010196, + 0x0101030c, 0x0101030d + }; + /** + *

+ * @attr description + * Enables or disables dithering of the bitmap if the bitmap does not have the + * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + * an RGB 565 screen). + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:dither + */ + public static final int AnimatedStateListDrawableCompat_android_dither=0; + /** + *

+ * @attr description + * Indicates whether the drawable should be initially visible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int AnimatedStateListDrawableCompat_android_visible=1; + /** + *

+ * @attr description + * If true, allows the drawable's padding to change based on the + * current state that is selected. If false, the padding will + * stay the same (based on the maximum padding of all the states). + * Enabling this feature requires that the owner of the drawable + * deal with performing layout when the state changes, which is + * often not supported. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:variablePadding + */ + public static final int AnimatedStateListDrawableCompat_android_variablePadding=2; + /** + *

+ * @attr description + * If true, the drawable's reported internal size will remain + * constant as the state changes; the size is the maximum of all + * of the states. If false, the size will vary based on the + * current state. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:constantSize + */ + public static final int AnimatedStateListDrawableCompat_android_constantSize=3; + /** + *

+ * @attr description + * Amount of time (in milliseconds) to fade in a new state drawable. + * + *

May be an integer value, such as "100". + * + * @attr name android:enterFadeDuration + */ + public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration=4; + /** + *

+ * @attr description + * Amount of time (in milliseconds) to fade out an old state drawable. + * + *

May be an integer value, such as "100". + * + * @attr name android:exitFadeDuration + */ + public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration=5; + /** + * Attributes that can be used with a AnimatedStateListDrawableItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #AnimatedStateListDrawableItem_android_id android:id}
{@link #AnimatedStateListDrawableItem_android_drawable android:drawable}
+ * @see #AnimatedStateListDrawableItem_android_id + * @see #AnimatedStateListDrawableItem_android_drawable + */ + public static final int[] AnimatedStateListDrawableItem={ + 0x010100d0, 0x01010199 + }; + /** + *

+ * @attr description + * Keyframe identifier for use in specifying transitions. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int AnimatedStateListDrawableItem_android_id=0; + /** + *

+ * @attr description + * Reference to a drawable resource to use for the frame. If not + * given, the drawable must be defined by the first child tag. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:drawable + */ + public static final int AnimatedStateListDrawableItem_android_drawable=1; + /** + * Attributes that can be used with a AnimatedStateListDrawableTransition. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AnimatedStateListDrawableTransition_android_drawable android:drawable}
{@link #AnimatedStateListDrawableTransition_android_toId android:toId}
{@link #AnimatedStateListDrawableTransition_android_fromId android:fromId}
{@link #AnimatedStateListDrawableTransition_android_reversible android:reversible}
+ * @see #AnimatedStateListDrawableTransition_android_drawable + * @see #AnimatedStateListDrawableTransition_android_toId + * @see #AnimatedStateListDrawableTransition_android_fromId + * @see #AnimatedStateListDrawableTransition_android_reversible + */ + public static final int[] AnimatedStateListDrawableTransition={ + 0x01010199, 0x01010449, 0x0101044a, 0x0101044b + }; + /** + *

+ * @attr description + * Reference to a animation drawable resource to use for the frame. If not + * given, the animation drawable must be defined by the first child tag. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:drawable + */ + public static final int AnimatedStateListDrawableTransition_android_drawable=0; + /** + *

+ * @attr description + * Keyframe identifier for the ending state. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:toId + */ + public static final int AnimatedStateListDrawableTransition_android_toId=1; + /** + *

+ * @attr description + * Keyframe identifier for the starting state. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:fromId + */ + public static final int AnimatedStateListDrawableTransition_android_fromId=2; + /** + *

+ * @attr description + * Whether this transition is reversible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:reversible + */ + public static final int AnimatedStateListDrawableTransition_android_reversible=3; + /** + * Attributes that can be used with a AppBarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}
{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}
{@link #AppBarLayout_elevation org.muctec.smartfritz:elevation}Elevation for the action bar itself
{@link #AppBarLayout_expanded org.muctec.smartfritz:expanded}
{@link #AppBarLayout_liftOnScroll org.muctec.smartfritz:liftOnScroll}
+ * @see #AppBarLayout_android_background + * @see #AppBarLayout_android_touchscreenBlocksFocus + * @see #AppBarLayout_android_keyboardNavigationCluster + * @see #AppBarLayout_elevation + * @see #AppBarLayout_expanded + * @see #AppBarLayout_liftOnScroll + */ + public static final int[] AppBarLayout={ + 0x010100d4, 0x0101048f, 0x01010540, 0x7f0300b5, + 0x7f0300bb, 0x7f030115 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#background} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:background + */ + public static final int AppBarLayout_android_background=0; + /** + *

This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:touchscreenBlocksFocus + */ + public static final int AppBarLayout_android_touchscreenBlocksFocus=1; + /** + *

This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:keyboardNavigationCluster + */ + public static final int AppBarLayout_android_keyboardNavigationCluster=2; + /** + *

+ * @attr description + * Elevation for the action bar itself + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:elevation + */ + public static final int AppBarLayout_elevation=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expanded} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:expanded + */ + public static final int AppBarLayout_expanded=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#liftOnScroll} + * attribute's value can be found in the {@link #AppBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:liftOnScroll + */ + public static final int AppBarLayout_liftOnScroll=5; + /** + * Attributes that can be used with a AppBarLayoutStates. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppBarLayoutStates_state_collapsed org.muctec.smartfritz:state_collapsed}
{@link #AppBarLayoutStates_state_collapsible org.muctec.smartfritz:state_collapsible}
{@link #AppBarLayoutStates_state_liftable org.muctec.smartfritz:state_liftable}
{@link #AppBarLayoutStates_state_lifted org.muctec.smartfritz:state_lifted}
+ * @see #AppBarLayoutStates_state_collapsed + * @see #AppBarLayoutStates_state_collapsible + * @see #AppBarLayoutStates_state_liftable + * @see #AppBarLayoutStates_state_lifted + */ + public static final int[] AppBarLayoutStates={ + 0x7f030169, 0x7f03016a, 0x7f03016b, 0x7f03016c + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#state_collapsed} + * attribute's value can be found in the {@link #AppBarLayoutStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:state_collapsed + */ + public static final int AppBarLayoutStates_state_collapsed=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#state_collapsible} + * attribute's value can be found in the {@link #AppBarLayoutStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:state_collapsible + */ + public static final int AppBarLayoutStates_state_collapsible=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#state_liftable} + * attribute's value can be found in the {@link #AppBarLayoutStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:state_liftable + */ + public static final int AppBarLayoutStates_state_liftable=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#state_lifted} + * attribute's value can be found in the {@link #AppBarLayoutStates} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:state_lifted + */ + public static final int AppBarLayoutStates_state_lifted=3; + /** + * Attributes that can be used with a AppBarLayout_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #AppBarLayout_Layout_layout_scrollFlags org.muctec.smartfritz:layout_scrollFlags}
{@link #AppBarLayout_Layout_layout_scrollInterpolator org.muctec.smartfritz:layout_scrollInterpolator}
+ * @see #AppBarLayout_Layout_layout_scrollFlags + * @see #AppBarLayout_Layout_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_Layout={ + 0x7f030113, 0x7f030114 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#layout_scrollFlags} + * attribute's value can be found in the {@link #AppBarLayout_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
enterAlways4
enterAlwaysCollapsed8
exitUntilCollapsed2
scroll1
snap10
snapMargins20
+ * + * @attr name org.muctec.smartfritz:layout_scrollFlags + */ + public static final int AppBarLayout_Layout_layout_scrollFlags=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#layout_scrollInterpolator} + * attribute's value can be found in the {@link #AppBarLayout_Layout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:layout_scrollInterpolator + */ + public static final int AppBarLayout_Layout_layout_scrollInterpolator=1; + /** + * Attributes that can be used with a AppCompatImageView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat org.muctec.smartfritz:srcCompat}Sets a drawable as the content of this ImageView.
{@link #AppCompatImageView_tint org.muctec.smartfritz:tint}Tint to apply to the image source.
{@link #AppCompatImageView_tintMode org.muctec.smartfritz:tintMode}Blending mode used to apply the image source tint.
+ * @see #AppCompatImageView_android_src + * @see #AppCompatImageView_srcCompat + * @see #AppCompatImageView_tint + * @see #AppCompatImageView_tintMode + */ + public static final int[] AppCompatImageView={ + 0x01010119, 0x7f030166, 0x7f0301b9, 0x7f0301ba + }; + /** + *

This symbol is the offset where the {@link android.R.attr#src} + * attribute's value can be found in the {@link #AppCompatImageView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:src + */ + public static final int AppCompatImageView_android_src=0; + /** + *

+ * @attr description + * Sets a drawable as the content of this ImageView. Allows the use of vector drawable + * when running on older versions of the platform. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:srcCompat + */ + public static final int AppCompatImageView_srcCompat=1; + /** + *

+ * @attr description + * Tint to apply to the image source. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tint + */ + public static final int AppCompatImageView_tint=2; + /** + *

+ * @attr description + * Blending mode used to apply the image source tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:tintMode + */ + public static final int AppCompatImageView_tintMode=3; + /** + * Attributes that can be used with a AppCompatSeekBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark org.muctec.smartfritz:tickMark}Drawable displayed at each progress position on a seekbar.
{@link #AppCompatSeekBar_tickMarkTint org.muctec.smartfritz:tickMarkTint}Tint to apply to the tick mark drawable.
{@link #AppCompatSeekBar_tickMarkTintMode org.muctec.smartfritz:tickMarkTintMode}Blending mode used to apply the tick mark tint.
+ * @see #AppCompatSeekBar_android_thumb + * @see #AppCompatSeekBar_tickMark + * @see #AppCompatSeekBar_tickMarkTint + * @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar={ + 0x01010142, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#thumb} + * attribute's value can be found in the {@link #AppCompatSeekBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb=0; + /** + *

+ * @attr description + * Drawable displayed at each progress position on a seekbar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:tickMark + */ + public static final int AppCompatSeekBar_tickMark=1; + /** + *

+ * @attr description + * Tint to apply to the tick mark drawable. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint=2; + /** + *

+ * @attr description + * Blending mode used to apply the tick mark tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode=3; + /** + * Attributes that can be used with a AppCompatTextHelper. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
+ * @see #AppCompatTextHelper_android_textAppearance + * @see #AppCompatTextHelper_android_drawableTop + * @see #AppCompatTextHelper_android_drawableBottom + * @see #AppCompatTextHelper_android_drawableLeft + * @see #AppCompatTextHelper_android_drawableRight + * @see #AppCompatTextHelper_android_drawableStart + * @see #AppCompatTextHelper_android_drawableEnd + */ + public static final int[] AppCompatTextHelper={ + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableTop} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop=1; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableBottom} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom=2; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableLeft} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft=3; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableRight} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight=4; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableStart} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart=5; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableEnd} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd=6; + /** + * Attributes that can be used with a AppCompatTextView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_autoSizeMaxTextSize org.muctec.smartfritz:autoSizeMaxTextSize}The maximum text size constraint to be used when auto-sizing text.
{@link #AppCompatTextView_autoSizeMinTextSize org.muctec.smartfritz:autoSizeMinTextSize}The minimum text size constraint to be used when auto-sizing text.
{@link #AppCompatTextView_autoSizePresetSizes org.muctec.smartfritz:autoSizePresetSizes}Resource array of dimensions to be used in conjunction with + * autoSizeTextType set to uniform.
{@link #AppCompatTextView_autoSizeStepGranularity org.muctec.smartfritz:autoSizeStepGranularity}Specify the auto-size step size if autoSizeTextType is set to + * uniform.
{@link #AppCompatTextView_autoSizeTextType org.muctec.smartfritz:autoSizeTextType}Specify the type of auto-size.
{@link #AppCompatTextView_firstBaselineToTopHeight org.muctec.smartfritz:firstBaselineToTopHeight}Distance from the top of the TextView to the first text baseline.
{@link #AppCompatTextView_fontFamily org.muctec.smartfritz:fontFamily}The attribute for the font family.
{@link #AppCompatTextView_lastBaselineToBottomHeight org.muctec.smartfritz:lastBaselineToBottomHeight}Distance from the bottom of the TextView to the last text baseline.
{@link #AppCompatTextView_lineHeight org.muctec.smartfritz:lineHeight}Explicit height between lines of text.
{@link #AppCompatTextView_textAllCaps org.muctec.smartfritz:textAllCaps}Present the text in ALL CAPS.
+ * @see #AppCompatTextView_android_textAppearance + * @see #AppCompatTextView_autoSizeMaxTextSize + * @see #AppCompatTextView_autoSizeMinTextSize + * @see #AppCompatTextView_autoSizePresetSizes + * @see #AppCompatTextView_autoSizeStepGranularity + * @see #AppCompatTextView_autoSizeTextType + * @see #AppCompatTextView_firstBaselineToTopHeight + * @see #AppCompatTextView_fontFamily + * @see #AppCompatTextView_lastBaselineToBottomHeight + * @see #AppCompatTextView_lineHeight + * @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView={ + 0x01010034, 0x7f03002c, 0x7f03002d, 0x7f03002e, + 0x7f03002f, 0x7f030030, 0x7f0300ce, 0x7f0300d1, + 0x7f030108, 0x7f030116, 0x7f030196 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance=0; + /** + *

+ * @attr description + * The maximum text size constraint to be used when auto-sizing text. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:autoSizeMaxTextSize + */ + public static final int AppCompatTextView_autoSizeMaxTextSize=1; + /** + *

+ * @attr description + * The minimum text size constraint to be used when auto-sizing text. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:autoSizeMinTextSize + */ + public static final int AppCompatTextView_autoSizeMinTextSize=2; + /** + *

+ * @attr description + * Resource array of dimensions to be used in conjunction with + * autoSizeTextType set to uniform. Overrides + * autoSizeStepGranularity if set. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:autoSizePresetSizes + */ + public static final int AppCompatTextView_autoSizePresetSizes=3; + /** + *

+ * @attr description + * Specify the auto-size step size if autoSizeTextType is set to + * uniform. The default is 1px. Overwrites + * autoSizePresetSizes if set. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:autoSizeStepGranularity + */ + public static final int AppCompatTextView_autoSizeStepGranularity=4; + /** + *

+ * @attr description + * Specify the type of auto-size. Note that this feature is not supported by EditText, + * works only for TextView. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
none0No auto-sizing (default).
uniform1Uniform horizontal and vertical text size scaling to fit within the + * container.
+ * + * @attr name org.muctec.smartfritz:autoSizeTextType + */ + public static final int AppCompatTextView_autoSizeTextType=5; + /** + *

+ * @attr description + * Distance from the top of the TextView to the first text baseline. If set, this + * overrides the value set for paddingTop. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:firstBaselineToTopHeight + */ + public static final int AppCompatTextView_firstBaselineToTopHeight=6; + /** + *

+ * @attr description + * The attribute for the font family. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:fontFamily + */ + public static final int AppCompatTextView_fontFamily=7; + /** + *

+ * @attr description + * Distance from the bottom of the TextView to the last text baseline. If set, this + * overrides the value set for paddingBottom. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:lastBaselineToBottomHeight + */ + public static final int AppCompatTextView_lastBaselineToBottomHeight=8; + /** + *

+ * @attr description + * Explicit height between lines of text. If set, this will override the values set + * for lineSpacingExtra and lineSpacingMultiplier. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:lineHeight + */ + public static final int AppCompatTextView_lineHeight=9; + /** + *

+ * @attr description + * Present the text in ALL CAPS. This may use a small-caps form when available. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps=10; + /** + * Attributes that can be used with a AppCompatTheme. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_actionBarDivider org.muctec.smartfritz:actionBarDivider}Custom divider drawable to use for elements in the action bar.
{@link #AppCompatTheme_actionBarItemBackground org.muctec.smartfritz:actionBarItemBackground}Custom item state list drawable background for action bar items.
{@link #AppCompatTheme_actionBarPopupTheme org.muctec.smartfritz:actionBarPopupTheme}Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar.
{@link #AppCompatTheme_actionBarSize org.muctec.smartfritz:actionBarSize}Size of the Action Bar, including the contextual + * bar used to present Action Modes.
{@link #AppCompatTheme_actionBarSplitStyle org.muctec.smartfritz:actionBarSplitStyle}Reference to a style for the split Action Bar.
{@link #AppCompatTheme_actionBarStyle org.muctec.smartfritz:actionBarStyle}Reference to a style for the Action Bar
{@link #AppCompatTheme_actionBarTabBarStyle org.muctec.smartfritz:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle org.muctec.smartfritz:actionBarTabStyle}Default style for tabs within an action bar
{@link #AppCompatTheme_actionBarTabTextStyle org.muctec.smartfritz:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme org.muctec.smartfritz:actionBarTheme}Reference to a theme that should be used to inflate the + * action bar.
{@link #AppCompatTheme_actionBarWidgetTheme org.muctec.smartfritz:actionBarWidgetTheme}Reference to a theme that should be used to inflate widgets + * and layouts destined for the action bar.
{@link #AppCompatTheme_actionButtonStyle org.muctec.smartfritz:actionButtonStyle}Default action button style.
{@link #AppCompatTheme_actionDropDownStyle org.muctec.smartfritz:actionDropDownStyle}Default ActionBar dropdown style.
{@link #AppCompatTheme_actionMenuTextAppearance org.muctec.smartfritz:actionMenuTextAppearance}TextAppearance style that will be applied to text that + * appears within action menu items.
{@link #AppCompatTheme_actionMenuTextColor org.muctec.smartfritz:actionMenuTextColor}Color for text that appears within action menu items.
{@link #AppCompatTheme_actionModeBackground org.muctec.smartfritz:actionModeBackground}Background drawable to use for action mode UI
{@link #AppCompatTheme_actionModeCloseButtonStyle org.muctec.smartfritz:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable org.muctec.smartfritz:actionModeCloseDrawable}Drawable to use for the close action mode button
{@link #AppCompatTheme_actionModeCopyDrawable org.muctec.smartfritz:actionModeCopyDrawable}Drawable to use for the Copy action button in Contextual Action Bar
{@link #AppCompatTheme_actionModeCutDrawable org.muctec.smartfritz:actionModeCutDrawable}Drawable to use for the Cut action button in Contextual Action Bar
{@link #AppCompatTheme_actionModeFindDrawable org.muctec.smartfritz:actionModeFindDrawable}Drawable to use for the Find action button in WebView selection action modes
{@link #AppCompatTheme_actionModePasteDrawable org.muctec.smartfritz:actionModePasteDrawable}Drawable to use for the Paste action button in Contextual Action Bar
{@link #AppCompatTheme_actionModePopupWindowStyle org.muctec.smartfritz:actionModePopupWindowStyle}PopupWindow style to use for action modes when showing as a window overlay.
{@link #AppCompatTheme_actionModeSelectAllDrawable org.muctec.smartfritz:actionModeSelectAllDrawable}Drawable to use for the Select all action button in Contextual Action Bar
{@link #AppCompatTheme_actionModeShareDrawable org.muctec.smartfritz:actionModeShareDrawable}Drawable to use for the Share action button in WebView selection action modes
{@link #AppCompatTheme_actionModeSplitBackground org.muctec.smartfritz:actionModeSplitBackground}Background drawable to use for action mode UI in the lower split bar
{@link #AppCompatTheme_actionModeStyle org.muctec.smartfritz:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable org.muctec.smartfritz:actionModeWebSearchDrawable}Drawable to use for the Web Search action button in WebView selection action modes
{@link #AppCompatTheme_actionOverflowButtonStyle org.muctec.smartfritz:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle org.muctec.smartfritz:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle org.muctec.smartfritz:activityChooserViewStyle}Default ActivityChooserView style.
{@link #AppCompatTheme_alertDialogButtonGroupStyle org.muctec.smartfritz:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons org.muctec.smartfritz:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle org.muctec.smartfritz:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme org.muctec.smartfritz:alertDialogTheme}Theme to use for alert dialogs spawned from this theme.
{@link #AppCompatTheme_autoCompleteTextViewStyle org.muctec.smartfritz:autoCompleteTextViewStyle}Default AutoCompleteTextView style.
{@link #AppCompatTheme_borderlessButtonStyle org.muctec.smartfritz:borderlessButtonStyle}Style for buttons without an explicit border, often used in groups.
{@link #AppCompatTheme_buttonBarButtonStyle org.muctec.smartfritz:buttonBarButtonStyle}Style for buttons within button bars
{@link #AppCompatTheme_buttonBarNegativeButtonStyle org.muctec.smartfritz:buttonBarNegativeButtonStyle}Style for the "negative" buttons within button bars
{@link #AppCompatTheme_buttonBarNeutralButtonStyle org.muctec.smartfritz:buttonBarNeutralButtonStyle}Style for the "neutral" buttons within button bars
{@link #AppCompatTheme_buttonBarPositiveButtonStyle org.muctec.smartfritz:buttonBarPositiveButtonStyle}Style for the "positive" buttons within button bars
{@link #AppCompatTheme_buttonBarStyle org.muctec.smartfritz:buttonBarStyle}Style for button bars
{@link #AppCompatTheme_buttonStyle org.muctec.smartfritz:buttonStyle}Normal Button style.
{@link #AppCompatTheme_buttonStyleSmall org.muctec.smartfritz:buttonStyleSmall}Small Button style.
{@link #AppCompatTheme_checkboxStyle org.muctec.smartfritz:checkboxStyle}Default Checkbox style.
{@link #AppCompatTheme_checkedTextViewStyle org.muctec.smartfritz:checkedTextViewStyle}Default CheckedTextView style.
{@link #AppCompatTheme_colorAccent org.muctec.smartfritz:colorAccent}Bright complement to the primary branding color.
{@link #AppCompatTheme_colorBackgroundFloating org.muctec.smartfritz:colorBackgroundFloating}Default color of background imagery for floating components, ex.
{@link #AppCompatTheme_colorButtonNormal org.muctec.smartfritz:colorButtonNormal}The color applied to framework buttons in their normal state.
{@link #AppCompatTheme_colorControlActivated org.muctec.smartfritz:colorControlActivated}The color applied to framework controls in their activated (ex.
{@link #AppCompatTheme_colorControlHighlight org.muctec.smartfritz:colorControlHighlight}The color applied to framework control highlights (ex.
{@link #AppCompatTheme_colorControlNormal org.muctec.smartfritz:colorControlNormal}The color applied to framework controls in their normal state.
{@link #AppCompatTheme_colorError org.muctec.smartfritz:colorError}Color used for error states and things that need to be drawn to + * the user's attention.
{@link #AppCompatTheme_colorPrimary org.muctec.smartfritz:colorPrimary}The primary branding color for the app.
{@link #AppCompatTheme_colorPrimaryDark org.muctec.smartfritz:colorPrimaryDark}Dark variant of the primary branding color.
{@link #AppCompatTheme_colorSwitchThumbNormal org.muctec.smartfritz:colorSwitchThumbNormal}The color applied to framework switch thumbs in their normal state.
{@link #AppCompatTheme_controlBackground org.muctec.smartfritz:controlBackground}The background used by framework controls.
{@link #AppCompatTheme_dialogCornerRadius org.muctec.smartfritz:dialogCornerRadius}Preferred corner radius of dialogs.
{@link #AppCompatTheme_dialogPreferredPadding org.muctec.smartfritz:dialogPreferredPadding}Preferred padding for dialog content.
{@link #AppCompatTheme_dialogTheme org.muctec.smartfritz:dialogTheme}Theme to use for dialogs spawned from this theme.
{@link #AppCompatTheme_dividerHorizontal org.muctec.smartfritz:dividerHorizontal}A drawable that may be used as a horizontal divider between visual elements.
{@link #AppCompatTheme_dividerVertical org.muctec.smartfritz:dividerVertical}A drawable that may be used as a vertical divider between visual elements.
{@link #AppCompatTheme_dropDownListViewStyle org.muctec.smartfritz:dropDownListViewStyle}ListPopupWindow compatibility
{@link #AppCompatTheme_dropdownListPreferredItemHeight org.muctec.smartfritz:dropdownListPreferredItemHeight}The preferred item height for dropdown lists.
{@link #AppCompatTheme_editTextBackground org.muctec.smartfritz:editTextBackground}EditText background drawable.
{@link #AppCompatTheme_editTextColor org.muctec.smartfritz:editTextColor}EditText text foreground color.
{@link #AppCompatTheme_editTextStyle org.muctec.smartfritz:editTextStyle}Default EditText style.
{@link #AppCompatTheme_homeAsUpIndicator org.muctec.smartfritz:homeAsUpIndicator}Specifies a drawable to use for the 'home as up' indicator.
{@link #AppCompatTheme_imageButtonStyle org.muctec.smartfritz:imageButtonStyle}ImageButton background drawable.
{@link #AppCompatTheme_listChoiceBackgroundIndicator org.muctec.smartfritz:listChoiceBackgroundIndicator}Drawable used as a background for selected list items.
{@link #AppCompatTheme_listDividerAlertDialog org.muctec.smartfritz:listDividerAlertDialog}The list divider used in alert dialogs.
{@link #AppCompatTheme_listMenuViewStyle org.muctec.smartfritz:listMenuViewStyle}Default menu-style ListView style.
{@link #AppCompatTheme_listPopupWindowStyle org.muctec.smartfritz:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight org.muctec.smartfritz:listPreferredItemHeight}The preferred list item height.
{@link #AppCompatTheme_listPreferredItemHeightLarge org.muctec.smartfritz:listPreferredItemHeightLarge}A larger, more robust list item height.
{@link #AppCompatTheme_listPreferredItemHeightSmall org.muctec.smartfritz:listPreferredItemHeightSmall}A smaller, sleeker list item height.
{@link #AppCompatTheme_listPreferredItemPaddingLeft org.muctec.smartfritz:listPreferredItemPaddingLeft}The preferred padding along the left edge of list items.
{@link #AppCompatTheme_listPreferredItemPaddingRight org.muctec.smartfritz:listPreferredItemPaddingRight}The preferred padding along the right edge of list items.
{@link #AppCompatTheme_panelBackground org.muctec.smartfritz:panelBackground}The background of a panel when it is inset from the left and right edges of the screen.
{@link #AppCompatTheme_panelMenuListTheme org.muctec.smartfritz:panelMenuListTheme}Default Panel Menu style.
{@link #AppCompatTheme_panelMenuListWidth org.muctec.smartfritz:panelMenuListWidth}Default Panel Menu width.
{@link #AppCompatTheme_popupMenuStyle org.muctec.smartfritz:popupMenuStyle}Default PopupMenu style.
{@link #AppCompatTheme_popupWindowStyle org.muctec.smartfritz:popupWindowStyle}Default PopupWindow style.
{@link #AppCompatTheme_radioButtonStyle org.muctec.smartfritz:radioButtonStyle}Default RadioButton style.
{@link #AppCompatTheme_ratingBarStyle org.muctec.smartfritz:ratingBarStyle}Default RatingBar style.
{@link #AppCompatTheme_ratingBarStyleIndicator org.muctec.smartfritz:ratingBarStyleIndicator}Indicator RatingBar style.
{@link #AppCompatTheme_ratingBarStyleSmall org.muctec.smartfritz:ratingBarStyleSmall}Small indicator RatingBar style.
{@link #AppCompatTheme_searchViewStyle org.muctec.smartfritz:searchViewStyle}Style for the search query widget.
{@link #AppCompatTheme_seekBarStyle org.muctec.smartfritz:seekBarStyle}Default SeekBar style.
{@link #AppCompatTheme_selectableItemBackground org.muctec.smartfritz:selectableItemBackground}A style that may be applied to buttons or other selectable items + * that should react to pressed and focus states, but that do not + * have a clear visual border along the edges.
{@link #AppCompatTheme_selectableItemBackgroundBorderless org.muctec.smartfritz:selectableItemBackgroundBorderless}Background drawable for borderless standalone items that need focus/pressed states.
{@link #AppCompatTheme_spinnerDropDownItemStyle org.muctec.smartfritz:spinnerDropDownItemStyle}Default Spinner style.
{@link #AppCompatTheme_spinnerStyle org.muctec.smartfritz:spinnerStyle}Default Spinner style.
{@link #AppCompatTheme_switchStyle org.muctec.smartfritz:switchStyle}Default style for the Switch widget.
{@link #AppCompatTheme_textAppearanceLargePopupMenu org.muctec.smartfritz:textAppearanceLargePopupMenu}Text color, typeface, size, and style for the text inside of a popup menu.
{@link #AppCompatTheme_textAppearanceListItem org.muctec.smartfritz:textAppearanceListItem}The preferred TextAppearance for the primary text of list items.
{@link #AppCompatTheme_textAppearanceListItemSecondary org.muctec.smartfritz:textAppearanceListItemSecondary}The preferred TextAppearance for the secondary text of list items.
{@link #AppCompatTheme_textAppearanceListItemSmall org.muctec.smartfritz:textAppearanceListItemSmall}The preferred TextAppearance for the primary text of small list items.
{@link #AppCompatTheme_textAppearancePopupMenuHeader org.muctec.smartfritz:textAppearancePopupMenuHeader}Text color, typeface, size, and style for header text inside of a popup menu.
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle org.muctec.smartfritz:textAppearanceSearchResultSubtitle}Text color, typeface, size, and style for system search result subtitle.
{@link #AppCompatTheme_textAppearanceSearchResultTitle org.muctec.smartfritz:textAppearanceSearchResultTitle}Text color, typeface, size, and style for system search result title.
{@link #AppCompatTheme_textAppearanceSmallPopupMenu org.muctec.smartfritz:textAppearanceSmallPopupMenu}Text color, typeface, size, and style for small text inside of a popup menu.
{@link #AppCompatTheme_textColorAlertDialogListItem org.muctec.smartfritz:textColorAlertDialogListItem}Color of list item text in alert dialogs.
{@link #AppCompatTheme_textColorSearchUrl org.muctec.smartfritz:textColorSearchUrl}Text color for urls in search suggestions, used by things like global search
{@link #AppCompatTheme_toolbarNavigationButtonStyle org.muctec.smartfritz:toolbarNavigationButtonStyle}Default Toolar NavigationButtonStyle
{@link #AppCompatTheme_toolbarStyle org.muctec.smartfritz:toolbarStyle}Default Toolbar style.
{@link #AppCompatTheme_tooltipForegroundColor org.muctec.smartfritz:tooltipForegroundColor}Foreground color to use for tooltips
{@link #AppCompatTheme_tooltipFrameBackground org.muctec.smartfritz:tooltipFrameBackground}Background to use for tooltips
{@link #AppCompatTheme_viewInflaterClass org.muctec.smartfritz:viewInflaterClass}
{@link #AppCompatTheme_windowActionBar org.muctec.smartfritz:windowActionBar}Flag indicating whether this window should have an Action Bar + * in place of the usual title bar.
{@link #AppCompatTheme_windowActionBarOverlay org.muctec.smartfritz:windowActionBarOverlay}Flag indicating whether this window's Action Bar should overlay + * application content.
{@link #AppCompatTheme_windowActionModeOverlay org.muctec.smartfritz:windowActionModeOverlay}Flag indicating whether action modes should overlay window content + * when there is not reserved space for their UI (such as an Action Bar).
{@link #AppCompatTheme_windowFixedHeightMajor org.muctec.smartfritz:windowFixedHeightMajor}A fixed height for the window along the major axis of the screen, + * that is, when in portrait.
{@link #AppCompatTheme_windowFixedHeightMinor org.muctec.smartfritz:windowFixedHeightMinor}A fixed height for the window along the minor axis of the screen, + * that is, when in landscape.
{@link #AppCompatTheme_windowFixedWidthMajor org.muctec.smartfritz:windowFixedWidthMajor}A fixed width for the window along the major axis of the screen, + * that is, when in landscape.
{@link #AppCompatTheme_windowFixedWidthMinor org.muctec.smartfritz:windowFixedWidthMinor}A fixed width for the window along the minor axis of the screen, + * that is, when in portrait.
{@link #AppCompatTheme_windowMinWidthMajor org.muctec.smartfritz:windowMinWidthMajor}The minimum width the window is allowed to be, along the major + * axis of the screen.
{@link #AppCompatTheme_windowMinWidthMinor org.muctec.smartfritz:windowMinWidthMinor}The minimum width the window is allowed to be, along the minor + * axis of the screen.
{@link #AppCompatTheme_windowNoTitle org.muctec.smartfritz:windowNoTitle}Flag indicating whether there should be no title on this window.
+ * @see #AppCompatTheme_android_windowIsFloating + * @see #AppCompatTheme_android_windowAnimationStyle + * @see #AppCompatTheme_actionBarDivider + * @see #AppCompatTheme_actionBarItemBackground + * @see #AppCompatTheme_actionBarPopupTheme + * @see #AppCompatTheme_actionBarSize + * @see #AppCompatTheme_actionBarSplitStyle + * @see #AppCompatTheme_actionBarStyle + * @see #AppCompatTheme_actionBarTabBarStyle + * @see #AppCompatTheme_actionBarTabStyle + * @see #AppCompatTheme_actionBarTabTextStyle + * @see #AppCompatTheme_actionBarTheme + * @see #AppCompatTheme_actionBarWidgetTheme + * @see #AppCompatTheme_actionButtonStyle + * @see #AppCompatTheme_actionDropDownStyle + * @see #AppCompatTheme_actionMenuTextAppearance + * @see #AppCompatTheme_actionMenuTextColor + * @see #AppCompatTheme_actionModeBackground + * @see #AppCompatTheme_actionModeCloseButtonStyle + * @see #AppCompatTheme_actionModeCloseDrawable + * @see #AppCompatTheme_actionModeCopyDrawable + * @see #AppCompatTheme_actionModeCutDrawable + * @see #AppCompatTheme_actionModeFindDrawable + * @see #AppCompatTheme_actionModePasteDrawable + * @see #AppCompatTheme_actionModePopupWindowStyle + * @see #AppCompatTheme_actionModeSelectAllDrawable + * @see #AppCompatTheme_actionModeShareDrawable + * @see #AppCompatTheme_actionModeSplitBackground + * @see #AppCompatTheme_actionModeStyle + * @see #AppCompatTheme_actionModeWebSearchDrawable + * @see #AppCompatTheme_actionOverflowButtonStyle + * @see #AppCompatTheme_actionOverflowMenuStyle + * @see #AppCompatTheme_activityChooserViewStyle + * @see #AppCompatTheme_alertDialogButtonGroupStyle + * @see #AppCompatTheme_alertDialogCenterButtons + * @see #AppCompatTheme_alertDialogStyle + * @see #AppCompatTheme_alertDialogTheme + * @see #AppCompatTheme_autoCompleteTextViewStyle + * @see #AppCompatTheme_borderlessButtonStyle + * @see #AppCompatTheme_buttonBarButtonStyle + * @see #AppCompatTheme_buttonBarNegativeButtonStyle + * @see #AppCompatTheme_buttonBarNeutralButtonStyle + * @see #AppCompatTheme_buttonBarPositiveButtonStyle + * @see #AppCompatTheme_buttonBarStyle + * @see #AppCompatTheme_buttonStyle + * @see #AppCompatTheme_buttonStyleSmall + * @see #AppCompatTheme_checkboxStyle + * @see #AppCompatTheme_checkedTextViewStyle + * @see #AppCompatTheme_colorAccent + * @see #AppCompatTheme_colorBackgroundFloating + * @see #AppCompatTheme_colorButtonNormal + * @see #AppCompatTheme_colorControlActivated + * @see #AppCompatTheme_colorControlHighlight + * @see #AppCompatTheme_colorControlNormal + * @see #AppCompatTheme_colorError + * @see #AppCompatTheme_colorPrimary + * @see #AppCompatTheme_colorPrimaryDark + * @see #AppCompatTheme_colorSwitchThumbNormal + * @see #AppCompatTheme_controlBackground + * @see #AppCompatTheme_dialogCornerRadius + * @see #AppCompatTheme_dialogPreferredPadding + * @see #AppCompatTheme_dialogTheme + * @see #AppCompatTheme_dividerHorizontal + * @see #AppCompatTheme_dividerVertical + * @see #AppCompatTheme_dropDownListViewStyle + * @see #AppCompatTheme_dropdownListPreferredItemHeight + * @see #AppCompatTheme_editTextBackground + * @see #AppCompatTheme_editTextColor + * @see #AppCompatTheme_editTextStyle + * @see #AppCompatTheme_homeAsUpIndicator + * @see #AppCompatTheme_imageButtonStyle + * @see #AppCompatTheme_listChoiceBackgroundIndicator + * @see #AppCompatTheme_listDividerAlertDialog + * @see #AppCompatTheme_listMenuViewStyle + * @see #AppCompatTheme_listPopupWindowStyle + * @see #AppCompatTheme_listPreferredItemHeight + * @see #AppCompatTheme_listPreferredItemHeightLarge + * @see #AppCompatTheme_listPreferredItemHeightSmall + * @see #AppCompatTheme_listPreferredItemPaddingLeft + * @see #AppCompatTheme_listPreferredItemPaddingRight + * @see #AppCompatTheme_panelBackground + * @see #AppCompatTheme_panelMenuListTheme + * @see #AppCompatTheme_panelMenuListWidth + * @see #AppCompatTheme_popupMenuStyle + * @see #AppCompatTheme_popupWindowStyle + * @see #AppCompatTheme_radioButtonStyle + * @see #AppCompatTheme_ratingBarStyle + * @see #AppCompatTheme_ratingBarStyleIndicator + * @see #AppCompatTheme_ratingBarStyleSmall + * @see #AppCompatTheme_searchViewStyle + * @see #AppCompatTheme_seekBarStyle + * @see #AppCompatTheme_selectableItemBackground + * @see #AppCompatTheme_selectableItemBackgroundBorderless + * @see #AppCompatTheme_spinnerDropDownItemStyle + * @see #AppCompatTheme_spinnerStyle + * @see #AppCompatTheme_switchStyle + * @see #AppCompatTheme_textAppearanceLargePopupMenu + * @see #AppCompatTheme_textAppearanceListItem + * @see #AppCompatTheme_textAppearanceListItemSecondary + * @see #AppCompatTheme_textAppearanceListItemSmall + * @see #AppCompatTheme_textAppearancePopupMenuHeader + * @see #AppCompatTheme_textAppearanceSearchResultSubtitle + * @see #AppCompatTheme_textAppearanceSearchResultTitle + * @see #AppCompatTheme_textAppearanceSmallPopupMenu + * @see #AppCompatTheme_textColorAlertDialogListItem + * @see #AppCompatTheme_textColorSearchUrl + * @see #AppCompatTheme_toolbarNavigationButtonStyle + * @see #AppCompatTheme_toolbarStyle + * @see #AppCompatTheme_tooltipForegroundColor + * @see #AppCompatTheme_tooltipFrameBackground + * @see #AppCompatTheme_viewInflaterClass + * @see #AppCompatTheme_windowActionBar + * @see #AppCompatTheme_windowActionBarOverlay + * @see #AppCompatTheme_windowActionModeOverlay + * @see #AppCompatTheme_windowFixedHeightMajor + * @see #AppCompatTheme_windowFixedHeightMinor + * @see #AppCompatTheme_windowFixedWidthMajor + * @see #AppCompatTheme_windowFixedWidthMinor + * @see #AppCompatTheme_windowMinWidthMajor + * @see #AppCompatTheme_windowMinWidthMinor + * @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme={ + 0x01010057, 0x010100ae, 0x7f030000, 0x7f030001, + 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, + 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, + 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, + 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, + 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, + 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, + 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, + 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, + 0x7f030025, 0x7f03002b, 0x7f03003e, 0x7f03004c, + 0x7f03004d, 0x7f03004e, 0x7f03004f, 0x7f030050, + 0x7f030054, 0x7f030055, 0x7f03005f, 0x7f030064, + 0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087, + 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, + 0x7f03008c, 0x7f03008e, 0x7f03009d, 0x7f0300a6, + 0x7f0300a7, 0x7f0300a8, 0x7f0300ab, 0x7f0300ad, + 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3, + 0x7f0300b4, 0x7f0300e9, 0x7f0300f5, 0x7f030118, + 0x7f030119, 0x7f03011c, 0x7f03011d, 0x7f03011e, + 0x7f03011f, 0x7f030120, 0x7f030121, 0x7f030122, + 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013f, + 0x7f030141, 0x7f030148, 0x7f030149, 0x7f03014a, + 0x7f03014b, 0x7f030153, 0x7f030154, 0x7f030155, + 0x7f030156, 0x7f030163, 0x7f030164, 0x7f03017a, + 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, + 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, + 0x7f0301ac, 0x7f0301ad, 0x7f0301c7, 0x7f0301c8, + 0x7f0301c9, 0x7f0301ca, 0x7f0301d1, 0x7f0301d3, + 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, + 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, + 0x7f0301dc + }; + /** + *

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating=0; + /** + *

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle=1; + /** + *

+ * @attr description + * Custom divider drawable to use for elements in the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider=2; + /** + *

+ * @attr description + * Custom item state list drawable background for action bar items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground=3; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme=4; + /** + *

+ * @attr description + * Size of the Action Bar, including the contextual + * bar used to present Action Modes. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrap_content0
+ * + * @attr name org.muctec.smartfritz:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize=5; + /** + *

+ * @attr description + * Reference to a style for the split Action Bar. This style + * controls the split component that holds the menu/action + * buttons. actionBarStyle is still used for the primary + * bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle=6; + /** + *

+ * @attr description + * Reference to a style for the Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#actionBarTabBarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle=8; + /** + *

+ * @attr description + * Default style for tabs within an action bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#actionBarTabTextStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle=10; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate the + * action bar. This will be inherited by any widget inflated + * into the action bar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme=11; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate widgets + * and layouts destined for the action bar. Most of the time + * this will be a reference to the current theme, but when + * the action bar has a significantly different contrast + * profile than the rest of the activity the difference + * can become important. If this is set to @null the current + * theme will be used. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme=12; + /** + *

+ * @attr description + * Default action button style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle=13; + /** + *

+ * @attr description + * Default ActionBar dropdown style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle=14; + /** + *

+ * @attr description + * TextAppearance style that will be applied to text that + * appears within action menu items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance=15; + /** + *

+ * @attr description + * Color for text that appears within action menu items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor=16; + /** + *

+ * @attr description + * Background drawable to use for action mode UI + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground=17; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#actionModeCloseButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle=18; + /** + *

+ * @attr description + * Drawable to use for the close action mode button + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable=19; + /** + *

+ * @attr description + * Drawable to use for the Copy action button in Contextual Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable=20; + /** + *

+ * @attr description + * Drawable to use for the Cut action button in Contextual Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable=21; + /** + *

+ * @attr description + * Drawable to use for the Find action button in WebView selection action modes + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable=22; + /** + *

+ * @attr description + * Drawable to use for the Paste action button in Contextual Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable=23; + /** + *

+ * @attr description + * PopupWindow style to use for action modes when showing as a window overlay. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle=24; + /** + *

+ * @attr description + * Drawable to use for the Select all action button in Contextual Action Bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable=25; + /** + *

+ * @attr description + * Drawable to use for the Share action button in WebView selection action modes + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable=26; + /** + *

+ * @attr description + * Background drawable to use for action mode UI in the lower split bar + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground=27; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#actionModeStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle=28; + /** + *

+ * @attr description + * Drawable to use for the Web Search action button in WebView selection action modes + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable=29; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#actionOverflowButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle=30; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#actionOverflowMenuStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle=31; + /** + *

+ * @attr description + * Default ActivityChooserView style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle=32; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#alertDialogButtonGroupStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#alertDialogCenterButtons} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons=34; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#alertDialogStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle=35; + /** + *

+ * @attr description + * Theme to use for alert dialogs spawned from this theme. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme=36; + /** + *

+ * @attr description + * Default AutoCompleteTextView style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle=37; + /** + *

+ * @attr description + * Style for buttons without an explicit border, often used in groups. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle=38; + /** + *

+ * @attr description + * Style for buttons within button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle=39; + /** + *

+ * @attr description + * Style for the "negative" buttons within button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; + /** + *

+ * @attr description + * Style for the "neutral" buttons within button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; + /** + *

+ * @attr description + * Style for the "positive" buttons within button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; + /** + *

+ * @attr description + * Style for button bars + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle=43; + /** + *

+ * @attr description + * Normal Button style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle=44; + /** + *

+ * @attr description + * Small Button style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall=45; + /** + *

+ * @attr description + * Default Checkbox style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle=46; + /** + *

+ * @attr description + * Default CheckedTextView style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle=47; + /** + *

+ * @attr description + * Bright complement to the primary branding color. By default, this is the color applied + * to framework controls (via colorControlActivated). + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorAccent + */ + public static final int AppCompatTheme_colorAccent=48; + /** + *

+ * @attr description + * Default color of background imagery for floating components, ex. dialogs, popups, and cards. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating=49; + /** + *

+ * @attr description + * The color applied to framework buttons in their normal state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal=50; + /** + *

+ * @attr description + * The color applied to framework controls in their activated (ex. checked) state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated=51; + /** + *

+ * @attr description + * The color applied to framework control highlights (ex. ripples, list selectors). + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight=52; + /** + *

+ * @attr description + * The color applied to framework controls in their normal state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal=53; + /** + *

+ * @attr description + * Color used for error states and things that need to be drawn to + * the user's attention. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorError + */ + public static final int AppCompatTheme_colorError=54; + /** + *

+ * @attr description + * The primary branding color for the app. By default, this is the color applied to the + * action bar background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary=55; + /** + *

+ * @attr description + * Dark variant of the primary branding color. By default, this is the color applied to + * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark=56; + /** + *

+ * @attr description + * The color applied to framework switch thumbs in their normal state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal=57; + /** + *

+ * @attr description + * The background used by framework controls. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:controlBackground + */ + public static final int AppCompatTheme_controlBackground=58; + /** + *

+ * @attr description + * Preferred corner radius of dialogs. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:dialogCornerRadius + */ + public static final int AppCompatTheme_dialogCornerRadius=59; + /** + *

+ * @attr description + * Preferred padding for dialog content. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding=60; + /** + *

+ * @attr description + * Theme to use for dialogs spawned from this theme. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme=61; + /** + *

+ * @attr description + * A drawable that may be used as a horizontal divider between visual elements. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal=62; + /** + *

+ * @attr description + * A drawable that may be used as a vertical divider between visual elements. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical=63; + /** + *

+ * @attr description + * ListPopupWindow compatibility + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle=64; + /** + *

+ * @attr description + * The preferred item height for dropdown lists. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight=65; + /** + *

+ * @attr description + * EditText background drawable. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground=66; + /** + *

+ * @attr description + * EditText text foreground color. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:editTextColor + */ + public static final int AppCompatTheme_editTextColor=67; + /** + *

+ * @attr description + * Default EditText style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle=68; + /** + *

+ * @attr description + * Specifies a drawable to use for the 'home as up' indicator. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator=69; + /** + *

+ * @attr description + * ImageButton background drawable. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle=70; + /** + *

+ * @attr description + * Drawable used as a background for selected list items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator=71; + /** + *

+ * @attr description + * The list divider used in alert dialogs. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog=72; + /** + *

+ * @attr description + * Default menu-style ListView style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle=73; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#listPopupWindowStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle=74; + /** + *

+ * @attr description + * The preferred list item height. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight=75; + /** + *

+ * @attr description + * A larger, more robust list item height. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge=76; + /** + *

+ * @attr description + * A smaller, sleeker list item height. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall=77; + /** + *

+ * @attr description + * The preferred padding along the left edge of list items. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft=78; + /** + *

+ * @attr description + * The preferred padding along the right edge of list items. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight=79; + /** + *

+ * @attr description + * The background of a panel when it is inset from the left and right edges of the screen. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:panelBackground + */ + public static final int AppCompatTheme_panelBackground=80; + /** + *

+ * @attr description + * Default Panel Menu style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme=81; + /** + *

+ * @attr description + * Default Panel Menu width. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth=82; + /** + *

+ * @attr description + * Default PopupMenu style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle=83; + /** + *

+ * @attr description + * Default PopupWindow style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle=84; + /** + *

+ * @attr description + * Default RadioButton style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle=85; + /** + *

+ * @attr description + * Default RatingBar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle=86; + /** + *

+ * @attr description + * Indicator RatingBar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator=87; + /** + *

+ * @attr description + * Small indicator RatingBar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall=88; + /** + *

+ * @attr description + * Style for the search query widget. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle=89; + /** + *

+ * @attr description + * Default SeekBar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle=90; + /** + *

+ * @attr description + * A style that may be applied to buttons or other selectable items + * that should react to pressed and focus states, but that do not + * have a clear visual border along the edges. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground=91; + /** + *

+ * @attr description + * Background drawable for borderless standalone items that need focus/pressed states. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless=92; + /** + *

+ * @attr description + * Default Spinner style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle=93; + /** + *

+ * @attr description + * Default Spinner style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle=94; + /** + *

+ * @attr description + * Default style for the Switch widget. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:switchStyle + */ + public static final int AppCompatTheme_switchStyle=95; + /** + *

+ * @attr description + * Text color, typeface, size, and style for the text inside of a popup menu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu=96; + /** + *

+ * @attr description + * The preferred TextAppearance for the primary text of list items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem=97; + /** + *

+ * @attr description + * The preferred TextAppearance for the secondary text of list items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceListItemSecondary + */ + public static final int AppCompatTheme_textAppearanceListItemSecondary=98; + /** + *

+ * @attr description + * The preferred TextAppearance for the primary text of small list items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall=99; + /** + *

+ * @attr description + * Text color, typeface, size, and style for header text inside of a popup menu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader=100; + /** + *

+ * @attr description + * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=101; + /** + *

+ * @attr description + * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle=102; + /** + *

+ * @attr description + * Text color, typeface, size, and style for small text inside of a popup menu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu=103; + /** + *

+ * @attr description + * Color of list item text in alert dialogs. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem=104; + /** + *

+ * @attr description + * Text color for urls in search suggestions, used by things like global search + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl=105; + /** + *

+ * @attr description + * Default Toolar NavigationButtonStyle + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle=106; + /** + *

+ * @attr description + * Default Toolbar style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle=107; + /** + *

+ * @attr description + * Foreground color to use for tooltips + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tooltipForegroundColor + */ + public static final int AppCompatTheme_tooltipForegroundColor=108; + /** + *

+ * @attr description + * Background to use for tooltips + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:tooltipFrameBackground + */ + public static final int AppCompatTheme_tooltipFrameBackground=109; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#viewInflaterClass} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:viewInflaterClass + */ + public static final int AppCompatTheme_viewInflaterClass=110; + /** + *

+ * @attr description + * Flag indicating whether this window should have an Action Bar + * in place of the usual title bar. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar=111; + /** + *

+ * @attr description + * Flag indicating whether this window's Action Bar should overlay + * application content. Does nothing if the window would not + * have an Action Bar. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay=112; + /** + *

+ * @attr description + * Flag indicating whether action modes should overlay window content + * when there is not reserved space for their UI (such as an Action Bar). + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay=113; + /** + *

+ * @attr description + * A fixed height for the window along the major axis of the screen, + * that is, when in portrait. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor=114; + /** + *

+ * @attr description + * A fixed height for the window along the minor axis of the screen, + * that is, when in landscape. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor=115; + /** + *

+ * @attr description + * A fixed width for the window along the major axis of the screen, + * that is, when in landscape. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor=116; + /** + *

+ * @attr description + * A fixed width for the window along the minor axis of the screen, + * that is, when in portrait. Can be either an absolute dimension + * or a fraction of the screen size in that dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor=117; + /** + *

+ * @attr description + * The minimum width the window is allowed to be, along the major + * axis of the screen. That is, when in landscape. Can be either + * an absolute dimension or a fraction of the screen size in that + * dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor=118; + /** + *

+ * @attr description + * The minimum width the window is allowed to be, along the minor + * axis of the screen. That is, when in portrait. Can be either + * an absolute dimension or a fraction of the screen size in that + * dimension. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor=119; + /** + *

+ * @attr description + * Flag indicating whether there should be no title on this window. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle=120; + /** + * Attributes that can be used with a BottomAppBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #BottomAppBar_backgroundTint org.muctec.smartfritz:backgroundTint}Tint to apply to the background.
{@link #BottomAppBar_fabAlignmentMode org.muctec.smartfritz:fabAlignmentMode}
{@link #BottomAppBar_fabCradleMargin org.muctec.smartfritz:fabCradleMargin}
{@link #BottomAppBar_fabCradleRoundedCornerRadius org.muctec.smartfritz:fabCradleRoundedCornerRadius}
{@link #BottomAppBar_fabCradleVerticalOffset org.muctec.smartfritz:fabCradleVerticalOffset}
{@link #BottomAppBar_hideOnScroll org.muctec.smartfritz:hideOnScroll}
+ * @see #BottomAppBar_backgroundTint + * @see #BottomAppBar_fabAlignmentMode + * @see #BottomAppBar_fabCradleMargin + * @see #BottomAppBar_fabCradleRoundedCornerRadius + * @see #BottomAppBar_fabCradleVerticalOffset + * @see #BottomAppBar_hideOnScroll + */ + public static final int[] BottomAppBar={ + 0x7f030034, 0x7f0300c3, 0x7f0300c4, 0x7f0300c5, + 0x7f0300c6, 0x7f0300e5 + }; + /** + *

+ * @attr description + * Tint to apply to the background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundTint + */ + public static final int BottomAppBar_backgroundTint=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fabAlignmentMode} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
center0
end1
+ * + * @attr name org.muctec.smartfritz:fabAlignmentMode + */ + public static final int BottomAppBar_fabAlignmentMode=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fabCradleMargin} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:fabCradleMargin + */ + public static final int BottomAppBar_fabCradleMargin=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fabCradleRoundedCornerRadius} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:fabCradleRoundedCornerRadius + */ + public static final int BottomAppBar_fabCradleRoundedCornerRadius=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fabCradleVerticalOffset} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:fabCradleVerticalOffset + */ + public static final int BottomAppBar_fabCradleVerticalOffset=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hideOnScroll} + * attribute's value can be found in the {@link #BottomAppBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:hideOnScroll + */ + public static final int BottomAppBar_hideOnScroll=5; + /** + * Attributes that can be used with a BottomNavigationView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #BottomNavigationView_elevation org.muctec.smartfritz:elevation}Elevation for the action bar itself
{@link #BottomNavigationView_itemBackground org.muctec.smartfritz:itemBackground}
{@link #BottomNavigationView_itemHorizontalTranslationEnabled org.muctec.smartfritz:itemHorizontalTranslationEnabled}
{@link #BottomNavigationView_itemIconSize org.muctec.smartfritz:itemIconSize}
{@link #BottomNavigationView_itemIconTint org.muctec.smartfritz:itemIconTint}
{@link #BottomNavigationView_itemTextAppearanceActive org.muctec.smartfritz:itemTextAppearanceActive}
{@link #BottomNavigationView_itemTextAppearanceInactive org.muctec.smartfritz:itemTextAppearanceInactive}
{@link #BottomNavigationView_itemTextColor org.muctec.smartfritz:itemTextColor}
{@link #BottomNavigationView_labelVisibilityMode org.muctec.smartfritz:labelVisibilityMode}
{@link #BottomNavigationView_menu org.muctec.smartfritz:menu}
+ * @see #BottomNavigationView_elevation + * @see #BottomNavigationView_itemBackground + * @see #BottomNavigationView_itemHorizontalTranslationEnabled + * @see #BottomNavigationView_itemIconSize + * @see #BottomNavigationView_itemIconTint + * @see #BottomNavigationView_itemTextAppearanceActive + * @see #BottomNavigationView_itemTextAppearanceInactive + * @see #BottomNavigationView_itemTextColor + * @see #BottomNavigationView_labelVisibilityMode + * @see #BottomNavigationView_menu + */ + public static final int[] BottomNavigationView={ + 0x7f0300b5, 0x7f0300fa, 0x7f0300fc, 0x7f0300fe, + 0x7f0300ff, 0x7f030103, 0x7f030104, 0x7f030105, + 0x7f030107, 0x7f03012b + }; + /** + *

+ * @attr description + * Elevation for the action bar itself + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:elevation + */ + public static final int BottomNavigationView_elevation=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemBackground} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:itemBackground + */ + public static final int BottomNavigationView_itemBackground=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemHorizontalTranslationEnabled} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:itemHorizontalTranslationEnabled + */ + public static final int BottomNavigationView_itemHorizontalTranslationEnabled=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemIconSize} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:itemIconSize + */ + public static final int BottomNavigationView_itemIconSize=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemIconTint} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:itemIconTint + */ + public static final int BottomNavigationView_itemIconTint=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemTextAppearanceActive} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:itemTextAppearanceActive + */ + public static final int BottomNavigationView_itemTextAppearanceActive=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemTextAppearanceInactive} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:itemTextAppearanceInactive + */ + public static final int BottomNavigationView_itemTextAppearanceInactive=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemTextColor} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:itemTextColor + */ + public static final int BottomNavigationView_itemTextColor=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#labelVisibilityMode} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
labeled1
selected0
unlabeled2
+ * + * @attr name org.muctec.smartfritz:labelVisibilityMode + */ + public static final int BottomNavigationView_labelVisibilityMode=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#menu} + * attribute's value can be found in the {@link #BottomNavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:menu + */ + public static final int BottomNavigationView_menu=9; + /** + * Attributes that can be used with a BottomSheetBehavior_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #BottomSheetBehavior_Layout_behavior_fitToContents org.muctec.smartfritz:behavior_fitToContents}
{@link #BottomSheetBehavior_Layout_behavior_hideable org.muctec.smartfritz:behavior_hideable}
{@link #BottomSheetBehavior_Layout_behavior_peekHeight org.muctec.smartfritz:behavior_peekHeight}
{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed org.muctec.smartfritz:behavior_skipCollapsed}
+ * @see #BottomSheetBehavior_Layout_behavior_fitToContents + * @see #BottomSheetBehavior_Layout_behavior_hideable + * @see #BottomSheetBehavior_Layout_behavior_peekHeight + * @see #BottomSheetBehavior_Layout_behavior_skipCollapsed + */ + public static final int[] BottomSheetBehavior_Layout={ + 0x7f030038, 0x7f030039, 0x7f03003b, 0x7f03003c + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#behavior_fitToContents} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:behavior_fitToContents + */ + public static final int BottomSheetBehavior_Layout_behavior_fitToContents=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#behavior_hideable} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:behavior_hideable + */ + public static final int BottomSheetBehavior_Layout_behavior_hideable=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#behavior_peekHeight} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
+ * + * @attr name org.muctec.smartfritz:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Layout_behavior_peekHeight=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#behavior_skipCollapsed} + * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:behavior_skipCollapsed + */ + public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed=3; + /** + * Attributes that can be used with a ButtonBarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ButtonBarLayout_allowStacking org.muctec.smartfritz:allowStacking}Whether to automatically stack the buttons when there is not + * enough space to lay them out side-by-side.
+ * @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout={ + 0x7f030026 + }; + /** + *

+ * @attr description + * Whether to automatically stack the buttons when there is not + * enough space to lay them out side-by-side. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:allowStacking + */ + public static final int ButtonBarLayout_allowStacking=0; + /** + * Attributes that can be used with a CardView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #CardView_android_minWidth android:minWidth}
{@link #CardView_android_minHeight android:minHeight}
{@link #CardView_cardBackgroundColor org.muctec.smartfritz:cardBackgroundColor}Background color for CardView.
{@link #CardView_cardCornerRadius org.muctec.smartfritz:cardCornerRadius}Corner radius for CardView.
{@link #CardView_cardElevation org.muctec.smartfritz:cardElevation}Elevation for CardView.
{@link #CardView_cardMaxElevation org.muctec.smartfritz:cardMaxElevation}Maximum Elevation for CardView.
{@link #CardView_cardPreventCornerOverlap org.muctec.smartfritz:cardPreventCornerOverlap}Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners.
{@link #CardView_cardUseCompatPadding org.muctec.smartfritz:cardUseCompatPadding}Add padding in API v21+ as well to have the same measurements with previous versions.
{@link #CardView_contentPadding org.muctec.smartfritz:contentPadding}Inner padding between the edges of the Card and children of the CardView.
{@link #CardView_contentPaddingBottom org.muctec.smartfritz:contentPaddingBottom}Inner padding between the bottom edge of the Card and children of the CardView.
{@link #CardView_contentPaddingLeft org.muctec.smartfritz:contentPaddingLeft}Inner padding between the left edge of the Card and children of the CardView.
{@link #CardView_contentPaddingRight org.muctec.smartfritz:contentPaddingRight}Inner padding between the right edge of the Card and children of the CardView.
{@link #CardView_contentPaddingTop org.muctec.smartfritz:contentPaddingTop}Inner padding between the top edge of the Card and children of the CardView.
+ * @see #CardView_android_minWidth + * @see #CardView_android_minHeight + * @see #CardView_cardBackgroundColor + * @see #CardView_cardCornerRadius + * @see #CardView_cardElevation + * @see #CardView_cardMaxElevation + * @see #CardView_cardPreventCornerOverlap + * @see #CardView_cardUseCompatPadding + * @see #CardView_contentPadding + * @see #CardView_contentPaddingBottom + * @see #CardView_contentPaddingLeft + * @see #CardView_contentPaddingRight + * @see #CardView_contentPaddingTop + */ + public static final int[] CardView={ + 0x0101013f, 0x01010140, 0x7f030058, 0x7f030059, + 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, + 0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a, + 0x7f03009b + }; + /** + *

+ * @attr description + * Workaround to read user defined minimum width + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int CardView_android_minWidth=0; + /** + *

+ * @attr description + * Workaround to read user defined minimum height + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int CardView_android_minHeight=1; + /** + *

+ * @attr description + * Background color for CardView. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:cardBackgroundColor + */ + public static final int CardView_cardBackgroundColor=2; + /** + *

+ * @attr description + * Corner radius for CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:cardCornerRadius + */ + public static final int CardView_cardCornerRadius=3; + /** + *

+ * @attr description + * Elevation for CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:cardElevation + */ + public static final int CardView_cardElevation=4; + /** + *

+ * @attr description + * Maximum Elevation for CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:cardMaxElevation + */ + public static final int CardView_cardMaxElevation=5; + /** + *

+ * @attr description + * Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:cardPreventCornerOverlap + */ + public static final int CardView_cardPreventCornerOverlap=6; + /** + *

+ * @attr description + * Add padding in API v21+ as well to have the same measurements with previous versions. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:cardUseCompatPadding + */ + public static final int CardView_cardUseCompatPadding=7; + /** + *

+ * @attr description + * Inner padding between the edges of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentPadding + */ + public static final int CardView_contentPadding=8; + /** + *

+ * @attr description + * Inner padding between the bottom edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentPaddingBottom + */ + public static final int CardView_contentPaddingBottom=9; + /** + *

+ * @attr description + * Inner padding between the left edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentPaddingLeft + */ + public static final int CardView_contentPaddingLeft=10; + /** + *

+ * @attr description + * Inner padding between the right edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentPaddingRight + */ + public static final int CardView_contentPaddingRight=11; + /** + *

+ * @attr description + * Inner padding between the top edge of the Card and children of the CardView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentPaddingTop + */ + public static final int CardView_contentPaddingTop=12; + /** + * Attributes that can be used with a Chip. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Chip_android_textAppearance android:textAppearance}
{@link #Chip_android_ellipsize android:ellipsize}
{@link #Chip_android_maxWidth android:maxWidth}
{@link #Chip_android_text android:text}
{@link #Chip_android_checkable android:checkable}
{@link #Chip_checkedIcon org.muctec.smartfritz:checkedIcon}
{@link #Chip_checkedIconEnabled org.muctec.smartfritz:checkedIconEnabled}
{@link #Chip_checkedIconVisible org.muctec.smartfritz:checkedIconVisible}
{@link #Chip_chipBackgroundColor org.muctec.smartfritz:chipBackgroundColor}
{@link #Chip_chipCornerRadius org.muctec.smartfritz:chipCornerRadius}
{@link #Chip_chipEndPadding org.muctec.smartfritz:chipEndPadding}
{@link #Chip_chipIcon org.muctec.smartfritz:chipIcon}
{@link #Chip_chipIconEnabled org.muctec.smartfritz:chipIconEnabled}
{@link #Chip_chipIconSize org.muctec.smartfritz:chipIconSize}
{@link #Chip_chipIconTint org.muctec.smartfritz:chipIconTint}
{@link #Chip_chipIconVisible org.muctec.smartfritz:chipIconVisible}
{@link #Chip_chipMinHeight org.muctec.smartfritz:chipMinHeight}
{@link #Chip_chipStartPadding org.muctec.smartfritz:chipStartPadding}
{@link #Chip_chipStrokeColor org.muctec.smartfritz:chipStrokeColor}
{@link #Chip_chipStrokeWidth org.muctec.smartfritz:chipStrokeWidth}
{@link #Chip_closeIcon org.muctec.smartfritz:closeIcon}Close button icon
{@link #Chip_closeIconEnabled org.muctec.smartfritz:closeIconEnabled}
{@link #Chip_closeIconEndPadding org.muctec.smartfritz:closeIconEndPadding}
{@link #Chip_closeIconSize org.muctec.smartfritz:closeIconSize}
{@link #Chip_closeIconStartPadding org.muctec.smartfritz:closeIconStartPadding}
{@link #Chip_closeIconTint org.muctec.smartfritz:closeIconTint}
{@link #Chip_closeIconVisible org.muctec.smartfritz:closeIconVisible}
{@link #Chip_hideMotionSpec org.muctec.smartfritz:hideMotionSpec}
{@link #Chip_iconEndPadding org.muctec.smartfritz:iconEndPadding}
{@link #Chip_iconStartPadding org.muctec.smartfritz:iconStartPadding}
{@link #Chip_rippleColor org.muctec.smartfritz:rippleColor}
{@link #Chip_showMotionSpec org.muctec.smartfritz:showMotionSpec}
{@link #Chip_textEndPadding org.muctec.smartfritz:textEndPadding}
{@link #Chip_textStartPadding org.muctec.smartfritz:textStartPadding}
+ * @see #Chip_android_textAppearance + * @see #Chip_android_ellipsize + * @see #Chip_android_maxWidth + * @see #Chip_android_text + * @see #Chip_android_checkable + * @see #Chip_checkedIcon + * @see #Chip_checkedIconEnabled + * @see #Chip_checkedIconVisible + * @see #Chip_chipBackgroundColor + * @see #Chip_chipCornerRadius + * @see #Chip_chipEndPadding + * @see #Chip_chipIcon + * @see #Chip_chipIconEnabled + * @see #Chip_chipIconSize + * @see #Chip_chipIconTint + * @see #Chip_chipIconVisible + * @see #Chip_chipMinHeight + * @see #Chip_chipStartPadding + * @see #Chip_chipStrokeColor + * @see #Chip_chipStrokeWidth + * @see #Chip_closeIcon + * @see #Chip_closeIconEnabled + * @see #Chip_closeIconEndPadding + * @see #Chip_closeIconSize + * @see #Chip_closeIconStartPadding + * @see #Chip_closeIconTint + * @see #Chip_closeIconVisible + * @see #Chip_hideMotionSpec + * @see #Chip_iconEndPadding + * @see #Chip_iconStartPadding + * @see #Chip_rippleColor + * @see #Chip_showMotionSpec + * @see #Chip_textEndPadding + * @see #Chip_textStartPadding + */ + public static final int[] Chip={ + 0x01010034, 0x010100ab, 0x0101011f, 0x0101014f, + 0x010101e5, 0x7f030061, 0x7f030062, 0x7f030063, + 0x7f030065, 0x7f030066, 0x7f030067, 0x7f030069, + 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f03006d, + 0x7f03006e, 0x7f030073, 0x7f030074, 0x7f030075, + 0x7f030077, 0x7f030078, 0x7f030079, 0x7f03007a, + 0x7f03007b, 0x7f03007c, 0x7f03007d, 0x7f0300e3, + 0x7f0300ed, 0x7f0300f1, 0x7f03014d, 0x7f030159, + 0x7f0301ae, 0x7f0301b0 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int Chip_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link android.R.attr#ellipsize} + * attribute's value can be found in the {@link #Chip} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
end3
marquee4
middle2
none0
start1
+ * + * @attr name android:ellipsize + */ + public static final int Chip_android_ellipsize=1; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int Chip_android_maxWidth=2; + /** + *

This symbol is the offset where the {@link android.R.attr#text} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:text + */ + public static final int Chip_android_text=3; + /** + *

This symbol is the offset where the {@link android.R.attr#checkable} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checkable + */ + public static final int Chip_android_checkable=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#checkedIcon} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:checkedIcon + */ + public static final int Chip_checkedIcon=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#checkedIconEnabled} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:checkedIconEnabled + */ + public static final int Chip_checkedIconEnabled=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#checkedIconVisible} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:checkedIconVisible + */ + public static final int Chip_checkedIconVisible=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipBackgroundColor} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:chipBackgroundColor + */ + public static final int Chip_chipBackgroundColor=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipCornerRadius} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipCornerRadius + */ + public static final int Chip_chipCornerRadius=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipEndPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipEndPadding + */ + public static final int Chip_chipEndPadding=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipIcon} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:chipIcon + */ + public static final int Chip_chipIcon=11; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipIconEnabled} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:chipIconEnabled + */ + public static final int Chip_chipIconEnabled=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipIconSize} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipIconSize + */ + public static final int Chip_chipIconSize=13; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipIconTint} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:chipIconTint + */ + public static final int Chip_chipIconTint=14; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipIconVisible} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:chipIconVisible + */ + public static final int Chip_chipIconVisible=15; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipMinHeight} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipMinHeight + */ + public static final int Chip_chipMinHeight=16; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipStartPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipStartPadding + */ + public static final int Chip_chipStartPadding=17; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipStrokeColor} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:chipStrokeColor + */ + public static final int Chip_chipStrokeColor=18; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipStrokeWidth} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipStrokeWidth + */ + public static final int Chip_chipStrokeWidth=19; + /** + *

+ * @attr description + * Close button icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:closeIcon + */ + public static final int Chip_closeIcon=20; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#closeIconEnabled} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:closeIconEnabled + */ + public static final int Chip_closeIconEnabled=21; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#closeIconEndPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:closeIconEndPadding + */ + public static final int Chip_closeIconEndPadding=22; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#closeIconSize} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:closeIconSize + */ + public static final int Chip_closeIconSize=23; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#closeIconStartPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:closeIconStartPadding + */ + public static final int Chip_closeIconStartPadding=24; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#closeIconTint} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:closeIconTint + */ + public static final int Chip_closeIconTint=25; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#closeIconVisible} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:closeIconVisible + */ + public static final int Chip_closeIconVisible=26; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hideMotionSpec} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:hideMotionSpec + */ + public static final int Chip_hideMotionSpec=27; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#iconEndPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:iconEndPadding + */ + public static final int Chip_iconEndPadding=28; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#iconStartPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:iconStartPadding + */ + public static final int Chip_iconStartPadding=29; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#rippleColor} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:rippleColor + */ + public static final int Chip_rippleColor=30; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#showMotionSpec} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:showMotionSpec + */ + public static final int Chip_showMotionSpec=31; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textEndPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:textEndPadding + */ + public static final int Chip_textEndPadding=32; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textStartPadding} + * attribute's value can be found in the {@link #Chip} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:textStartPadding + */ + public static final int Chip_textStartPadding=33; + /** + * Attributes that can be used with a ChipGroup. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ChipGroup_checkedChip org.muctec.smartfritz:checkedChip}
{@link #ChipGroup_chipSpacing org.muctec.smartfritz:chipSpacing}
{@link #ChipGroup_chipSpacingHorizontal org.muctec.smartfritz:chipSpacingHorizontal}
{@link #ChipGroup_chipSpacingVertical org.muctec.smartfritz:chipSpacingVertical}
{@link #ChipGroup_singleLine org.muctec.smartfritz:singleLine}
{@link #ChipGroup_singleSelection org.muctec.smartfritz:singleSelection}
+ * @see #ChipGroup_checkedChip + * @see #ChipGroup_chipSpacing + * @see #ChipGroup_chipSpacingHorizontal + * @see #ChipGroup_chipSpacingVertical + * @see #ChipGroup_singleLine + * @see #ChipGroup_singleSelection + */ + public static final int[] ChipGroup={ + 0x7f030060, 0x7f03006f, 0x7f030070, 0x7f030071, + 0x7f03015d, 0x7f03015e + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#checkedChip} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:checkedChip + */ + public static final int ChipGroup_checkedChip=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipSpacing} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipSpacing + */ + public static final int ChipGroup_chipSpacing=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipSpacingHorizontal} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipSpacingHorizontal + */ + public static final int ChipGroup_chipSpacingHorizontal=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipSpacingVertical} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:chipSpacingVertical + */ + public static final int ChipGroup_chipSpacingVertical=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#singleLine} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:singleLine + */ + public static final int ChipGroup_singleLine=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#singleSelection} + * attribute's value can be found in the {@link #ChipGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:singleSelection + */ + public static final int ChipGroup_singleSelection=5; + /** + * Attributes that can be used with a CollapsingToolbarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity org.muctec.smartfritz:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance org.muctec.smartfritz:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim org.muctec.smartfritz:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity org.muctec.smartfritz:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin org.muctec.smartfritz:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom org.muctec.smartfritz:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd org.muctec.smartfritz:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart org.muctec.smartfritz:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop org.muctec.smartfritz:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance org.muctec.smartfritz:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_scrimAnimationDuration org.muctec.smartfritz:scrimAnimationDuration}
{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger org.muctec.smartfritz:scrimVisibleHeightTrigger}
{@link #CollapsingToolbarLayout_statusBarScrim org.muctec.smartfritz:statusBarScrim}
{@link #CollapsingToolbarLayout_title org.muctec.smartfritz:title}
{@link #CollapsingToolbarLayout_titleEnabled org.muctec.smartfritz:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId org.muctec.smartfritz:toolbarId}
+ * @see #CollapsingToolbarLayout_collapsedTitleGravity + * @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + * @see #CollapsingToolbarLayout_contentScrim + * @see #CollapsingToolbarLayout_expandedTitleGravity + * @see #CollapsingToolbarLayout_expandedTitleMargin + * @see #CollapsingToolbarLayout_expandedTitleMarginBottom + * @see #CollapsingToolbarLayout_expandedTitleMarginEnd + * @see #CollapsingToolbarLayout_expandedTitleMarginStart + * @see #CollapsingToolbarLayout_expandedTitleMarginTop + * @see #CollapsingToolbarLayout_expandedTitleTextAppearance + * @see #CollapsingToolbarLayout_scrimAnimationDuration + * @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger + * @see #CollapsingToolbarLayout_statusBarScrim + * @see #CollapsingToolbarLayout_title + * @see #CollapsingToolbarLayout_titleEnabled + * @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout={ + 0x7f030081, 0x7f030082, 0x7f03009c, 0x7f0300bc, + 0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, + 0x7f0300c1, 0x7f0300c2, 0x7f03014e, 0x7f030150, + 0x7f03016e, 0x7f0301bb, 0x7f0301bc, 0x7f0301c6 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#collapsedTitleGravity} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
end800005
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name org.muctec.smartfritz:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#collapsedTitleTextAppearance} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#contentScrim} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleGravity} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
end800005
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name org.muctec.smartfritz:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleMargin} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleMarginBottom} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleMarginEnd} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleMarginStart} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleMarginTop} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#expandedTitleTextAppearance} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#scrimAnimationDuration} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:scrimAnimationDuration + */ + public static final int CollapsingToolbarLayout_scrimAnimationDuration=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#scrimVisibleHeightTrigger} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:scrimVisibleHeightTrigger + */ + public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger=11; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#statusBarScrim} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#title} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:title + */ + public static final int CollapsingToolbarLayout_title=13; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#titleEnabled} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled=14; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#toolbarId} + * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId=15; + /** + * Attributes that can be used with a CollapsingToolbarLayout_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #CollapsingToolbarLayout_Layout_layout_collapseMode org.muctec.smartfritz:layout_collapseMode}
{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier org.muctec.smartfritz:layout_collapseParallaxMultiplier}
+ * @see #CollapsingToolbarLayout_Layout_layout_collapseMode + * @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingToolbarLayout_Layout={ + 0x7f03010e, 0x7f03010f + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#layout_collapseMode} + * attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
none0
parallax2
pin1
+ * + * @attr name org.muctec.smartfritz:layout_collapseMode + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseMode=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#layout_collapseParallaxMultiplier} + * attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name org.muctec.smartfritz:layout_collapseParallaxMultiplier + */ + public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier=1; + /** + * Attributes that can be used with a ColorStateListItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ColorStateListItem_android_color android:color}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_alpha org.muctec.smartfritz:alpha}Alpha multiplier applied to the base color.
+ * @see #ColorStateListItem_android_color + * @see #ColorStateListItem_android_alpha + * @see #ColorStateListItem_alpha + */ + public static final int[] ColorStateListItem={ + 0x010101a5, 0x0101031f, 0x7f030027 + }; + /** + *

+ * @attr description + * Base color for this state. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:color + */ + public static final int ColorStateListItem_android_color=0; + /** + *

This symbol is the offset where the {@link android.R.attr#alpha} + * attribute's value can be found in the {@link #ColorStateListItem} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha=1; + /** + *

+ * @attr description + * Alpha multiplier applied to the base color. + * + *

May be a floating point value, such as "1.2". + * + * @attr name org.muctec.smartfritz:alpha + */ + public static final int ColorStateListItem_alpha=2; + /** + * Attributes that can be used with a CompoundButton. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint org.muctec.smartfritz:buttonTint}Tint to apply to the button drawable.
{@link #CompoundButton_buttonTintMode org.muctec.smartfritz:buttonTintMode}Blending mode used to apply the button tint.
+ * @see #CompoundButton_android_button + * @see #CompoundButton_buttonTint + * @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton={ + 0x01010107, 0x7f030056, 0x7f030057 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#button} + * attribute's value can be found in the {@link #CompoundButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:button + */ + public static final int CompoundButton_android_button=0; + /** + *

+ * @attr description + * Tint to apply to the button drawable. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:buttonTint + */ + public static final int CompoundButton_buttonTint=1; + /** + *

+ * @attr description + * Blending mode used to apply the button tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode=2; + /** + * Attributes that can be used with a CoordinatorLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #CoordinatorLayout_keylines org.muctec.smartfritz:keylines}A reference to an array of integers representing the + * locations of horizontal keylines in dp from the starting edge.
{@link #CoordinatorLayout_statusBarBackground org.muctec.smartfritz:statusBarBackground}Drawable to display behind the status bar when the view is set to draw behind it.
+ * @see #CoordinatorLayout_keylines + * @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout={ + 0x7f030106, 0x7f03016d + }; + /** + *

+ * @attr description + * A reference to an array of integers representing the + * locations of horizontal keylines in dp from the starting edge. + * Child views can refer to these keylines for alignment using + * layout_keyline="index" where index is a 0-based index into + * this array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:keylines + */ + public static final int CoordinatorLayout_keylines=0; + /** + *

+ * @attr description + * Drawable to display behind the status bar when the view is set to draw behind it. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground=1; + /** + * Attributes that can be used with a CoordinatorLayout_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_Layout_layout_anchor org.muctec.smartfritz:layout_anchor}The id of an anchor view that this view should position relative to.
{@link #CoordinatorLayout_Layout_layout_anchorGravity org.muctec.smartfritz:layout_anchorGravity}Specifies how an object should position relative to an anchor, on both the X and Y axes, + * within its parent's bounds.
{@link #CoordinatorLayout_Layout_layout_behavior org.muctec.smartfritz:layout_behavior}The class name of a Behavior class defining special runtime behavior + * for this child view.
{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges org.muctec.smartfritz:layout_dodgeInsetEdges}Specifies how this view dodges the inset edges of the CoordinatorLayout.
{@link #CoordinatorLayout_Layout_layout_insetEdge org.muctec.smartfritz:layout_insetEdge}Specifies how this view insets the CoordinatorLayout and make some other views + * dodge it.
{@link #CoordinatorLayout_Layout_layout_keyline org.muctec.smartfritz:layout_keyline}The index of a keyline this view should position relative to.
+ * @see #CoordinatorLayout_Layout_android_layout_gravity + * @see #CoordinatorLayout_Layout_layout_anchor + * @see #CoordinatorLayout_Layout_layout_anchorGravity + * @see #CoordinatorLayout_Layout_layout_behavior + * @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges + * @see #CoordinatorLayout_Layout_layout_insetEdge + * @see #CoordinatorLayout_Layout_layout_keyline + */ + public static final int[] CoordinatorLayout_Layout={ + 0x010100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, + 0x7f030110, 0x7f030111, 0x7f030112 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_Layout_android_layout_gravity=0; + /** + *

+ * @attr description + * The id of an anchor view that this view should position relative to. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:layout_anchor + */ + public static final int CoordinatorLayout_Layout_layout_anchor=1; + /** + *

+ * @attr description + * Specifies how an object should position relative to an anchor, on both the X and Y axes, + * within its parent's bounds. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
center11Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.
center_horizontal1Place object in the horizontal center of its container, not changing its size.
center_vertical10Place object in the vertical center of its container, not changing its size.
clip_horizontal8Additional option that can be set to have the left and/or right edges of + * the child clipped to its container's bounds. + * The clip will be based on the horizontal gravity: a left gravity will clip the right + * edge, a right gravity will clip the left edge, and neither will clip both edges.
clip_vertical80Additional option that can be set to have the top and/or bottom edges of + * the child clipped to its container's bounds. + * The clip will be based on the vertical gravity: a top gravity will clip the bottom + * edge, a bottom gravity will clip the top edge, and neither will clip both edges.
end800005Push object to the end of its container, not changing its size.
fill77Grow the horizontal and vertical size of the object if needed so it completely fills its container.
fill_horizontal7Grow the horizontal size of the object if needed so it completely fills its container.
fill_vertical70Grow the vertical size of the object if needed so it completely fills its container.
left3Push object to the left of its container, not changing its size.
right5Push object to the right of its container, not changing its size.
start800003Push object to the beginning of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ * + * @attr name org.muctec.smartfritz:layout_anchorGravity + */ + public static final int CoordinatorLayout_Layout_layout_anchorGravity=2; + /** + *

+ * @attr description + * The class name of a Behavior class defining special runtime behavior + * for this child view. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:layout_behavior + */ + public static final int CoordinatorLayout_Layout_layout_behavior=3; + /** + *

+ * @attr description + * Specifies how this view dodges the inset edges of the CoordinatorLayout. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
all77Dodge all the inset edges.
bottom50Dodge the bottom inset edge.
end800005Dodge the end inset edge.
left3Dodge the left inset edge.
none0Don't dodge any edges
right5Dodge the right inset edge.
start800003Dodge the start inset edge.
top30Dodge the top inset edge.
+ * + * @attr name org.muctec.smartfritz:layout_dodgeInsetEdges + */ + public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4; + /** + *

+ * @attr description + * Specifies how this view insets the CoordinatorLayout and make some other views + * dodge it. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Inset the bottom edge.
end800005Inset the end edge.
left3Inset the left edge.
none0Don't inset.
right5Inset the right edge.
start800003Inset the start edge.
top30Inset the top edge.
+ * + * @attr name org.muctec.smartfritz:layout_insetEdge + */ + public static final int CoordinatorLayout_Layout_layout_insetEdge=5; + /** + *

+ * @attr description + * The index of a keyline this view should position relative to. + * android:layout_gravity will affect how the view aligns to the + * specified keyline. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:layout_keyline + */ + public static final int CoordinatorLayout_Layout_layout_keyline=6; + /** + * Attributes that can be used with a DesignTheme. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme org.muctec.smartfritz:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle org.muctec.smartfritz:bottomSheetStyle}
+ * @see #DesignTheme_bottomSheetDialogTheme + * @see #DesignTheme_bottomSheetStyle + */ + public static final int[] DesignTheme={ + 0x7f030041, 0x7f030042 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#bottomSheetDialogTheme} + * attribute's value can be found in the {@link #DesignTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#bottomSheetStyle} + * attribute's value can be found in the {@link #DesignTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle=1; + /** + * Attributes that can be used with a DrawerArrowToggle. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength org.muctec.smartfritz:arrowHeadLength}The length of the arrow head when formed to make an arrow
{@link #DrawerArrowToggle_arrowShaftLength org.muctec.smartfritz:arrowShaftLength}The length of the shaft when formed to make an arrow
{@link #DrawerArrowToggle_barLength org.muctec.smartfritz:barLength}The length of the bars when they are parallel to each other
{@link #DrawerArrowToggle_color org.muctec.smartfritz:color}The drawing color for the bars
{@link #DrawerArrowToggle_drawableSize org.muctec.smartfritz:drawableSize}The total size of the drawable
{@link #DrawerArrowToggle_gapBetweenBars org.muctec.smartfritz:gapBetweenBars}The max gap between the bars when they are parallel to each other
{@link #DrawerArrowToggle_spinBars org.muctec.smartfritz:spinBars}Whether bars should rotate or not during transition
{@link #DrawerArrowToggle_thickness org.muctec.smartfritz:thickness}The thickness (stroke size) for the bar paint
+ * @see #DrawerArrowToggle_arrowHeadLength + * @see #DrawerArrowToggle_arrowShaftLength + * @see #DrawerArrowToggle_barLength + * @see #DrawerArrowToggle_color + * @see #DrawerArrowToggle_drawableSize + * @see #DrawerArrowToggle_gapBetweenBars + * @see #DrawerArrowToggle_spinBars + * @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle={ + 0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030083, + 0x7f0300ae, 0x7f0300dc, 0x7f030162, 0x7f0301b2 + }; + /** + *

+ * @attr description + * The length of the arrow head when formed to make an arrow + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength=0; + /** + *

+ * @attr description + * The length of the shaft when formed to make an arrow + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength=1; + /** + *

+ * @attr description + * The length of the bars when they are parallel to each other + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:barLength + */ + public static final int DrawerArrowToggle_barLength=2; + /** + *

+ * @attr description + * The drawing color for the bars + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:color + */ + public static final int DrawerArrowToggle_color=3; + /** + *

+ * @attr description + * The total size of the drawable + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize=4; + /** + *

+ * @attr description + * The max gap between the bars when they are parallel to each other + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars=5; + /** + *

+ * @attr description + * Whether bars should rotate or not during transition + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:spinBars + */ + public static final int DrawerArrowToggle_spinBars=6; + /** + *

+ * @attr description + * The thickness (stroke size) for the bar paint + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:thickness + */ + public static final int DrawerArrowToggle_thickness=7; + /** + * Attributes that can be used with a FloatingActionButton. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #FloatingActionButton_backgroundTint org.muctec.smartfritz:backgroundTint}Tint to apply to the background.
{@link #FloatingActionButton_backgroundTintMode org.muctec.smartfritz:backgroundTintMode}Blending mode used to apply the background tint.
{@link #FloatingActionButton_borderWidth org.muctec.smartfritz:borderWidth}
{@link #FloatingActionButton_elevation org.muctec.smartfritz:elevation}Elevation for the action bar itself
{@link #FloatingActionButton_fabCustomSize org.muctec.smartfritz:fabCustomSize}
{@link #FloatingActionButton_fabSize org.muctec.smartfritz:fabSize}
{@link #FloatingActionButton_hideMotionSpec org.muctec.smartfritz:hideMotionSpec}
{@link #FloatingActionButton_hoveredFocusedTranslationZ org.muctec.smartfritz:hoveredFocusedTranslationZ}
{@link #FloatingActionButton_maxImageSize org.muctec.smartfritz:maxImageSize}
{@link #FloatingActionButton_pressedTranslationZ org.muctec.smartfritz:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor org.muctec.smartfritz:rippleColor}
{@link #FloatingActionButton_showMotionSpec org.muctec.smartfritz:showMotionSpec}
{@link #FloatingActionButton_useCompatPadding org.muctec.smartfritz:useCompatPadding}
+ * @see #FloatingActionButton_backgroundTint + * @see #FloatingActionButton_backgroundTintMode + * @see #FloatingActionButton_borderWidth + * @see #FloatingActionButton_elevation + * @see #FloatingActionButton_fabCustomSize + * @see #FloatingActionButton_fabSize + * @see #FloatingActionButton_hideMotionSpec + * @see #FloatingActionButton_hoveredFocusedTranslationZ + * @see #FloatingActionButton_maxImageSize + * @see #FloatingActionButton_pressedTranslationZ + * @see #FloatingActionButton_rippleColor + * @see #FloatingActionButton_showMotionSpec + * @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton={ + 0x7f030034, 0x7f030035, 0x7f03003d, 0x7f0300b5, + 0x7f0300c7, 0x7f0300c8, 0x7f0300e3, 0x7f0300eb, + 0x7f030129, 0x7f030143, 0x7f03014d, 0x7f030159, + 0x7f0301d0 + }; + /** + *

+ * @attr description + * Tint to apply to the background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint=0; + /** + *

+ * @attr description + * Blending mode used to apply the background tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#borderWidth} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:borderWidth + */ + public static final int FloatingActionButton_borderWidth=2; + /** + *

+ * @attr description + * Elevation for the action bar itself + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:elevation + */ + public static final int FloatingActionButton_elevation=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fabCustomSize} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:fabCustomSize + */ + public static final int FloatingActionButton_fabCustomSize=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fabSize} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
autoffffffff
mini1
normal0
+ * + * @attr name org.muctec.smartfritz:fabSize + */ + public static final int FloatingActionButton_fabSize=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hideMotionSpec} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:hideMotionSpec + */ + public static final int FloatingActionButton_hideMotionSpec=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hoveredFocusedTranslationZ} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:hoveredFocusedTranslationZ + */ + public static final int FloatingActionButton_hoveredFocusedTranslationZ=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#maxImageSize} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:maxImageSize + */ + public static final int FloatingActionButton_maxImageSize=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#pressedTranslationZ} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#rippleColor} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:rippleColor + */ + public static final int FloatingActionButton_rippleColor=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#showMotionSpec} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:showMotionSpec + */ + public static final int FloatingActionButton_showMotionSpec=11; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#useCompatPadding} + * attribute's value can be found in the {@link #FloatingActionButton} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding=12; + /** + * Attributes that can be used with a FloatingActionButton_Behavior_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide org.muctec.smartfritz:behavior_autoHide}
+ * @see #FloatingActionButton_Behavior_Layout_behavior_autoHide + */ + public static final int[] FloatingActionButton_Behavior_Layout={ + 0x7f030037 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#behavior_autoHide} + * attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:behavior_autoHide + */ + public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide=0; + /** + * Attributes that can be used with a FlowLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #FlowLayout_itemSpacing org.muctec.smartfritz:itemSpacing}
{@link #FlowLayout_lineSpacing org.muctec.smartfritz:lineSpacing}
+ * @see #FlowLayout_itemSpacing + * @see #FlowLayout_lineSpacing + */ + public static final int[] FlowLayout={ + 0x7f030101, 0x7f030117 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemSpacing} + * attribute's value can be found in the {@link #FlowLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:itemSpacing + */ + public static final int FlowLayout_itemSpacing=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#lineSpacing} + * attribute's value can be found in the {@link #FlowLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:lineSpacing + */ + public static final int FlowLayout_lineSpacing=1; + /** + * Attributes that can be used with a FontFamily. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #FontFamily_fontProviderAuthority org.muctec.smartfritz:fontProviderAuthority}The authority of the Font Provider to be used for the request.
{@link #FontFamily_fontProviderCerts org.muctec.smartfritz:fontProviderCerts}The sets of hashes for the certificates the provider should be signed with.
{@link #FontFamily_fontProviderFetchStrategy org.muctec.smartfritz:fontProviderFetchStrategy}The strategy to be used when fetching font data from a font provider in XML layouts.
{@link #FontFamily_fontProviderFetchTimeout org.muctec.smartfritz:fontProviderFetchTimeout}The length of the timeout during fetching.
{@link #FontFamily_fontProviderPackage org.muctec.smartfritz:fontProviderPackage}The package for the Font Provider to be used for the request.
{@link #FontFamily_fontProviderQuery org.muctec.smartfritz:fontProviderQuery}The query to be sent over to the provider.
+ * @see #FontFamily_fontProviderAuthority + * @see #FontFamily_fontProviderCerts + * @see #FontFamily_fontProviderFetchStrategy + * @see #FontFamily_fontProviderFetchTimeout + * @see #FontFamily_fontProviderPackage + * @see #FontFamily_fontProviderQuery + */ + public static final int[] FontFamily={ + 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, + 0x7f0300d6, 0x7f0300d7 + }; + /** + *

+ * @attr description + * The authority of the Font Provider to be used for the request. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:fontProviderAuthority + */ + public static final int FontFamily_fontProviderAuthority=0; + /** + *

+ * @attr description + * The sets of hashes for the certificates the provider should be signed with. This is + * used to verify the identity of the provider, and is only required if the provider is not + * part of the system image. This value may point to one list or a list of lists, where each + * individual list represents one collection of signature hashes. Refer to your font provider's + * documentation for these values. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:fontProviderCerts + */ + public static final int FontFamily_fontProviderCerts=1; + /** + *

+ * @attr description + * The strategy to be used when fetching font data from a font provider in XML layouts. + * This attribute is ignored when the resource is loaded from code, as it is equivalent to the + * choice of API between {@link + * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and + * {@link + * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} + * (async). + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
async1The async font fetch works as follows. + * First, check the local cache, then if the requeted font is not cached, trigger a + * request the font and continue with layout inflation. Once the font fetch succeeds, the + * target text view will be refreshed with the downloaded font data. The + * fontProviderFetchTimeout will be ignored if async loading is specified.
blocking0The blocking font fetch works as follows. + * First, check the local cache, then if the requested font is not cached, request the + * font from the provider and wait until it is finished. You can change the length of + * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the + * default typeface will be used instead.
+ * + * @attr name org.muctec.smartfritz:fontProviderFetchStrategy + */ + public static final int FontFamily_fontProviderFetchStrategy=2; + /** + *

+ * @attr description + * The length of the timeout during fetching. + * + *

May be an integer value, such as "100". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
foreverffffffffA special value for the timeout. In this case, the blocking font fetching will not + * timeout and wait until a reply is received from the font provider.
+ * + * @attr name org.muctec.smartfritz:fontProviderFetchTimeout + */ + public static final int FontFamily_fontProviderFetchTimeout=3; + /** + *

+ * @attr description + * The package for the Font Provider to be used for the request. This is used to verify + * the identity of the provider. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:fontProviderPackage + */ + public static final int FontFamily_fontProviderPackage=4; + /** + *

+ * @attr description + * The query to be sent over to the provider. Refer to your font provider's documentation + * on the format of this string. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:fontProviderQuery + */ + public static final int FontFamily_fontProviderQuery=5; + /** + * Attributes that can be used with a FontFamilyFont. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #FontFamilyFont_android_font android:font}
{@link #FontFamilyFont_android_fontWeight android:fontWeight}
{@link #FontFamilyFont_android_fontStyle android:fontStyle}
{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}
{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}
{@link #FontFamilyFont_font org.muctec.smartfritz:font}The reference to the font file to be used.
{@link #FontFamilyFont_fontStyle org.muctec.smartfritz:fontStyle}The style of the given font file.
{@link #FontFamilyFont_fontVariationSettings org.muctec.smartfritz:fontVariationSettings}The variation settings to be applied to the font.
{@link #FontFamilyFont_fontWeight org.muctec.smartfritz:fontWeight}The weight of the given font file.
{@link #FontFamilyFont_ttcIndex org.muctec.smartfritz:ttcIndex}The index of the font in the tcc font file.
+ * @see #FontFamilyFont_android_font + * @see #FontFamilyFont_android_fontWeight + * @see #FontFamilyFont_android_fontStyle + * @see #FontFamilyFont_android_ttcIndex + * @see #FontFamilyFont_android_fontVariationSettings + * @see #FontFamilyFont_font + * @see #FontFamilyFont_fontStyle + * @see #FontFamilyFont_fontVariationSettings + * @see #FontFamilyFont_fontWeight + * @see #FontFamilyFont_ttcIndex + */ + public static final int[] FontFamilyFont={ + 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, + 0x01010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, + 0x7f0300da, 0x7f0301cf + }; + /** + *

This symbol is the offset where the {@link android.R.attr#font} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:font + */ + public static final int FontFamilyFont_android_font=0; + /** + *

This symbol is the offset where the {@link android.R.attr#fontWeight} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:fontWeight + */ + public static final int FontFamilyFont_android_fontWeight=1; + /** + *

+ * @attr description + * References to the framework attrs + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
italic1
normal0
+ * + * @attr name android:fontStyle + */ + public static final int FontFamilyFont_android_fontStyle=2; + /** + *

This symbol is the offset where the {@link android.R.attr#ttcIndex} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:ttcIndex + */ + public static final int FontFamilyFont_android_ttcIndex=3; + /** + *

This symbol is the offset where the {@link android.R.attr#fontVariationSettings} + * attribute's value can be found in the {@link #FontFamilyFont} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:fontVariationSettings + */ + public static final int FontFamilyFont_android_fontVariationSettings=4; + /** + *

+ * @attr description + * The reference to the font file to be used. This should be a file in the res/font folder + * and should therefore have an R reference value. E.g. @font/myfont + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:font + */ + public static final int FontFamilyFont_font=5; + /** + *

+ * @attr description + * The style of the given font file. This will be used when the font is being loaded into + * the font stack and will override any style information in the font's header tables. If + * unspecified, the value in the font's header tables will be used. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
italic1
normal0
+ * + * @attr name org.muctec.smartfritz:fontStyle + */ + public static final int FontFamilyFont_fontStyle=6; + /** + *

+ * @attr description + * The variation settings to be applied to the font. The string should be in the following + * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be + * used, or the font used does not support variation settings, this attribute needs not be + * specified. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:fontVariationSettings + */ + public static final int FontFamilyFont_fontVariationSettings=7; + /** + *

+ * @attr description + * The weight of the given font file. This will be used when the font is being loaded into + * the font stack and will override any weight information in the font's header tables. Must + * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most + * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value + * in the font's header tables will be used. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:fontWeight + */ + public static final int FontFamilyFont_fontWeight=8; + /** + *

+ * @attr description + * The index of the font in the tcc font file. If the font file referenced is not in the + * tcc format, this attribute needs not be specified. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:ttcIndex + */ + public static final int FontFamilyFont_ttcIndex=9; + /** + * Attributes that can be used with a ForegroundLinearLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding org.muctec.smartfritz:foregroundInsidePadding}
+ * @see #ForegroundLinearLayout_android_foreground + * @see #ForegroundLinearLayout_android_foregroundGravity + * @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout={ + 0x01010109, 0x01010200, 0x7f0300db + }; + /** + *

This symbol is the offset where the {@link android.R.attr#foreground} + * attribute's value can be found in the {@link #ForegroundLinearLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground=0; + /** + *

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + * attribute's value can be found in the {@link #ForegroundLinearLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
fill77
fill_horizontal7
fill_vertical70
left3
right5
top30
+ * + * @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#foregroundInsidePadding} + * attribute's value can be found in the {@link #ForegroundLinearLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding=2; + /** + * Attributes that can be used with a GradientColor. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #GradientColor_android_startColor android:startColor}
{@link #GradientColor_android_endColor android:endColor}
{@link #GradientColor_android_type android:type}
{@link #GradientColor_android_centerX android:centerX}
{@link #GradientColor_android_centerY android:centerY}
{@link #GradientColor_android_gradientRadius android:gradientRadius}
{@link #GradientColor_android_tileMode android:tileMode}
{@link #GradientColor_android_centerColor android:centerColor}
{@link #GradientColor_android_startX android:startX}
{@link #GradientColor_android_startY android:startY}
{@link #GradientColor_android_endX android:endX}
{@link #GradientColor_android_endY android:endY}
+ * @see #GradientColor_android_startColor + * @see #GradientColor_android_endColor + * @see #GradientColor_android_type + * @see #GradientColor_android_centerX + * @see #GradientColor_android_centerY + * @see #GradientColor_android_gradientRadius + * @see #GradientColor_android_tileMode + * @see #GradientColor_android_centerColor + * @see #GradientColor_android_startX + * @see #GradientColor_android_startY + * @see #GradientColor_android_endX + * @see #GradientColor_android_endY + */ + public static final int[] GradientColor={ + 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, + 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, + 0x01010510, 0x01010511, 0x01010512, 0x01010513 + }; + /** + *

+ * @attr description + * Start color of the gradient. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:startColor + */ + public static final int GradientColor_android_startColor=0; + /** + *

+ * @attr description + * End color of the gradient. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:endColor + */ + public static final int GradientColor_android_endColor=1; + /** + *

+ * @attr description + * Type of gradient. The default type is linear. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
linear0
radial1
sweep2
+ * + * @attr name android:type + */ + public static final int GradientColor_android_type=2; + /** + *

+ * @attr description + * X coordinate of the center of the gradient within the path. + * + *

May be a floating point value, such as "1.2". + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:centerX + */ + public static final int GradientColor_android_centerX=3; + /** + *

+ * @attr description + * Y coordinate of the center of the gradient within the path. + * + *

May be a floating point value, such as "1.2". + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:centerY + */ + public static final int GradientColor_android_centerY=4; + /** + *

+ * @attr description + * Radius of the gradient, used only with radial gradient. + * + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:gradientRadius + */ + public static final int GradientColor_android_gradientRadius=5; + /** + *

+ * @attr description + * Defines the tile mode of the gradient. SweepGradient doesn't support tiling. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
clamp0
disabledffffffff
mirror2
repeat1
+ * + * @attr name android:tileMode + */ + public static final int GradientColor_android_tileMode=6; + /** + *

+ * @attr description + * Optional center color. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:centerColor + */ + public static final int GradientColor_android_centerColor=7; + /** + *

+ * @attr description + * X coordinate of the start point origin of the gradient. + * Defined in same coordinates as the path itself + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:startX + */ + public static final int GradientColor_android_startX=8; + /** + *

+ * @attr description + * Y coordinate of the start point of the gradient within the shape. + * Defined in same coordinates as the path itself + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:startY + */ + public static final int GradientColor_android_startY=9; + /** + *

+ * @attr description + * X coordinate of the end point origin of the gradient. + * Defined in same coordinates as the path itself + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:endX + */ + public static final int GradientColor_android_endX=10; + /** + *

+ * @attr description + * Y coordinate of the end point of the gradient within the shape. + * Defined in same coordinates as the path itself + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:endY + */ + public static final int GradientColor_android_endY=11; + /** + * Attributes that can be used with a GradientColorItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #GradientColorItem_android_color android:color}
{@link #GradientColorItem_android_offset android:offset}
+ * @see #GradientColorItem_android_color + * @see #GradientColorItem_android_offset + */ + public static final int[] GradientColorItem={ + 0x010101a5, 0x01010514 + }; + /** + *

+ * @attr description + * The current color for the offset inside the gradient. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:color + */ + public static final int GradientColorItem_android_color=0; + /** + *

+ * @attr description + * The offset (or ratio) of this current color item inside the gradient. + * The value is only meaningful when it is between 0 and 1. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:offset + */ + public static final int GradientColorItem_android_offset=1; + /** + * Attributes that can be used with a LinearLayoutCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider org.muctec.smartfritz:divider}Specifies the drawable used for item dividers.
{@link #LinearLayoutCompat_dividerPadding org.muctec.smartfritz:dividerPadding}Size of padding on either end of a divider.
{@link #LinearLayoutCompat_measureWithLargestChild org.muctec.smartfritz:measureWithLargestChild}When set to true, all children with a weight will be considered having + * the minimum size of the largest child.
{@link #LinearLayoutCompat_showDividers org.muctec.smartfritz:showDividers}Setting for which dividers to show.
+ * @see #LinearLayoutCompat_android_gravity + * @see #LinearLayoutCompat_android_orientation + * @see #LinearLayoutCompat_android_baselineAligned + * @see #LinearLayoutCompat_android_baselineAlignedChildIndex + * @see #LinearLayoutCompat_android_weightSum + * @see #LinearLayoutCompat_divider + * @see #LinearLayoutCompat_dividerPadding + * @see #LinearLayoutCompat_measureWithLargestChild + * @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat={ + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f0300aa, 0x7f0300ac, 0x7f03012a, + 0x7f030158 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#gravity} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity=0; + /** + *

+ * @attr description + * Should the layout be a column or a row? Use "horizontal" + * for a row, "vertical" for a column. The default is + * horizontal. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation=1; + /** + *

+ * @attr description + * When set to false, prevents the layout from aligning its children's + * baselines. This attribute is particularly useful when the children + * use different values for gravity. The default value is true. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned=2; + /** + *

+ * @attr description + * When a linear layout is part of another layout that is baseline + * aligned, it can specify which of its children to baseline align to + * (that is, which child TextView). + * + *

May be an integer value, such as "100". + * + * @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3; + /** + *

+ * @attr description + * Defines the maximum weight sum. If unspecified, the sum is computed + * by adding the layout_weight of all of the children. This can be + * used for instance to give a single child 50% of the total available + * space by giving it a layout_weight of 0.5 and setting the weightSum + * to 1.0. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum=4; + /** + *

+ * @attr description + * Drawable to use as a vertical divider between buttons. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:divider + */ + public static final int LinearLayoutCompat_divider=5; + /** + *

+ * @attr description + * Size of padding on either end of a divider. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding=6; + /** + *

+ * @attr description + * When set to true, all children with a weight will be considered having + * the minimum size of the largest child. If false, all children are + * measured normally. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild=7; + /** + *

+ * @attr description + * Setting for which dividers to show. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
beginning1
end4
middle2
none0
+ * + * @attr name org.muctec.smartfritz:showDividers + */ + public static final int LinearLayoutCompat_showDividers=8; + /** + * Attributes that can be used with a LinearLayoutCompat_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
+ * @see #LinearLayoutCompat_Layout_android_layout_gravity + * @see #LinearLayoutCompat_Layout_android_layout_width + * @see #LinearLayoutCompat_Layout_android_layout_height + * @see #LinearLayoutCompat_Layout_android_layout_weight + */ + public static final int[] LinearLayoutCompat_Layout={ + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity=0; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_width} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width=1; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_height} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height=2; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_weight} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight=3; + /** + * Attributes that can be used with a ListPopupWindow. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ * @see #ListPopupWindow_android_dropDownHorizontalOffset + * @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow={ + 0x010102ac, 0x010102ad + }; + /** + *

+ * @attr description + * Amount of pixels by which the drop down should be offset horizontally. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset=0; + /** + *

+ * @attr description + * Amount of pixels by which the drop down should be offset vertically. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset=1; + /** + * Attributes that can be used with a MaterialButton. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialButton_android_insetLeft android:insetLeft}
{@link #MaterialButton_android_insetRight android:insetRight}
{@link #MaterialButton_android_insetTop android:insetTop}
{@link #MaterialButton_android_insetBottom android:insetBottom}
{@link #MaterialButton_backgroundTint org.muctec.smartfritz:backgroundTint}Tint to apply to the background.
{@link #MaterialButton_backgroundTintMode org.muctec.smartfritz:backgroundTintMode}Blending mode used to apply the background tint.
{@link #MaterialButton_cornerRadius org.muctec.smartfritz:cornerRadius}
{@link #MaterialButton_icon org.muctec.smartfritz:icon}
{@link #MaterialButton_iconGravity org.muctec.smartfritz:iconGravity}
{@link #MaterialButton_iconPadding org.muctec.smartfritz:iconPadding}
{@link #MaterialButton_iconSize org.muctec.smartfritz:iconSize}
{@link #MaterialButton_iconTint org.muctec.smartfritz:iconTint}Tint to apply to the icon.
{@link #MaterialButton_iconTintMode org.muctec.smartfritz:iconTintMode}Blending mode used to apply the icon tint.
{@link #MaterialButton_rippleColor org.muctec.smartfritz:rippleColor}
{@link #MaterialButton_strokeColor org.muctec.smartfritz:strokeColor}
{@link #MaterialButton_strokeWidth org.muctec.smartfritz:strokeWidth}
+ * @see #MaterialButton_android_insetLeft + * @see #MaterialButton_android_insetRight + * @see #MaterialButton_android_insetTop + * @see #MaterialButton_android_insetBottom + * @see #MaterialButton_backgroundTint + * @see #MaterialButton_backgroundTintMode + * @see #MaterialButton_cornerRadius + * @see #MaterialButton_icon + * @see #MaterialButton_iconGravity + * @see #MaterialButton_iconPadding + * @see #MaterialButton_iconSize + * @see #MaterialButton_iconTint + * @see #MaterialButton_iconTintMode + * @see #MaterialButton_rippleColor + * @see #MaterialButton_strokeColor + * @see #MaterialButton_strokeWidth + */ + public static final int[] MaterialButton={ + 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, + 0x7f030034, 0x7f030035, 0x7f03009f, 0x7f0300ec, + 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f2, + 0x7f0300f3, 0x7f03014d, 0x7f03016f, 0x7f030170 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#insetLeft} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetLeft + */ + public static final int MaterialButton_android_insetLeft=0; + /** + *

This symbol is the offset where the {@link android.R.attr#insetRight} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetRight + */ + public static final int MaterialButton_android_insetRight=1; + /** + *

This symbol is the offset where the {@link android.R.attr#insetTop} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetTop + */ + public static final int MaterialButton_android_insetTop=2; + /** + *

This symbol is the offset where the {@link android.R.attr#insetBottom} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name android:insetBottom + */ + public static final int MaterialButton_android_insetBottom=3; + /** + *

+ * @attr description + * Tint to apply to the background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundTint + */ + public static final int MaterialButton_backgroundTint=4; + /** + *

+ * @attr description + * Blending mode used to apply the background tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:backgroundTintMode + */ + public static final int MaterialButton_backgroundTintMode=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#cornerRadius} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:cornerRadius + */ + public static final int MaterialButton_cornerRadius=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#icon} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:icon + */ + public static final int MaterialButton_icon=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#iconGravity} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
start1
textStart2
+ * + * @attr name org.muctec.smartfritz:iconGravity + */ + public static final int MaterialButton_iconGravity=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#iconPadding} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:iconPadding + */ + public static final int MaterialButton_iconPadding=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#iconSize} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:iconSize + */ + public static final int MaterialButton_iconSize=10; + /** + *

+ * @attr description + * Tint to apply to the icon. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:iconTint + */ + public static final int MaterialButton_iconTint=11; + /** + *

+ * @attr description + * Blending mode used to apply the icon tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the icon with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the icon, but with the icon’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the icon. The icon’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the icon. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:iconTintMode + */ + public static final int MaterialButton_iconTintMode=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#rippleColor} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:rippleColor + */ + public static final int MaterialButton_rippleColor=13; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#strokeColor} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:strokeColor + */ + public static final int MaterialButton_strokeColor=14; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#strokeWidth} + * attribute's value can be found in the {@link #MaterialButton} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:strokeWidth + */ + public static final int MaterialButton_strokeWidth=15; + /** + * Attributes that can be used with a MaterialCardView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialCardView_strokeColor org.muctec.smartfritz:strokeColor}
{@link #MaterialCardView_strokeWidth org.muctec.smartfritz:strokeWidth}
+ * @see #MaterialCardView_strokeColor + * @see #MaterialCardView_strokeWidth + */ + public static final int[] MaterialCardView={ + 0x7f03016f, 0x7f030170 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#strokeColor} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:strokeColor + */ + public static final int MaterialCardView_strokeColor=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#strokeWidth} + * attribute's value can be found in the {@link #MaterialCardView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:strokeWidth + */ + public static final int MaterialCardView_strokeWidth=1; + /** + * Attributes that can be used with a MaterialComponentsTheme. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MaterialComponentsTheme_bottomSheetDialogTheme org.muctec.smartfritz:bottomSheetDialogTheme}
{@link #MaterialComponentsTheme_bottomSheetStyle org.muctec.smartfritz:bottomSheetStyle}
{@link #MaterialComponentsTheme_chipGroupStyle org.muctec.smartfritz:chipGroupStyle}
{@link #MaterialComponentsTheme_chipStandaloneStyle org.muctec.smartfritz:chipStandaloneStyle}
{@link #MaterialComponentsTheme_chipStyle org.muctec.smartfritz:chipStyle}
{@link #MaterialComponentsTheme_colorAccent org.muctec.smartfritz:colorAccent}Bright complement to the primary branding color.
{@link #MaterialComponentsTheme_colorBackgroundFloating org.muctec.smartfritz:colorBackgroundFloating}Default color of background imagery for floating components, ex.
{@link #MaterialComponentsTheme_colorPrimary org.muctec.smartfritz:colorPrimary}The primary branding color for the app.
{@link #MaterialComponentsTheme_colorPrimaryDark org.muctec.smartfritz:colorPrimaryDark}Dark variant of the primary branding color.
{@link #MaterialComponentsTheme_colorSecondary org.muctec.smartfritz:colorSecondary}
{@link #MaterialComponentsTheme_editTextStyle org.muctec.smartfritz:editTextStyle}Default EditText style.
{@link #MaterialComponentsTheme_floatingActionButtonStyle org.muctec.smartfritz:floatingActionButtonStyle}
{@link #MaterialComponentsTheme_materialButtonStyle org.muctec.smartfritz:materialButtonStyle}
{@link #MaterialComponentsTheme_materialCardViewStyle org.muctec.smartfritz:materialCardViewStyle}
{@link #MaterialComponentsTheme_navigationViewStyle org.muctec.smartfritz:navigationViewStyle}
{@link #MaterialComponentsTheme_scrimBackground org.muctec.smartfritz:scrimBackground}
{@link #MaterialComponentsTheme_snackbarButtonStyle org.muctec.smartfritz:snackbarButtonStyle}
{@link #MaterialComponentsTheme_tabStyle org.muctec.smartfritz:tabStyle}
{@link #MaterialComponentsTheme_textAppearanceBody1 org.muctec.smartfritz:textAppearanceBody1}
{@link #MaterialComponentsTheme_textAppearanceBody2 org.muctec.smartfritz:textAppearanceBody2}
{@link #MaterialComponentsTheme_textAppearanceButton org.muctec.smartfritz:textAppearanceButton}
{@link #MaterialComponentsTheme_textAppearanceCaption org.muctec.smartfritz:textAppearanceCaption}
{@link #MaterialComponentsTheme_textAppearanceHeadline1 org.muctec.smartfritz:textAppearanceHeadline1}
{@link #MaterialComponentsTheme_textAppearanceHeadline2 org.muctec.smartfritz:textAppearanceHeadline2}
{@link #MaterialComponentsTheme_textAppearanceHeadline3 org.muctec.smartfritz:textAppearanceHeadline3}
{@link #MaterialComponentsTheme_textAppearanceHeadline4 org.muctec.smartfritz:textAppearanceHeadline4}
{@link #MaterialComponentsTheme_textAppearanceHeadline5 org.muctec.smartfritz:textAppearanceHeadline5}
{@link #MaterialComponentsTheme_textAppearanceHeadline6 org.muctec.smartfritz:textAppearanceHeadline6}
{@link #MaterialComponentsTheme_textAppearanceOverline org.muctec.smartfritz:textAppearanceOverline}
{@link #MaterialComponentsTheme_textAppearanceSubtitle1 org.muctec.smartfritz:textAppearanceSubtitle1}
{@link #MaterialComponentsTheme_textAppearanceSubtitle2 org.muctec.smartfritz:textAppearanceSubtitle2}
{@link #MaterialComponentsTheme_textInputStyle org.muctec.smartfritz:textInputStyle}
+ * @see #MaterialComponentsTheme_bottomSheetDialogTheme + * @see #MaterialComponentsTheme_bottomSheetStyle + * @see #MaterialComponentsTheme_chipGroupStyle + * @see #MaterialComponentsTheme_chipStandaloneStyle + * @see #MaterialComponentsTheme_chipStyle + * @see #MaterialComponentsTheme_colorAccent + * @see #MaterialComponentsTheme_colorBackgroundFloating + * @see #MaterialComponentsTheme_colorPrimary + * @see #MaterialComponentsTheme_colorPrimaryDark + * @see #MaterialComponentsTheme_colorSecondary + * @see #MaterialComponentsTheme_editTextStyle + * @see #MaterialComponentsTheme_floatingActionButtonStyle + * @see #MaterialComponentsTheme_materialButtonStyle + * @see #MaterialComponentsTheme_materialCardViewStyle + * @see #MaterialComponentsTheme_navigationViewStyle + * @see #MaterialComponentsTheme_scrimBackground + * @see #MaterialComponentsTheme_snackbarButtonStyle + * @see #MaterialComponentsTheme_tabStyle + * @see #MaterialComponentsTheme_textAppearanceBody1 + * @see #MaterialComponentsTheme_textAppearanceBody2 + * @see #MaterialComponentsTheme_textAppearanceButton + * @see #MaterialComponentsTheme_textAppearanceCaption + * @see #MaterialComponentsTheme_textAppearanceHeadline1 + * @see #MaterialComponentsTheme_textAppearanceHeadline2 + * @see #MaterialComponentsTheme_textAppearanceHeadline3 + * @see #MaterialComponentsTheme_textAppearanceHeadline4 + * @see #MaterialComponentsTheme_textAppearanceHeadline5 + * @see #MaterialComponentsTheme_textAppearanceHeadline6 + * @see #MaterialComponentsTheme_textAppearanceOverline + * @see #MaterialComponentsTheme_textAppearanceSubtitle1 + * @see #MaterialComponentsTheme_textAppearanceSubtitle2 + * @see #MaterialComponentsTheme_textInputStyle + */ + public static final int[] MaterialComponentsTheme={ + 0x7f030041, 0x7f030042, 0x7f030068, 0x7f030072, + 0x7f030076, 0x7f030084, 0x7f030085, 0x7f03008b, + 0x7f03008c, 0x7f03008d, 0x7f0300b4, 0x7f0300cf, + 0x7f030125, 0x7f030126, 0x7f030130, 0x7f03014f, + 0x7f03015f, 0x7f030192, 0x7f030197, 0x7f030198, + 0x7f030199, 0x7f03019a, 0x7f03019b, 0x7f03019c, + 0x7f03019d, 0x7f03019e, 0x7f03019f, 0x7f0301a0, + 0x7f0301a5, 0x7f0301aa, 0x7f0301ab, 0x7f0301af + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#bottomSheetDialogTheme} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:bottomSheetDialogTheme + */ + public static final int MaterialComponentsTheme_bottomSheetDialogTheme=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#bottomSheetStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:bottomSheetStyle + */ + public static final int MaterialComponentsTheme_bottomSheetStyle=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipGroupStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:chipGroupStyle + */ + public static final int MaterialComponentsTheme_chipGroupStyle=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipStandaloneStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:chipStandaloneStyle + */ + public static final int MaterialComponentsTheme_chipStandaloneStyle=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#chipStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:chipStyle + */ + public static final int MaterialComponentsTheme_chipStyle=4; + /** + *

+ * @attr description + * Bright complement to the primary branding color. By default, this is the color applied + * to framework controls (via colorControlActivated). + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorAccent + */ + public static final int MaterialComponentsTheme_colorAccent=5; + /** + *

+ * @attr description + * Default color of background imagery for floating components, ex. dialogs, popups, and cards. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorBackgroundFloating + */ + public static final int MaterialComponentsTheme_colorBackgroundFloating=6; + /** + *

+ * @attr description + * The primary branding color for the app. By default, this is the color applied to the + * action bar background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorPrimary + */ + public static final int MaterialComponentsTheme_colorPrimary=7; + /** + *

+ * @attr description + * Dark variant of the primary branding color. By default, this is the color applied to + * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorPrimaryDark + */ + public static final int MaterialComponentsTheme_colorPrimaryDark=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#colorSecondary} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:colorSecondary + */ + public static final int MaterialComponentsTheme_colorSecondary=9; + /** + *

+ * @attr description + * Default EditText style. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:editTextStyle + */ + public static final int MaterialComponentsTheme_editTextStyle=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#floatingActionButtonStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + *

May be an integer value, such as "100". + *

May be a boolean value, such as "true" or + * "false". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + *

May be a floating point value, such as "1.2". + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name org.muctec.smartfritz:floatingActionButtonStyle + */ + public static final int MaterialComponentsTheme_floatingActionButtonStyle=11; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#materialButtonStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:materialButtonStyle + */ + public static final int MaterialComponentsTheme_materialButtonStyle=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#materialCardViewStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:materialCardViewStyle + */ + public static final int MaterialComponentsTheme_materialCardViewStyle=13; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#navigationViewStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:navigationViewStyle + */ + public static final int MaterialComponentsTheme_navigationViewStyle=14; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#scrimBackground} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:scrimBackground + */ + public static final int MaterialComponentsTheme_scrimBackground=15; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#snackbarButtonStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:snackbarButtonStyle + */ + public static final int MaterialComponentsTheme_snackbarButtonStyle=16; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:tabStyle + */ + public static final int MaterialComponentsTheme_tabStyle=17; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceBody1} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceBody1 + */ + public static final int MaterialComponentsTheme_textAppearanceBody1=18; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceBody2} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceBody2 + */ + public static final int MaterialComponentsTheme_textAppearanceBody2=19; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceButton} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceButton + */ + public static final int MaterialComponentsTheme_textAppearanceButton=20; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceCaption} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceCaption + */ + public static final int MaterialComponentsTheme_textAppearanceCaption=21; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceHeadline1} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceHeadline1 + */ + public static final int MaterialComponentsTheme_textAppearanceHeadline1=22; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceHeadline2} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceHeadline2 + */ + public static final int MaterialComponentsTheme_textAppearanceHeadline2=23; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceHeadline3} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceHeadline3 + */ + public static final int MaterialComponentsTheme_textAppearanceHeadline3=24; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceHeadline4} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceHeadline4 + */ + public static final int MaterialComponentsTheme_textAppearanceHeadline4=25; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceHeadline5} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceHeadline5 + */ + public static final int MaterialComponentsTheme_textAppearanceHeadline5=26; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceHeadline6} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceHeadline6 + */ + public static final int MaterialComponentsTheme_textAppearanceHeadline6=27; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceOverline} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceOverline + */ + public static final int MaterialComponentsTheme_textAppearanceOverline=28; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceSubtitle1} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceSubtitle1 + */ + public static final int MaterialComponentsTheme_textAppearanceSubtitle1=29; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textAppearanceSubtitle2} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textAppearanceSubtitle2 + */ + public static final int MaterialComponentsTheme_textAppearanceSubtitle2=30; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#textInputStyle} + * attribute's value can be found in the {@link #MaterialComponentsTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:textInputStyle + */ + public static final int MaterialComponentsTheme_textInputStyle=31; + /** + * Attributes that can be used with a MenuGroup. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_visible android:visible}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
+ * @see #MenuGroup_android_enabled + * @see #MenuGroup_android_id + * @see #MenuGroup_android_visible + * @see #MenuGroup_android_menuCategory + * @see #MenuGroup_android_orderInCategory + * @see #MenuGroup_android_checkableBehavior + */ + public static final int[] MenuGroup={ + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** + *

+ * @attr description + * Whether the items are enabled. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int MenuGroup_android_enabled=0; + /** + *

+ * @attr description + * The ID of the group. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int MenuGroup_android_id=1; + /** + *

+ * @attr description + * Whether the items are shown/visible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int MenuGroup_android_visible=2; + /** + *

+ * @attr description + * The category applied to all items within this group. + * (This will be or'ed with the orderInCategory attribute.) + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
+ * + * @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory=3; + /** + *

+ * @attr description + * The order within the category applied to all items within this group. + * (This will be or'ed with the category attribute.) + * + *

May be an integer value, such as "100". + * + * @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory=4; + /** + *

+ * @attr description + * Whether the items are capable of displaying a check mark. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
all1
none0
single2
+ * + * @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior=5; + /** + * Attributes that can be used with a MenuItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_actionLayout org.muctec.smartfritz:actionLayout}An optional layout to be used as an action view.
{@link #MenuItem_actionProviderClass org.muctec.smartfritz:actionProviderClass}The name of an optional ActionProvider class to instantiate an action view + * and perform operations such as default action for that menu item.
{@link #MenuItem_actionViewClass org.muctec.smartfritz:actionViewClass}The name of an optional View class to instantiate and use as an + * action view.
{@link #MenuItem_alphabeticModifiers org.muctec.smartfritz:alphabeticModifiers}The alphabetic modifier key.
{@link #MenuItem_contentDescription org.muctec.smartfritz:contentDescription}The content description associated with the item.
{@link #MenuItem_iconTint org.muctec.smartfritz:iconTint}Tint to apply to the icon.
{@link #MenuItem_iconTintMode org.muctec.smartfritz:iconTintMode}Blending mode used to apply the icon tint.
{@link #MenuItem_numericModifiers org.muctec.smartfritz:numericModifiers}The numeric modifier key.
{@link #MenuItem_showAsAction org.muctec.smartfritz:showAsAction}How this item should display in the Action Bar, if present.
{@link #MenuItem_tooltipText org.muctec.smartfritz:tooltipText}The tooltip text associated with the item.
+ * @see #MenuItem_android_icon + * @see #MenuItem_android_enabled + * @see #MenuItem_android_id + * @see #MenuItem_android_checked + * @see #MenuItem_android_visible + * @see #MenuItem_android_menuCategory + * @see #MenuItem_android_orderInCategory + * @see #MenuItem_android_title + * @see #MenuItem_android_titleCondensed + * @see #MenuItem_android_alphabeticShortcut + * @see #MenuItem_android_numericShortcut + * @see #MenuItem_android_checkable + * @see #MenuItem_android_onClick + * @see #MenuItem_actionLayout + * @see #MenuItem_actionProviderClass + * @see #MenuItem_actionViewClass + * @see #MenuItem_alphabeticModifiers + * @see #MenuItem_contentDescription + * @see #MenuItem_iconTint + * @see #MenuItem_iconTintMode + * @see #MenuItem_numericModifiers + * @see #MenuItem_showAsAction + * @see #MenuItem_tooltipText + */ + public static final int[] MenuItem={ + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f03000d, 0x7f03001f, 0x7f030020, + 0x7f030028, 0x7f030090, 0x7f0300f2, 0x7f0300f3, + 0x7f030131, 0x7f030157, 0x7f0301cb + }; + /** + *

+ * @attr description + * The icon associated with this item. This icon will not always be shown, so + * the title should be sufficient in describing this item. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:icon + */ + public static final int MenuItem_android_icon=0; + /** + *

+ * @attr description + * Whether the item is enabled. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int MenuItem_android_enabled=1; + /** + *

+ * @attr description + * The ID of the item. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int MenuItem_android_id=2; + /** + *

+ * @attr description + * Whether the item is checked. Note that you must first have enabled checking with + * the checkable attribute or else the check mark will not appear. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checked + */ + public static final int MenuItem_android_checked=3; + /** + *

+ * @attr description + * Whether the item is shown/visible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int MenuItem_android_visible=4; + /** + *

+ * @attr description + * The category applied to the item. + * (This will be or'ed with the orderInCategory attribute.) + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
+ * + * @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory=5; + /** + *

+ * @attr description + * The order within the category applied to the item. + * (This will be or'ed with the category attribute.) + * + *

May be an integer value, such as "100". + * + * @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory=6; + /** + *

+ * @attr description + * The title associated with the item. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:title + */ + public static final int MenuItem_android_title=7; + /** + *

+ * @attr description + * The condensed title associated with the item. This is used in situations where the + * normal title may be too long to be displayed. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed=8; + /** + *

+ * @attr description + * The alphabetic shortcut key. This is the shortcut when using a keyboard + * with alphabetic keys. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut=9; + /** + *

+ * @attr description + * The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) + * keyboard. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut=10; + /** + *

+ * @attr description + * Whether the item is capable of displaying a check mark. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checkable + */ + public static final int MenuItem_android_checkable=11; + /** + *

+ * @attr description + * Name of a method on the Context used to inflate the menu that will be + * called when the item is clicked. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:onClick + */ + public static final int MenuItem_android_onClick=12; + /** + *

+ * @attr description + * An optional layout to be used as an action view. + * See {@link android.view.MenuItem#setActionView(android.view.View)} + * for more info. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:actionLayout + */ + public static final int MenuItem_actionLayout=13; + /** + *

+ * @attr description + * The name of an optional ActionProvider class to instantiate an action view + * and perform operations such as default action for that menu item. + * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} + * for more info. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:actionProviderClass + */ + public static final int MenuItem_actionProviderClass=14; + /** + *

+ * @attr description + * The name of an optional View class to instantiate and use as an + * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} + * for more info. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:actionViewClass + */ + public static final int MenuItem_actionViewClass=15; + /** + *

+ * @attr description + * The alphabetic modifier key. This is the modifier when using a keyboard + * with alphabetic keys. The values should be kept in sync with KeyEvent + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ * + * @attr name org.muctec.smartfritz:alphabeticModifiers + */ + public static final int MenuItem_alphabeticModifiers=16; + /** + *

+ * @attr description + * The content description associated with the item. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:contentDescription + */ + public static final int MenuItem_contentDescription=17; + /** + *

+ * @attr description + * Tint to apply to the icon. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:iconTint + */ + public static final int MenuItem_iconTint=18; + /** + *

+ * @attr description + * Blending mode used to apply the icon tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the icon with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the icon, but with the icon’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the icon. The icon’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the icon. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:iconTintMode + */ + public static final int MenuItem_iconTintMode=19; + /** + *

+ * @attr description + * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) + * keyboard. The values should be kept in sync with KeyEvent + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
ALT2
CTRL1000
FUNCTION8
META10000
SHIFT1
SYM4
+ * + * @attr name org.muctec.smartfritz:numericModifiers + */ + public static final int MenuItem_numericModifiers=20; + /** + *

+ * @attr description + * How this item should display in the Action Bar, if present. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
always2Always show this item in an actionbar, even if it would override + * the system's limits of how much stuff to put there. This may make + * your action bar look bad on some screens. In most cases you should + * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".
collapseActionView8This item's action view collapses to a normal menu + * item. When expanded, the action view takes over a + * larger segment of its container.
ifRoom1Show this item in an action bar if there is room for it as determined + * by the system. Favor this option over "always" where possible. + * Mutually exclusive with "never" and "always".
never0Never show this item in an action bar, show it in the overflow menu instead. + * Mutually exclusive with "ifRoom" and "always".
withText4When this item is shown as an action in the action bar, show a text + * label with it even if it has an icon representation.
+ * + * @attr name org.muctec.smartfritz:showAsAction + */ + public static final int MenuItem_showAsAction=21; + /** + *

+ * @attr description + * The tooltip text associated with the item. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:tooltipText + */ + public static final int MenuItem_tooltipText=22; + /** + * Attributes that can be used with a MenuView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_preserveIconSpacing org.muctec.smartfritz:preserveIconSpacing}Whether space should be reserved in layout when an icon is missing.
{@link #MenuView_subMenuArrow org.muctec.smartfritz:subMenuArrow}Drawable for the arrow icon indicating a particular item is a submenu.
+ * @see #MenuView_android_windowAnimationStyle + * @see #MenuView_android_itemTextAppearance + * @see #MenuView_android_horizontalDivider + * @see #MenuView_android_verticalDivider + * @see #MenuView_android_headerBackground + * @see #MenuView_android_itemBackground + * @see #MenuView_android_itemIconDisabledAlpha + * @see #MenuView_preserveIconSpacing + * @see #MenuView_subMenuArrow + */ + public static final int[] MenuView={ + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f030142, + 0x7f030171 + }; + /** + *

+ * @attr description + * Default animations for the menu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle=0; + /** + *

+ * @attr description + * Default appearance of menu item text. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance=1; + /** + *

+ * @attr description + * Default horizontal divider between rows of menu items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider=2; + /** + *

+ * @attr description + * Default vertical divider between menu items. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider=3; + /** + *

+ * @attr description + * Default background for the menu header. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground=4; + /** + *

+ * @attr description + * Default background for each menu item. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground=5; + /** + *

+ * @attr description + * Default disabled icon alpha for each menu item that shows an icon. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha=6; + /** + *

+ * @attr description + * Whether space should be reserved in layout when an icon is missing. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing=7; + /** + *

+ * @attr description + * Drawable for the arrow icon indicating a particular item is a submenu. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:subMenuArrow + */ + public static final int MenuView_subMenuArrow=8; + /** + * Attributes that can be used with a NavigationView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation org.muctec.smartfritz:elevation}Elevation for the action bar itself
{@link #NavigationView_headerLayout org.muctec.smartfritz:headerLayout}
{@link #NavigationView_itemBackground org.muctec.smartfritz:itemBackground}
{@link #NavigationView_itemHorizontalPadding org.muctec.smartfritz:itemHorizontalPadding}
{@link #NavigationView_itemIconPadding org.muctec.smartfritz:itemIconPadding}
{@link #NavigationView_itemIconTint org.muctec.smartfritz:itemIconTint}
{@link #NavigationView_itemTextAppearance org.muctec.smartfritz:itemTextAppearance}
{@link #NavigationView_itemTextColor org.muctec.smartfritz:itemTextColor}
{@link #NavigationView_menu org.muctec.smartfritz:menu}
+ * @see #NavigationView_android_background + * @see #NavigationView_android_fitsSystemWindows + * @see #NavigationView_android_maxWidth + * @see #NavigationView_elevation + * @see #NavigationView_headerLayout + * @see #NavigationView_itemBackground + * @see #NavigationView_itemHorizontalPadding + * @see #NavigationView_itemIconPadding + * @see #NavigationView_itemIconTint + * @see #NavigationView_itemTextAppearance + * @see #NavigationView_itemTextColor + * @see #NavigationView_menu + */ + public static final int[] NavigationView={ + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f0300b5, + 0x7f0300de, 0x7f0300fa, 0x7f0300fb, 0x7f0300fd, + 0x7f0300ff, 0x7f030102, 0x7f030105, 0x7f03012b + }; + /** + *

This symbol is the offset where the {@link android.R.attr#background} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:background + */ + public static final int NavigationView_android_background=0; + /** + *

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows=1; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth=2; + /** + *

+ * @attr description + * Elevation for the action bar itself + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:elevation + */ + public static final int NavigationView_elevation=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#headerLayout} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:headerLayout + */ + public static final int NavigationView_headerLayout=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemBackground} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:itemBackground + */ + public static final int NavigationView_itemBackground=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemHorizontalPadding} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:itemHorizontalPadding + */ + public static final int NavigationView_itemHorizontalPadding=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemIconPadding} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:itemIconPadding + */ + public static final int NavigationView_itemIconPadding=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemIconTint} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:itemIconTint + */ + public static final int NavigationView_itemIconTint=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemTextAppearance} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#itemTextColor} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:itemTextColor + */ + public static final int NavigationView_itemTextColor=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#menu} + * attribute's value can be found in the {@link #NavigationView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:menu + */ + public static final int NavigationView_menu=11; + /** + * Attributes that can be used with a PopupWindow. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_overlapAnchor org.muctec.smartfritz:overlapAnchor}Whether the popup window should overlap its anchor view.
+ * @see #PopupWindow_android_popupBackground + * @see #PopupWindow_android_popupAnimationStyle + * @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow={ + 0x01010176, 0x010102c9, 0x7f030132 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#popupBackground} + * attribute's value can be found in the {@link #PopupWindow} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground=0; + /** + *

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + * attribute's value can be found in the {@link #PopupWindow} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle=1; + /** + *

+ * @attr description + * Whether the popup window should overlap its anchor view. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor=2; + /** + * Attributes that can be used with a PopupWindowBackgroundState. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor org.muctec.smartfritz:state_above_anchor}State identifier indicating the popup will be above the anchor.
+ * @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState={ + 0x7f030168 + }; + /** + *

+ * @attr description + * State identifier indicating the popup will be above the anchor. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor=0; + /** + * Attributes that can be used with a RecycleListView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons org.muctec.smartfritz:paddingBottomNoButtons}Bottom padding to use when no buttons are present.
{@link #RecycleListView_paddingTopNoTitle org.muctec.smartfritz:paddingTopNoTitle}Top padding to use when no title is present.
+ * @see #RecycleListView_paddingBottomNoButtons + * @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView={ + 0x7f030133, 0x7f030136 + }; + /** + *

+ * @attr description + * Bottom padding to use when no buttons are present. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons=0; + /** + *

+ * @attr description + * Top padding to use when no title is present. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle=1; + /** + * Attributes that can be used with a RecyclerView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}
{@link #RecyclerView_fastScrollEnabled org.muctec.smartfritz:fastScrollEnabled}
{@link #RecyclerView_fastScrollHorizontalThumbDrawable org.muctec.smartfritz:fastScrollHorizontalThumbDrawable}
{@link #RecyclerView_fastScrollHorizontalTrackDrawable org.muctec.smartfritz:fastScrollHorizontalTrackDrawable}
{@link #RecyclerView_fastScrollVerticalThumbDrawable org.muctec.smartfritz:fastScrollVerticalThumbDrawable}
{@link #RecyclerView_fastScrollVerticalTrackDrawable org.muctec.smartfritz:fastScrollVerticalTrackDrawable}
{@link #RecyclerView_layoutManager org.muctec.smartfritz:layoutManager}Class name of the Layout Manager to be used.
{@link #RecyclerView_reverseLayout org.muctec.smartfritz:reverseLayout}
{@link #RecyclerView_spanCount org.muctec.smartfritz:spanCount}
{@link #RecyclerView_stackFromEnd org.muctec.smartfritz:stackFromEnd}
+ * @see #RecyclerView_android_orientation + * @see #RecyclerView_android_descendantFocusability + * @see #RecyclerView_fastScrollEnabled + * @see #RecyclerView_fastScrollHorizontalThumbDrawable + * @see #RecyclerView_fastScrollHorizontalTrackDrawable + * @see #RecyclerView_fastScrollVerticalThumbDrawable + * @see #RecyclerView_fastScrollVerticalTrackDrawable + * @see #RecyclerView_layoutManager + * @see #RecyclerView_reverseLayout + * @see #RecyclerView_spanCount + * @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView={ + 0x010100c4, 0x010100f1, 0x7f0300c9, 0x7f0300ca, + 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f03010a, + 0x7f03014c, 0x7f030161, 0x7f030167 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#orientation} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int RecyclerView_android_orientation=0; + /** + *

This symbol is the offset where the {@link android.R.attr#descendantFocusability} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
afterDescendants1
beforeDescendants0
blocksDescendants2
+ * + * @attr name android:descendantFocusability + */ + public static final int RecyclerView_android_descendantFocusability=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fastScrollEnabled} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:fastScrollEnabled + */ + public static final int RecyclerView_fastScrollEnabled=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fastScrollHorizontalThumbDrawable} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:fastScrollHorizontalThumbDrawable + */ + public static final int RecyclerView_fastScrollHorizontalThumbDrawable=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fastScrollHorizontalTrackDrawable} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:fastScrollHorizontalTrackDrawable + */ + public static final int RecyclerView_fastScrollHorizontalTrackDrawable=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fastScrollVerticalThumbDrawable} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:fastScrollVerticalThumbDrawable + */ + public static final int RecyclerView_fastScrollVerticalThumbDrawable=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#fastScrollVerticalTrackDrawable} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:fastScrollVerticalTrackDrawable + */ + public static final int RecyclerView_fastScrollVerticalTrackDrawable=6; + /** + *

+ * @attr description + * Class name of the Layout Manager to be used. + *

+ * The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager + * and have either a default constructor or constructor with the signature + * (android.content.Context, android.util.AttributeSet, int, int). + *

+ * If the name starts with a '.', application package is prefixed. + * Else, if the name contains a '.', the classname is assumed to be a full class name. + * Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:layoutManager + */ + public static final int RecyclerView_layoutManager=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#reverseLayout} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:reverseLayout + */ + public static final int RecyclerView_reverseLayout=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#spanCount} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:spanCount + */ + public static final int RecyclerView_spanCount=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#stackFromEnd} + * attribute's value can be found in the {@link #RecyclerView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd=10; + /** + * Attributes that can be used with a ScrimInsetsFrameLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground org.muctec.smartfritz:insetForeground}
+ * @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout={ + 0x7f0300f8 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#insetForeground} + * attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground=0; + /** + * Attributes that can be used with a ScrollingViewBehavior_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ScrollingViewBehavior_Layout_behavior_overlapTop org.muctec.smartfritz:behavior_overlapTop}
+ * @see #ScrollingViewBehavior_Layout_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Layout={ + 0x7f03003a + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#behavior_overlapTop} + * attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Layout_behavior_overlapTop=0; + /** + * Attributes that can be used with a SearchView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_closeIcon org.muctec.smartfritz:closeIcon}Close button icon
{@link #SearchView_commitIcon org.muctec.smartfritz:commitIcon}Commit icon shown in the query suggestion row
{@link #SearchView_defaultQueryHint org.muctec.smartfritz:defaultQueryHint}Default query hint used when {@code queryHint} is undefined and + * the search view's {@code SearchableInfo} does not provide a hint.
{@link #SearchView_goIcon org.muctec.smartfritz:goIcon}Go button icon
{@link #SearchView_iconifiedByDefault org.muctec.smartfritz:iconifiedByDefault}The default state of the SearchView.
{@link #SearchView_layout org.muctec.smartfritz:layout}The layout to use for the search view.
{@link #SearchView_queryBackground org.muctec.smartfritz:queryBackground}Background for the section containing the search query
{@link #SearchView_queryHint org.muctec.smartfritz:queryHint}An optional user-defined query hint string to be displayed in the empty query field.
{@link #SearchView_searchHintIcon org.muctec.smartfritz:searchHintIcon}Search icon displayed as a text field hint
{@link #SearchView_searchIcon org.muctec.smartfritz:searchIcon}Search icon
{@link #SearchView_submitBackground org.muctec.smartfritz:submitBackground}Background for the section containing the action (e.g.
{@link #SearchView_suggestionRowLayout org.muctec.smartfritz:suggestionRowLayout}Layout for query suggestion rows
{@link #SearchView_voiceIcon org.muctec.smartfritz:voiceIcon}Voice button icon
+ * @see #SearchView_android_focusable + * @see #SearchView_android_maxWidth + * @see #SearchView_android_inputType + * @see #SearchView_android_imeOptions + * @see #SearchView_closeIcon + * @see #SearchView_commitIcon + * @see #SearchView_defaultQueryHint + * @see #SearchView_goIcon + * @see #SearchView_iconifiedByDefault + * @see #SearchView_layout + * @see #SearchView_queryBackground + * @see #SearchView_queryHint + * @see #SearchView_searchHintIcon + * @see #SearchView_searchIcon + * @see #SearchView_submitBackground + * @see #SearchView_suggestionRowLayout + * @see #SearchView_voiceIcon + */ + public static final int[] SearchView={ + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f030077, 0x7f03008f, 0x7f0300a5, 0x7f0300dd, + 0x7f0300f4, 0x7f030109, 0x7f030146, 0x7f030147, + 0x7f030151, 0x7f030152, 0x7f030172, 0x7f030177, + 0x7f0301d2 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#focusable} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a boolean value, such as "true" or + * "false". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
auto10
+ * + * @attr name android:focusable + */ + public static final int SearchView_android_focusable=0; + /** + *

+ * @attr description + * An optional maximum width of the SearchView. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth=1; + /** + *

+ * @attr description + * The input type to set on the query text field. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
date14
datetime4
none0
number2
numberDecimal2002
numberPassword12
numberSigned1002
phone3
text1
textAutoComplete10001
textAutoCorrect8001
textCapCharacters1001
textCapSentences4001
textCapWords2001
textEmailAddress21
textEmailSubject31
textFilterb1
textImeMultiLine40001
textLongMessage51
textMultiLine20001
textNoSuggestions80001
textPassword81
textPersonName61
textPhoneticc1
textPostalAddress71
textShortMessage41
textUri11
textVisiblePassword91
textWebEditTexta1
textWebEmailAddressd1
textWebPassworde1
time24
+ * + * @attr name android:inputType + */ + public static final int SearchView_android_inputType=2; + /** + *

+ * @attr description + * The IME options to set on the query text field. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
actionDone6
actionGo2
actionNext5
actionNone1
actionPrevious7
actionSearch3
actionSend4
actionUnspecified0
flagForceAscii80000000
flagNavigateNext8000000
flagNavigatePrevious4000000
flagNoAccessoryAction20000000
flagNoEnterAction40000000
flagNoExtractUi10000000
flagNoFullscreen2000000
flagNoPersonalizedLearning1000000
normal0
+ * + * @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions=3; + /** + *

+ * @attr description + * Close button icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:closeIcon + */ + public static final int SearchView_closeIcon=4; + /** + *

+ * @attr description + * Commit icon shown in the query suggestion row + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:commitIcon + */ + public static final int SearchView_commitIcon=5; + /** + *

+ * @attr description + * Default query hint used when {@code queryHint} is undefined and + * the search view's {@code SearchableInfo} does not provide a hint. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint=6; + /** + *

+ * @attr description + * Go button icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:goIcon + */ + public static final int SearchView_goIcon=7; + /** + *

+ * @attr description + * The default state of the SearchView. If true, it will be iconified when not in + * use and expanded when clicked. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault=8; + /** + *

+ * @attr description + * The layout to use for the search view. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:layout + */ + public static final int SearchView_layout=9; + /** + *

+ * @attr description + * Background for the section containing the search query + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:queryBackground + */ + public static final int SearchView_queryBackground=10; + /** + *

+ * @attr description + * An optional user-defined query hint string to be displayed in the empty query field. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:queryHint + */ + public static final int SearchView_queryHint=11; + /** + *

+ * @attr description + * Search icon displayed as a text field hint + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:searchHintIcon + */ + public static final int SearchView_searchHintIcon=12; + /** + *

+ * @attr description + * Search icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:searchIcon + */ + public static final int SearchView_searchIcon=13; + /** + *

+ * @attr description + * Background for the section containing the action (e.g. voice search) + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:submitBackground + */ + public static final int SearchView_submitBackground=14; + /** + *

+ * @attr description + * Layout for query suggestion rows + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout=15; + /** + *

+ * @attr description + * Voice button icon + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:voiceIcon + */ + public static final int SearchView_voiceIcon=16; + /** + * Attributes that can be used with a Snackbar. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #Snackbar_snackbarButtonStyle org.muctec.smartfritz:snackbarButtonStyle}
{@link #Snackbar_snackbarStyle org.muctec.smartfritz:snackbarStyle}
+ * @see #Snackbar_snackbarButtonStyle + * @see #Snackbar_snackbarStyle + */ + public static final int[] Snackbar={ + 0x7f03015f, 0x7f030160 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#snackbarButtonStyle} + * attribute's value can be found in the {@link #Snackbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:snackbarButtonStyle + */ + public static final int Snackbar_snackbarButtonStyle=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#snackbarStyle} + * attribute's value can be found in the {@link #Snackbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:snackbarStyle + */ + public static final int Snackbar_snackbarStyle=1; + /** + * Attributes that can be used with a SnackbarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation org.muctec.smartfritz:elevation}Elevation for the action bar itself
{@link #SnackbarLayout_maxActionInlineWidth org.muctec.smartfritz:maxActionInlineWidth}
+ * @see #SnackbarLayout_android_maxWidth + * @see #SnackbarLayout_elevation + * @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout={ + 0x0101011f, 0x7f0300b5, 0x7f030127 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth=0; + /** + *

+ * @attr description + * Elevation for the action bar itself + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:elevation + */ + public static final int SnackbarLayout_elevation=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#maxActionInlineWidth} + * attribute's value can be found in the {@link #SnackbarLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth=2; + /** + * Attributes that can be used with a Spinner. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_popupTheme org.muctec.smartfritz:popupTheme}Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar.
+ * @see #Spinner_android_entries + * @see #Spinner_android_popupBackground + * @see #Spinner_android_prompt + * @see #Spinner_android_dropDownWidth + * @see #Spinner_popupTheme + */ + public static final int[] Spinner={ + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f030140 + }; + /** + *

+ * @attr description + * Reference to an array resource that will populate the Spinner. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:entries + */ + public static final int Spinner_android_entries=0; + /** + *

+ * @attr description + * Background drawable to use for the dropdown in spinnerMode="dropdown". + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground=1; + /** + *

+ * @attr description + * The prompt to display when the spinner's dialog is shown. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:prompt + */ + public static final int Spinner_android_prompt=2; + /** + *

+ * @attr description + * Width of the dropdown in spinnerMode="dropdown". + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth=3; + /** + *

+ * @attr description + * Theme to use for the drop-down or dialog popup window. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:popupTheme + */ + public static final int Spinner_popupTheme=4; + /** + * Attributes that can be used with a StateListDrawable. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #StateListDrawable_android_dither android:dither}
{@link #StateListDrawable_android_visible android:visible}
{@link #StateListDrawable_android_variablePadding android:variablePadding}
{@link #StateListDrawable_android_constantSize android:constantSize}
{@link #StateListDrawable_android_enterFadeDuration android:enterFadeDuration}
{@link #StateListDrawable_android_exitFadeDuration android:exitFadeDuration}
+ * @see #StateListDrawable_android_dither + * @see #StateListDrawable_android_visible + * @see #StateListDrawable_android_variablePadding + * @see #StateListDrawable_android_constantSize + * @see #StateListDrawable_android_enterFadeDuration + * @see #StateListDrawable_android_exitFadeDuration + */ + public static final int[] StateListDrawable={ + 0x0101011c, 0x01010194, 0x01010195, 0x01010196, + 0x0101030c, 0x0101030d + }; + /** + *

+ * @attr description + * Enables or disables dithering of the bitmap if the bitmap does not have the + * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with + * an RGB 565 screen). + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:dither + */ + public static final int StateListDrawable_android_dither=0; + /** + *

+ * @attr description + * Indicates whether the drawable should be initially visible. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int StateListDrawable_android_visible=1; + /** + *

+ * @attr description + * If true, allows the drawable's padding to change based on the + * current state that is selected. If false, the padding will + * stay the same (based on the maximum padding of all the states). + * Enabling this feature requires that the owner of the drawable + * deal with performing layout when the state changes, which is + * often not supported. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:variablePadding + */ + public static final int StateListDrawable_android_variablePadding=2; + /** + *

+ * @attr description + * If true, the drawable's reported internal size will remain + * constant as the state changes; the size is the maximum of all + * of the states. If false, the size will vary based on the + * current state. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:constantSize + */ + public static final int StateListDrawable_android_constantSize=3; + /** + *

+ * @attr description + * Amount of time (in milliseconds) to fade in a new state drawable. + * + *

May be an integer value, such as "100". + * + * @attr name android:enterFadeDuration + */ + public static final int StateListDrawable_android_enterFadeDuration=4; + /** + *

+ * @attr description + * Amount of time (in milliseconds) to fade out an old state drawable. + * + *

May be an integer value, such as "100". + * + * @attr name android:exitFadeDuration + */ + public static final int StateListDrawable_android_exitFadeDuration=5; + /** + * Attributes that can be used with a StateListDrawableItem. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #StateListDrawableItem_android_drawable android:drawable}
+ * @see #StateListDrawableItem_android_drawable + */ + public static final int[] StateListDrawableItem={ + 0x01010199 + }; + /** + *

+ * @attr description + * Reference to a drawable resource to use for the state. If not + * given, the drawable must be defined by the first child tag. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:drawable + */ + public static final int StateListDrawableItem_android_drawable=0; + /** + * Attributes that can be used with a SwitchCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText org.muctec.smartfritz:showText}Whether to draw on/off text.
{@link #SwitchCompat_splitTrack org.muctec.smartfritz:splitTrack}Whether to split the track and leave a gap for the thumb drawable.
{@link #SwitchCompat_switchMinWidth org.muctec.smartfritz:switchMinWidth}Minimum width for the switch component
{@link #SwitchCompat_switchPadding org.muctec.smartfritz:switchPadding}Minimum space between the switch and caption text
{@link #SwitchCompat_switchTextAppearance org.muctec.smartfritz:switchTextAppearance}TextAppearance style for text displayed on the switch thumb.
{@link #SwitchCompat_thumbTextPadding org.muctec.smartfritz:thumbTextPadding}Amount of padding on either side of text within the switch thumb.
{@link #SwitchCompat_thumbTint org.muctec.smartfritz:thumbTint}Tint to apply to the thumb drawable.
{@link #SwitchCompat_thumbTintMode org.muctec.smartfritz:thumbTintMode}Blending mode used to apply the thumb tint.
{@link #SwitchCompat_track org.muctec.smartfritz:track}Drawable to use as the "track" that the switch thumb slides within.
{@link #SwitchCompat_trackTint org.muctec.smartfritz:trackTint}Tint to apply to the track.
{@link #SwitchCompat_trackTintMode org.muctec.smartfritz:trackTintMode}Blending mode used to apply the track tint.
+ * @see #SwitchCompat_android_textOn + * @see #SwitchCompat_android_textOff + * @see #SwitchCompat_android_thumb + * @see #SwitchCompat_showText + * @see #SwitchCompat_splitTrack + * @see #SwitchCompat_switchMinWidth + * @see #SwitchCompat_switchPadding + * @see #SwitchCompat_switchTextAppearance + * @see #SwitchCompat_thumbTextPadding + * @see #SwitchCompat_thumbTint + * @see #SwitchCompat_thumbTintMode + * @see #SwitchCompat_track + * @see #SwitchCompat_trackTint + * @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat={ + 0x01010124, 0x01010125, 0x01010142, 0x7f03015a, + 0x7f030165, 0x7f030178, 0x7f030179, 0x7f03017b, + 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301cc, + 0x7f0301cd, 0x7f0301ce + }; + /** + *

+ * @attr description + * Text to use when the switch is in the checked/"on" state. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn=0; + /** + *

+ * @attr description + * Text to use when the switch is in the unchecked/"off" state. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff=1; + /** + *

+ * @attr description + * Drawable to use as the "thumb" that switches back and forth. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb=2; + /** + *

+ * @attr description + * Whether to draw on/off text. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:showText + */ + public static final int SwitchCompat_showText=3; + /** + *

+ * @attr description + * Whether to split the track and leave a gap for the thumb drawable. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:splitTrack + */ + public static final int SwitchCompat_splitTrack=4; + /** + *

+ * @attr description + * Minimum width for the switch component + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth=5; + /** + *

+ * @attr description + * Minimum space between the switch and caption text + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:switchPadding + */ + public static final int SwitchCompat_switchPadding=6; + /** + *

+ * @attr description + * TextAppearance style for text displayed on the switch thumb. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance=7; + /** + *

+ * @attr description + * Amount of padding on either side of text within the switch thumb. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding=8; + /** + *

+ * @attr description + * Tint to apply to the thumb drawable. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:thumbTint + */ + public static final int SwitchCompat_thumbTint=9; + /** + *

+ * @attr description + * Blending mode used to apply the thumb tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode=10; + /** + *

+ * @attr description + * Drawable to use as the "track" that the switch thumb slides within. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:track + */ + public static final int SwitchCompat_track=11; + /** + *

+ * @attr description + * Tint to apply to the track. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:trackTint + */ + public static final int SwitchCompat_trackTint=12; + /** + *

+ * @attr description + * Blending mode used to apply the track tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and drawable color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:trackTintMode + */ + public static final int SwitchCompat_trackTintMode=13; + /** + * Attributes that can be used with a TabItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ * @see #TabItem_android_icon + * @see #TabItem_android_layout + * @see #TabItem_android_text + */ + public static final int[] TabItem={ + 0x01010002, 0x010100f2, 0x0101014f + }; + /** + *

This symbol is the offset where the {@link android.R.attr#icon} + * attribute's value can be found in the {@link #TabItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:icon + */ + public static final int TabItem_android_icon=0; + /** + *

This symbol is the offset where the {@link android.R.attr#layout} + * attribute's value can be found in the {@link #TabItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:layout + */ + public static final int TabItem_android_layout=1; + /** + *

This symbol is the offset where the {@link android.R.attr#text} + * attribute's value can be found in the {@link #TabItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:text + */ + public static final int TabItem_android_text=2; + /** + * Attributes that can be used with a TabLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #TabLayout_tabBackground org.muctec.smartfritz:tabBackground}
{@link #TabLayout_tabContentStart org.muctec.smartfritz:tabContentStart}
{@link #TabLayout_tabGravity org.muctec.smartfritz:tabGravity}
{@link #TabLayout_tabIconTint org.muctec.smartfritz:tabIconTint}
{@link #TabLayout_tabIconTintMode org.muctec.smartfritz:tabIconTintMode}
{@link #TabLayout_tabIndicator org.muctec.smartfritz:tabIndicator}
{@link #TabLayout_tabIndicatorAnimationDuration org.muctec.smartfritz:tabIndicatorAnimationDuration}
{@link #TabLayout_tabIndicatorColor org.muctec.smartfritz:tabIndicatorColor}
{@link #TabLayout_tabIndicatorFullWidth org.muctec.smartfritz:tabIndicatorFullWidth}
{@link #TabLayout_tabIndicatorGravity org.muctec.smartfritz:tabIndicatorGravity}
{@link #TabLayout_tabIndicatorHeight org.muctec.smartfritz:tabIndicatorHeight}
{@link #TabLayout_tabInlineLabel org.muctec.smartfritz:tabInlineLabel}
{@link #TabLayout_tabMaxWidth org.muctec.smartfritz:tabMaxWidth}
{@link #TabLayout_tabMinWidth org.muctec.smartfritz:tabMinWidth}
{@link #TabLayout_tabMode org.muctec.smartfritz:tabMode}
{@link #TabLayout_tabPadding org.muctec.smartfritz:tabPadding}
{@link #TabLayout_tabPaddingBottom org.muctec.smartfritz:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd org.muctec.smartfritz:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart org.muctec.smartfritz:tabPaddingStart}
{@link #TabLayout_tabPaddingTop org.muctec.smartfritz:tabPaddingTop}
{@link #TabLayout_tabRippleColor org.muctec.smartfritz:tabRippleColor}
{@link #TabLayout_tabSelectedTextColor org.muctec.smartfritz:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance org.muctec.smartfritz:tabTextAppearance}
{@link #TabLayout_tabTextColor org.muctec.smartfritz:tabTextColor}
{@link #TabLayout_tabUnboundedRipple org.muctec.smartfritz:tabUnboundedRipple}
+ * @see #TabLayout_tabBackground + * @see #TabLayout_tabContentStart + * @see #TabLayout_tabGravity + * @see #TabLayout_tabIconTint + * @see #TabLayout_tabIconTintMode + * @see #TabLayout_tabIndicator + * @see #TabLayout_tabIndicatorAnimationDuration + * @see #TabLayout_tabIndicatorColor + * @see #TabLayout_tabIndicatorFullWidth + * @see #TabLayout_tabIndicatorGravity + * @see #TabLayout_tabIndicatorHeight + * @see #TabLayout_tabInlineLabel + * @see #TabLayout_tabMaxWidth + * @see #TabLayout_tabMinWidth + * @see #TabLayout_tabMode + * @see #TabLayout_tabPadding + * @see #TabLayout_tabPaddingBottom + * @see #TabLayout_tabPaddingEnd + * @see #TabLayout_tabPaddingStart + * @see #TabLayout_tabPaddingTop + * @see #TabLayout_tabRippleColor + * @see #TabLayout_tabSelectedTextColor + * @see #TabLayout_tabTextAppearance + * @see #TabLayout_tabTextColor + * @see #TabLayout_tabUnboundedRipple + */ + public static final int[] TabLayout={ + 0x7f03017c, 0x7f03017d, 0x7f03017e, 0x7f03017f, + 0x7f030180, 0x7f030181, 0x7f030182, 0x7f030183, + 0x7f030184, 0x7f030185, 0x7f030186, 0x7f030187, + 0x7f030188, 0x7f030189, 0x7f03018a, 0x7f03018b, + 0x7f03018c, 0x7f03018d, 0x7f03018e, 0x7f03018f, + 0x7f030190, 0x7f030191, 0x7f030193, 0x7f030194, + 0x7f030195 + }; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabBackground} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:tabBackground + */ + public static final int TabLayout_tabBackground=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabContentStart} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabContentStart + */ + public static final int TabLayout_tabContentStart=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabGravity} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
center1
fill0
+ * + * @attr name org.muctec.smartfritz:tabGravity + */ + public static final int TabLayout_tabGravity=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIconTint} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tabIconTint + */ + public static final int TabLayout_tabIconTint=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIconTintMode} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
+ * + * @attr name org.muctec.smartfritz:tabIconTintMode + */ + public static final int TabLayout_tabIconTintMode=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIndicator} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:tabIndicator + */ + public static final int TabLayout_tabIndicator=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIndicatorAnimationDuration} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:tabIndicatorAnimationDuration + */ + public static final int TabLayout_tabIndicatorAnimationDuration=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIndicatorColor} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIndicatorFullWidth} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:tabIndicatorFullWidth + */ + public static final int TabLayout_tabIndicatorFullWidth=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIndicatorGravity} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom0
center1
stretch3
top2
+ * + * @attr name org.muctec.smartfritz:tabIndicatorGravity + */ + public static final int TabLayout_tabIndicatorGravity=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabIndicatorHeight} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabInlineLabel} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:tabInlineLabel + */ + public static final int TabLayout_tabInlineLabel=11; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabMaxWidth} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabMinWidth} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabMinWidth + */ + public static final int TabLayout_tabMinWidth=13; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabMode} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
fixed1
scrollable0
+ * + * @attr name org.muctec.smartfritz:tabMode + */ + public static final int TabLayout_tabMode=14; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabPadding} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabPadding + */ + public static final int TabLayout_tabPadding=15; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabPaddingBottom} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom=16; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabPaddingEnd} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd=17; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabPaddingStart} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart=18; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabPaddingTop} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop=19; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabRippleColor} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tabRippleColor + */ + public static final int TabLayout_tabRippleColor=20; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabSelectedTextColor} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor=21; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabTextAppearance} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance=22; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabTextColor} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:tabTextColor + */ + public static final int TabLayout_tabTextColor=23; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#tabUnboundedRipple} + * attribute's value can be found in the {@link #TabLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:tabUnboundedRipple + */ + public static final int TabLayout_tabUnboundedRipple=24; + /** + * Attributes that can be used with a TextAppearance. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_fontFamily android:fontFamily}
{@link #TextAppearance_fontFamily org.muctec.smartfritz:fontFamily}The attribute for the font family.
{@link #TextAppearance_textAllCaps org.muctec.smartfritz:textAllCaps}Present the text in ALL CAPS.
+ * @see #TextAppearance_android_textSize + * @see #TextAppearance_android_typeface + * @see #TextAppearance_android_textStyle + * @see #TextAppearance_android_textColor + * @see #TextAppearance_android_textColorHint + * @see #TextAppearance_android_textColorLink + * @see #TextAppearance_android_shadowColor + * @see #TextAppearance_android_shadowDx + * @see #TextAppearance_android_shadowDy + * @see #TextAppearance_android_shadowRadius + * @see #TextAppearance_android_fontFamily + * @see #TextAppearance_fontFamily + * @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance={ + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, + 0x01010163, 0x01010164, 0x010103ac, 0x7f0300d1, + 0x7f030196 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textSize} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:textSize + */ + public static final int TextAppearance_android_textSize=0; + /** + *

This symbol is the offset where the {@link android.R.attr#typeface} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
monospace3
normal0
sans1
serif2
+ * + * @attr name android:typeface + */ + public static final int TextAppearance_android_typeface=1; + /** + *

This symbol is the offset where the {@link android.R.attr#textStyle} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
bold1
italic2
normal0
+ * + * @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle=2; + /** + *

This symbol is the offset where the {@link android.R.attr#textColor} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColor + */ + public static final int TextAppearance_android_textColor=3; + /** + *

This symbol is the offset where the {@link android.R.attr#textColorHint} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint=4; + /** + *

This symbol is the offset where the {@link android.R.attr#textColorLink} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColorLink + */ + public static final int TextAppearance_android_textColorLink=5; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowColor} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor=6; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowDx} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx=7; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowDy} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy=8; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowRadius} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius=9; + /** + *

This symbol is the offset where the {@link android.R.attr#fontFamily} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:fontFamily + */ + public static final int TextAppearance_android_fontFamily=10; + /** + *

+ * @attr description + * The attribute for the font family. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:fontFamily + */ + public static final int TextAppearance_fontFamily=11; + /** + *

+ * @attr description + * Present the text in ALL CAPS. This may use a small-caps form when available. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:textAllCaps + */ + public static final int TextAppearance_textAllCaps=12; + /** + * Attributes that can be used with a TextInputLayout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_boxBackgroundColor org.muctec.smartfritz:boxBackgroundColor}
{@link #TextInputLayout_boxBackgroundMode org.muctec.smartfritz:boxBackgroundMode}
{@link #TextInputLayout_boxCollapsedPaddingTop org.muctec.smartfritz:boxCollapsedPaddingTop}
{@link #TextInputLayout_boxCornerRadiusBottomEnd org.muctec.smartfritz:boxCornerRadiusBottomEnd}
{@link #TextInputLayout_boxCornerRadiusBottomStart org.muctec.smartfritz:boxCornerRadiusBottomStart}
{@link #TextInputLayout_boxCornerRadiusTopEnd org.muctec.smartfritz:boxCornerRadiusTopEnd}
{@link #TextInputLayout_boxCornerRadiusTopStart org.muctec.smartfritz:boxCornerRadiusTopStart}
{@link #TextInputLayout_boxStrokeColor org.muctec.smartfritz:boxStrokeColor}
{@link #TextInputLayout_boxStrokeWidth org.muctec.smartfritz:boxStrokeWidth}
{@link #TextInputLayout_counterEnabled org.muctec.smartfritz:counterEnabled}
{@link #TextInputLayout_counterMaxLength org.muctec.smartfritz:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance org.muctec.smartfritz:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance org.muctec.smartfritz:counterTextAppearance}
{@link #TextInputLayout_errorEnabled org.muctec.smartfritz:errorEnabled}
{@link #TextInputLayout_errorTextAppearance org.muctec.smartfritz:errorTextAppearance}
{@link #TextInputLayout_helperText org.muctec.smartfritz:helperText}
{@link #TextInputLayout_helperTextEnabled org.muctec.smartfritz:helperTextEnabled}
{@link #TextInputLayout_helperTextTextAppearance org.muctec.smartfritz:helperTextTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled org.muctec.smartfritz:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled org.muctec.smartfritz:hintEnabled}
{@link #TextInputLayout_hintTextAppearance org.muctec.smartfritz:hintTextAppearance}
{@link #TextInputLayout_passwordToggleContentDescription org.muctec.smartfritz:passwordToggleContentDescription}
{@link #TextInputLayout_passwordToggleDrawable org.muctec.smartfritz:passwordToggleDrawable}
{@link #TextInputLayout_passwordToggleEnabled org.muctec.smartfritz:passwordToggleEnabled}
{@link #TextInputLayout_passwordToggleTint org.muctec.smartfritz:passwordToggleTint}
{@link #TextInputLayout_passwordToggleTintMode org.muctec.smartfritz:passwordToggleTintMode}
+ * @see #TextInputLayout_android_textColorHint + * @see #TextInputLayout_android_hint + * @see #TextInputLayout_boxBackgroundColor + * @see #TextInputLayout_boxBackgroundMode + * @see #TextInputLayout_boxCollapsedPaddingTop + * @see #TextInputLayout_boxCornerRadiusBottomEnd + * @see #TextInputLayout_boxCornerRadiusBottomStart + * @see #TextInputLayout_boxCornerRadiusTopEnd + * @see #TextInputLayout_boxCornerRadiusTopStart + * @see #TextInputLayout_boxStrokeColor + * @see #TextInputLayout_boxStrokeWidth + * @see #TextInputLayout_counterEnabled + * @see #TextInputLayout_counterMaxLength + * @see #TextInputLayout_counterOverflowTextAppearance + * @see #TextInputLayout_counterTextAppearance + * @see #TextInputLayout_errorEnabled + * @see #TextInputLayout_errorTextAppearance + * @see #TextInputLayout_helperText + * @see #TextInputLayout_helperTextEnabled + * @see #TextInputLayout_helperTextTextAppearance + * @see #TextInputLayout_hintAnimationEnabled + * @see #TextInputLayout_hintEnabled + * @see #TextInputLayout_hintTextAppearance + * @see #TextInputLayout_passwordToggleContentDescription + * @see #TextInputLayout_passwordToggleDrawable + * @see #TextInputLayout_passwordToggleEnabled + * @see #TextInputLayout_passwordToggleTint + * @see #TextInputLayout_passwordToggleTintMode + */ + public static final int[] TextInputLayout={ + 0x0101009a, 0x01010150, 0x7f030043, 0x7f030044, + 0x7f030045, 0x7f030046, 0x7f030047, 0x7f030048, + 0x7f030049, 0x7f03004a, 0x7f03004b, 0x7f0300a0, + 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f0300b8, + 0x7f0300b9, 0x7f0300e0, 0x7f0300e1, 0x7f0300e2, + 0x7f0300e6, 0x7f0300e7, 0x7f0300e8, 0x7f03013a, + 0x7f03013b, 0x7f03013c, 0x7f03013d, 0x7f03013e + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textColorHint} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint=0; + /** + *

This symbol is the offset where the {@link android.R.attr#hint} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:hint + */ + public static final int TextInputLayout_android_hint=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxBackgroundColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:boxBackgroundColor + */ + public static final int TextInputLayout_boxBackgroundColor=2; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxBackgroundMode} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
filled1
none0
outline2
+ * + * @attr name org.muctec.smartfritz:boxBackgroundMode + */ + public static final int TextInputLayout_boxBackgroundMode=3; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxCollapsedPaddingTop} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:boxCollapsedPaddingTop + */ + public static final int TextInputLayout_boxCollapsedPaddingTop=4; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxCornerRadiusBottomEnd} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:boxCornerRadiusBottomEnd + */ + public static final int TextInputLayout_boxCornerRadiusBottomEnd=5; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxCornerRadiusBottomStart} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:boxCornerRadiusBottomStart + */ + public static final int TextInputLayout_boxCornerRadiusBottomStart=6; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxCornerRadiusTopEnd} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:boxCornerRadiusTopEnd + */ + public static final int TextInputLayout_boxCornerRadiusTopEnd=7; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxCornerRadiusTopStart} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:boxCornerRadiusTopStart + */ + public static final int TextInputLayout_boxCornerRadiusTopStart=8; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxStrokeColor} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:boxStrokeColor + */ + public static final int TextInputLayout_boxStrokeColor=9; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#boxStrokeWidth} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:boxStrokeWidth + */ + public static final int TextInputLayout_boxStrokeWidth=10; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#counterEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:counterEnabled + */ + public static final int TextInputLayout_counterEnabled=11; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#counterMaxLength} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be an integer value, such as "100". + * + * @attr name org.muctec.smartfritz:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#counterOverflowTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance=13; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#counterTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance=14; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#errorEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:errorEnabled + */ + public static final int TextInputLayout_errorEnabled=15; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#errorTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance=16; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#helperText} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:helperText + */ + public static final int TextInputLayout_helperText=17; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#helperTextEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:helperTextEnabled + */ + public static final int TextInputLayout_helperTextEnabled=18; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#helperTextTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:helperTextTextAppearance + */ + public static final int TextInputLayout_helperTextTextAppearance=19; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hintAnimationEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled=20; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hintEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:hintEnabled + */ + public static final int TextInputLayout_hintEnabled=21; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#hintTextAppearance} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance=22; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#passwordToggleContentDescription} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:passwordToggleContentDescription + */ + public static final int TextInputLayout_passwordToggleContentDescription=23; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#passwordToggleDrawable} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:passwordToggleDrawable + */ + public static final int TextInputLayout_passwordToggleDrawable=24; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#passwordToggleEnabled} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:passwordToggleEnabled + */ + public static final int TextInputLayout_passwordToggleEnabled=25; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#passwordToggleTint} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:passwordToggleTint + */ + public static final int TextInputLayout_passwordToggleTint=26; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#passwordToggleTintMode} + * attribute's value can be found in the {@link #TextInputLayout} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
+ * + * @attr name org.muctec.smartfritz:passwordToggleTintMode + */ + public static final int TextInputLayout_passwordToggleTintMode=27; + /** + * Attributes that can be used with a ThemeEnforcement. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ThemeEnforcement_android_textAppearance android:textAppearance}
{@link #ThemeEnforcement_enforceMaterialTheme org.muctec.smartfritz:enforceMaterialTheme}
{@link #ThemeEnforcement_enforceTextAppearance org.muctec.smartfritz:enforceTextAppearance}
+ * @see #ThemeEnforcement_android_textAppearance + * @see #ThemeEnforcement_enforceMaterialTheme + * @see #ThemeEnforcement_enforceTextAppearance + */ + public static final int[] ThemeEnforcement={ + 0x01010034, 0x7f0300b6, 0x7f0300b7 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #ThemeEnforcement} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int ThemeEnforcement_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#enforceMaterialTheme} + * attribute's value can be found in the {@link #ThemeEnforcement} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:enforceMaterialTheme + */ + public static final int ThemeEnforcement_enforceMaterialTheme=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#enforceTextAppearance} + * attribute's value can be found in the {@link #ThemeEnforcement} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name org.muctec.smartfritz:enforceTextAppearance + */ + public static final int ThemeEnforcement_enforceTextAppearance=2; + /** + * Attributes that can be used with a Toolbar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity org.muctec.smartfritz:buttonGravity}
{@link #Toolbar_collapseContentDescription org.muctec.smartfritz:collapseContentDescription}Text to set as the content description for the collapse button.
{@link #Toolbar_collapseIcon org.muctec.smartfritz:collapseIcon}Icon drawable to use for the collapse button.
{@link #Toolbar_contentInsetEnd org.muctec.smartfritz:contentInsetEnd}Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetEndWithActions org.muctec.smartfritz:contentInsetEndWithActions}Minimum inset for content views within a bar when actions from a menu + * are present.
{@link #Toolbar_contentInsetLeft org.muctec.smartfritz:contentInsetLeft}Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetRight org.muctec.smartfritz:contentInsetRight}Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetStart org.muctec.smartfritz:contentInsetStart}Minimum inset for content views within a bar.
{@link #Toolbar_contentInsetStartWithNavigation org.muctec.smartfritz:contentInsetStartWithNavigation}Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button.
{@link #Toolbar_logo org.muctec.smartfritz:logo}Specifies the drawable used for the application logo.
{@link #Toolbar_logoDescription org.muctec.smartfritz:logoDescription}A content description string to describe the appearance of the + * associated logo image.
{@link #Toolbar_maxButtonHeight org.muctec.smartfritz:maxButtonHeight}
{@link #Toolbar_navigationContentDescription org.muctec.smartfritz:navigationContentDescription}Text to set as the content description for the navigation button + * located at the start of the toolbar.
{@link #Toolbar_navigationIcon org.muctec.smartfritz:navigationIcon}Icon drawable to use for the navigation button located at + * the start of the toolbar.
{@link #Toolbar_popupTheme org.muctec.smartfritz:popupTheme}Reference to a theme that should be used to inflate popups + * shown by widgets in the action bar.
{@link #Toolbar_subtitle org.muctec.smartfritz:subtitle}Specifies subtitle text used for navigationMode="normal"
{@link #Toolbar_subtitleTextAppearance org.muctec.smartfritz:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor org.muctec.smartfritz:subtitleTextColor}A color to apply to the subtitle string.
{@link #Toolbar_title org.muctec.smartfritz:title}
{@link #Toolbar_titleMargin org.muctec.smartfritz:titleMargin}Specifies extra space on the left, start, right and end sides + * of the toolbar's title.
{@link #Toolbar_titleMarginBottom org.muctec.smartfritz:titleMarginBottom}Specifies extra space on the bottom side of the toolbar's title.
{@link #Toolbar_titleMarginEnd org.muctec.smartfritz:titleMarginEnd}Specifies extra space on the end side of the toolbar's title.
{@link #Toolbar_titleMarginStart org.muctec.smartfritz:titleMarginStart}Specifies extra space on the start side of the toolbar's title.
{@link #Toolbar_titleMarginTop org.muctec.smartfritz:titleMarginTop}Specifies extra space on the top side of the toolbar's title.
{@link #Toolbar_titleMargins org.muctec.smartfritz:titleMargins}{@deprecated Use titleMargin}
{@link #Toolbar_titleTextAppearance org.muctec.smartfritz:titleTextAppearance}
{@link #Toolbar_titleTextColor org.muctec.smartfritz:titleTextColor}A color to apply to the title string.
+ * @see #Toolbar_android_gravity + * @see #Toolbar_android_minHeight + * @see #Toolbar_buttonGravity + * @see #Toolbar_collapseContentDescription + * @see #Toolbar_collapseIcon + * @see #Toolbar_contentInsetEnd + * @see #Toolbar_contentInsetEndWithActions + * @see #Toolbar_contentInsetLeft + * @see #Toolbar_contentInsetRight + * @see #Toolbar_contentInsetStart + * @see #Toolbar_contentInsetStartWithNavigation + * @see #Toolbar_logo + * @see #Toolbar_logoDescription + * @see #Toolbar_maxButtonHeight + * @see #Toolbar_navigationContentDescription + * @see #Toolbar_navigationIcon + * @see #Toolbar_popupTheme + * @see #Toolbar_subtitle + * @see #Toolbar_subtitleTextAppearance + * @see #Toolbar_subtitleTextColor + * @see #Toolbar_title + * @see #Toolbar_titleMargin + * @see #Toolbar_titleMarginBottom + * @see #Toolbar_titleMarginEnd + * @see #Toolbar_titleMarginStart + * @see #Toolbar_titleMarginTop + * @see #Toolbar_titleMargins + * @see #Toolbar_titleTextAppearance + * @see #Toolbar_titleTextColor + */ + @Deprecated + public static final int[] Toolbar={ + 0x010100af, 0x01010140, 0x7f030051, 0x7f03007f, + 0x7f030080, 0x7f030091, 0x7f030092, 0x7f030093, + 0x7f030094, 0x7f030095, 0x7f030096, 0x7f030123, + 0x7f030124, 0x7f030128, 0x7f03012d, 0x7f03012e, + 0x7f030140, 0x7f030173, 0x7f030174, 0x7f030175, + 0x7f0301bb, 0x7f0301bd, 0x7f0301be, 0x7f0301bf, + 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, + 0x7f0301c4 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#gravity} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:gravity + */ + public static final int Toolbar_android_gravity=0; + /** + *

This symbol is the offset where the {@link android.R.attr#minHeight} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight=1; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#buttonGravity} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50Push object to the bottom of its container, not changing its size.
top30Push object to the top of its container, not changing its size.
+ * + * @attr name org.muctec.smartfritz:buttonGravity + */ + public static final int Toolbar_buttonGravity=2; + /** + *

+ * @attr description + * Text to set as the content description for the collapse button. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription=3; + /** + *

+ * @attr description + * Icon drawable to use for the collapse button. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:collapseIcon + */ + public static final int Toolbar_collapseIcon=4; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd=5; + /** + *

+ * @attr description + * Minimum inset for content views within a bar when actions from a menu + * are present. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions=6; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft=7; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetRight + */ + public static final int Toolbar_contentInsetRight=8; + /** + *

+ * @attr description + * Minimum inset for content views within a bar. Navigation buttons and + * menu views are excepted. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetStart + */ + public static final int Toolbar_contentInsetStart=9; + /** + *

+ * @attr description + * Minimum inset for content views within a bar when a navigation button + * is present, such as the Up button. Only valid for some themes and configurations. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation=10; + /** + *

+ * @attr description + * Drawable to set as the logo that appears at the starting side of + * the Toolbar, just after the navigation button. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:logo + */ + public static final int Toolbar_logo=11; + /** + *

+ * @attr description + * A content description string to describe the appearance of the + * associated logo image. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:logoDescription + */ + public static final int Toolbar_logoDescription=12; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#maxButtonHeight} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight=13; + /** + *

+ * @attr description + * Text to set as the content description for the navigation button + * located at the start of the toolbar. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription=14; + /** + *

+ * @attr description + * Icon drawable to use for the navigation button located at + * the start of the toolbar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:navigationIcon + */ + public static final int Toolbar_navigationIcon=15; + /** + *

+ * @attr description + * Reference to a theme that should be used to inflate popups + * shown by widgets in the toolbar. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:popupTheme + */ + public static final int Toolbar_popupTheme=16; + /** + *

+ * @attr description + * Specifies subtitle text used for navigationMode="normal" + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:subtitle + */ + public static final int Toolbar_subtitle=17; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#subtitleTextAppearance} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance=18; + /** + *

+ * @attr description + * A color to apply to the subtitle string. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor=19; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#title} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name org.muctec.smartfritz:title + */ + public static final int Toolbar_title=20; + /** + *

+ * @attr description + * Specifies extra space on the left, start, right and end sides + * of the toolbar's title. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:titleMargin + */ + public static final int Toolbar_titleMargin=21; + /** + *

+ * @attr description + * Specifies extra space on the bottom side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom=22; + /** + *

+ * @attr description + * Specifies extra space on the end side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd=23; + /** + *

+ * @attr description + * Specifies extra space on the start side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:titleMarginStart + */ + public static final int Toolbar_titleMarginStart=24; + /** + *

+ * @attr description + * Specifies extra space on the top side of the toolbar's title. + * If both this attribute and titleMargin are specified, then this + * attribute takes precedence. Margin values should be positive. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:titleMarginTop + */ + public static final int Toolbar_titleMarginTop=25; + /** + *

+ * @attr description + * {@deprecated Use titleMargin} + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:titleMargins + */ + @Deprecated + public static final int Toolbar_titleMargins=26; + /** + *

This symbol is the offset where the {@link org.muctec.smartfritz.R.attr#titleTextAppearance} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance=27; + /** + *

+ * @attr description + * A color to apply to the title string. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:titleTextColor + */ + public static final int Toolbar_titleTextColor=28; + /** + * Attributes that can be used with a View. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #View_android_theme android:theme}
{@link #View_android_focusable android:focusable}
{@link #View_paddingEnd org.muctec.smartfritz:paddingEnd}Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
{@link #View_paddingStart org.muctec.smartfritz:paddingStart}Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
{@link #View_theme org.muctec.smartfritz:theme}Deprecated.
+ * @see #View_android_theme + * @see #View_android_focusable + * @see #View_paddingEnd + * @see #View_paddingStart + * @see #View_theme + */ + public static final int[] View={ + 0x01010000, 0x010100da, 0x7f030134, 0x7f030135, + 0x7f0301b1 + }; + /** + *

+ * @attr description + * Specifies a theme override for a view. When a theme override is set, the + * view will be inflated using a {@link android.content.Context} themed with + * the specified resource. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:theme + */ + public static final int View_android_theme=0; + /** + *

+ * @attr description + * Boolean that controls whether a view can take focus. By default the user can not + * move focus to a view; by setting this attribute to true the view is + * allowed to take focus. This value does not impact the behavior of + * directly calling {@link android.view.View#requestFocus}, which will + * always request focus regardless of this view. It only impacts where + * focus navigation will try to move focus. + * + *

May be a boolean value, such as "true" or + * "false". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
auto10
+ * + * @attr name android:focusable + */ + public static final int View_android_focusable=1; + /** + *

+ * @attr description + * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:paddingEnd + */ + public static final int View_paddingEnd=2; + /** + *

+ * @attr description + * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name org.muctec.smartfritz:paddingStart + */ + public static final int View_paddingStart=3; + /** + *

+ * @attr description + * Deprecated. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name org.muctec.smartfritz:theme + */ + public static final int View_theme=4; + /** + * Attributes that can be used with a ViewBackgroundHelper. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint org.muctec.smartfritz:backgroundTint}Tint to apply to the background.
{@link #ViewBackgroundHelper_backgroundTintMode org.muctec.smartfritz:backgroundTintMode}Blending mode used to apply the background tint.
+ * @see #ViewBackgroundHelper_android_background + * @see #ViewBackgroundHelper_backgroundTint + * @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper={ + 0x010100d4, 0x7f030034, 0x7f030035 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#background} + * attribute's value can be found in the {@link #ViewBackgroundHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background=0; + /** + *

+ * @attr description + * Tint to apply to the background. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name org.muctec.smartfritz:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint=1; + /** + *

+ * @attr description + * Blending mode used to apply the background tint. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10Combines the tint and icon color and alpha channels, clamping the + * result to valid color values. Saturate(S + D)
multiplyeMultiplies the color and alpha channels of the drawable with those of + * the tint. [Sa * Da, Sc * Dc]
screenf[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
src_atop9The tint is drawn above the drawable, but with the drawable’s alpha + * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]
src_in5The tint is masked by the alpha channel of the drawable. The drawable’s + * color channels are thrown out. [Sa * Da, Sc * Da]
src_over3The tint is drawn on top of the drawable. + * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]
+ * + * @attr name org.muctec.smartfritz:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode=2; + /** + * Attributes that can be used with a ViewStubCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_layout android:layout}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
+ * @see #ViewStubCompat_android_id + * @see #ViewStubCompat_android_layout + * @see #ViewStubCompat_android_inflatedId + */ + public static final int[] ViewStubCompat={ + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #ViewStubCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int ViewStubCompat_android_id=0; + /** + *

+ * @attr description + * Supply an identifier for the layout resource to inflate when the ViewStub + * becomes visible or when forced to do so. The layout resource must be a + * valid reference to a layout. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:layout + */ + public static final int ViewStubCompat_android_layout=1; + /** + *

+ * @attr description + * Overrides the id of the inflated View with this value. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId=2; + } + public static final class xml { + public static final int network_security_config=0x7f100000; + } +} \ No newline at end of file diff --git a/SmartFritz/build/generated/source/buildConfig/debug/org/muctec/smartfritz/BuildConfig.java b/SmartFritz/build/generated/source/buildConfig/debug/org/muctec/smartfritz/BuildConfig.java new file mode 100644 index 0000000000000000000000000000000000000000..2cdef4beab5cbec98a87d67bda27282a7357073d --- /dev/null +++ b/SmartFritz/build/generated/source/buildConfig/debug/org/muctec/smartfritz/BuildConfig.java @@ -0,0 +1,13 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package org.muctec.smartfritz; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String APPLICATION_ID = "org.muctec.smartfritz"; + public static final String BUILD_TYPE = "debug"; + public static final String FLAVOR = ""; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "1.0"; +} diff --git a/SmartFritz/build/generated/source/buildConfig/release/org/muctec/smartfritz/BuildConfig.java b/SmartFritz/build/generated/source/buildConfig/release/org/muctec/smartfritz/BuildConfig.java new file mode 100644 index 0000000000000000000000000000000000000000..ba05dda4faf49e17af0af99b1f6f992258ca38b9 --- /dev/null +++ b/SmartFritz/build/generated/source/buildConfig/release/org/muctec/smartfritz/BuildConfig.java @@ -0,0 +1,13 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package org.muctec.smartfritz; + +public final class BuildConfig { + public static final boolean DEBUG = false; + public static final String APPLICATION_ID = "org.muctec.smartfritz"; + public static final String BUILD_TYPE = "release"; + public static final String FLAVOR = ""; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "1.0"; +} diff --git a/SmartFritz/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/SmartFritz/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/SmartFritz/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/annotation_processor_list/debugUnitTest/annotationProcessors.json b/SmartFritz/build/intermediates/annotation_processor_list/debugUnitTest/annotationProcessors.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/SmartFritz/build/intermediates/annotation_processor_list/debugUnitTest/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/annotation_processor_list/release/annotationProcessors.json b/SmartFritz/build/intermediates/annotation_processor_list/release/annotationProcessors.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/SmartFritz/build/intermediates/annotation_processor_list/release/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/annotation_processor_list/releaseUnitTest/annotationProcessors.json b/SmartFritz/build/intermediates/annotation_processor_list/releaseUnitTest/annotationProcessors.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/SmartFritz/build/intermediates/annotation_processor_list/releaseUnitTest/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/apk_list/debug/mainApkListPersistenceDebug/apk-list.gson b/SmartFritz/build/intermediates/apk_list/debug/mainApkListPersistenceDebug/apk-list.gson new file mode 100644 index 0000000000000000000000000000000000000000..7498f2e930c854c88671e47c2ac7642371a8bf65 --- /dev/null +++ b/SmartFritz/build/intermediates/apk_list/debug/mainApkListPersistenceDebug/apk-list.gson @@ -0,0 +1 @@ +[{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-debug.apk","fullName":"armeabi-v7aDebug","baseName":"armeabi-v7a-debug"}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/apk_list/release/mainApkListPersistenceRelease/apk-list.gson b/SmartFritz/build/intermediates/apk_list/release/mainApkListPersistenceRelease/apk-list.gson new file mode 100644 index 0000000000000000000000000000000000000000..e990109815f8438da5a86ea08272666602e0c440 --- /dev/null +++ b/SmartFritz/build/intermediates/apk_list/release/mainApkListPersistenceRelease/apk-list.gson @@ -0,0 +1 @@ +[{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-release-unsigned.apk","fullName":"armeabi-v7aRelease","baseName":"armeabi-v7a-release"}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/debug.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/debug.json new file mode 100644 index 0000000000000000000000000000000000000000..cf6dfe644b82302c0feb08a994e1ae9c55540d4b --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/debug.json @@ -0,0 +1,3454 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-xlarge-v4/values-xlarge-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,126,197,267,337,405", + "endColumns": "70,70,69,69,67,67", + "endOffsets": "121,192,262,332,400,468" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v18/values-v18.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "48", + "endOffsets": "99" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-bg/values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,327,432,518,623,744,823,901,992,1085,1181,1275,1376,1469,1564,1672,1763,1854,1937,2051,2160,2260,2374,2480,2588,2748,2847", + "endColumns": "114,106,104,85,104,120,78,77,90,92,95,93,100,92,94,107,90,90,82,113,108,99,113,105,107,159,98,82", + "endOffsets": "215,322,427,513,618,739,818,896,987,1080,1176,1270,1371,1464,1559,1667,1758,1849,1932,2046,2155,2255,2369,2475,2583,2743,2842,2925" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-bg/values-bg.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2930", + "endColumns": "100", + "endOffsets": "3026" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sk/values-sk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2918", + "endColumns": "100", + "endOffsets": "3014" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sk/values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,312,423,509,617,735,816,897,988,1081,1180,1274,1375,1468,1563,1661,1752,1843,1927,2032,2141,2240,2346,2457,2566,2732,2830", + "endColumns": "106,99,110,85,107,117,80,80,90,92,98,93,100,92,94,97,90,90,83,104,108,98,105,110,108,165,97,87", + "endOffsets": "207,307,418,504,612,730,811,892,983,1076,1175,1269,1370,1463,1558,1656,1747,1838,1922,2027,2136,2235,2341,2452,2561,2727,2825,2913" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-en-rXC_values-en-rXC.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,310,510,719,904,1106,1321,1494,1671,1862,2055,2253,2449,2652,2847,3044,3239,3432,3623,3807,4011,4216,4417,4624,4826,5031,5303,5503", + "endColumns": "204,199,208,184,201,214,172,176,190,192,197,195,202,194,196,194,192,190,183,203,204,200,206,201,204,271,199,178", + "endOffsets": "305,505,714,899,1101,1316,1489,1666,1857,2050,2248,2444,2647,2842,3039,3234,3427,3618,3802,4006,4211,4412,4619,4821,5026,5298,5498,5677" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "202", + "endOffsets": "253" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "5682", + "endColumns": "202", + "endOffsets": "5880" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ro/values-ro.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2953", + "endColumns": "100", + "endOffsets": "3049" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ro/values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,2870", + "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", + "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,2948" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-v14_values-v14.arsc.flat", + "map": [ + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values-v14/styles.xml", + "from": { + "startLines": "6", + "startColumns": "4", + "startOffsets": "219", + "endLines": "8", + "endColumns": "12", + "endOffsets": "354" + }, + "to": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "4", + "endColumns": "12", + "endOffsets": "190" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-eu/values-eu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2938", + "endColumns": "100", + "endOffsets": "3034" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-eu/values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,312,422,508,614,738,825,909,1001,1095,1192,1286,1388,1482,1578,1675,1767,1860,1942,2051,2161,2260,2369,2475,2586,2757,2856", + "endColumns": "108,97,109,85,105,123,86,83,91,93,96,93,101,93,95,96,91,92,81,108,109,98,108,105,110,170,98,81", + "endOffsets": "209,307,417,503,609,733,820,904,996,1090,1187,1281,1383,1477,1573,1670,1762,1855,1937,2046,2156,2255,2364,2470,2581,2752,2851,2933" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-mn/values-mn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2876", + "endColumns": "100", + "endOffsets": "2972" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-mn/values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,218,318,431,518,624,736,818,900,991,1084,1180,1276,1374,1467,1562,1654,1745,1835,1917,2026,2130,2227,2335,2436,2539,2698,2795", + "endColumns": "112,99,112,86,105,111,81,81,90,92,95,95,97,92,94,91,90,89,81,108,103,96,107,100,102,158,96,80", + "endOffsets": "213,313,426,513,619,731,813,895,986,1079,1175,1271,1369,1462,1557,1649,1740,1830,1912,2021,2125,2222,2330,2431,2534,2693,2790,2871" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-uk/values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,423,509,617,735,814,894,985,1078,1174,1268,1369,1462,1557,1652,1743,1834,1915,2021,2128,2226,2334,2440,2549,2719,2819", + "endColumns": "109,101,105,85,107,117,78,79,90,92,95,93,100,92,94,94,90,90,80,105,106,97,107,105,108,169,99,80", + "endOffsets": "210,312,418,504,612,730,809,889,980,1073,1169,1263,1364,1457,1552,1647,1738,1829,1910,2016,2123,2221,2329,2435,2544,2714,2814,2895" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-uk/values-uk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2900", + "endColumns": "100", + "endOffsets": "2996" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hr/values-hr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hr/values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,307,417,503,607,726,810,893,984,1077,1173,1267,1368,1461,1556,1655,1746,1837,1923,2027,2140,2246,2351,2464,2571,2740,2837", + "endColumns": "104,96,109,85,103,118,83,82,90,92,95,93,100,92,94,98,90,90,85,103,112,105,104,112,106,168,96,88", + "endOffsets": "205,302,412,498,602,721,805,888,979,1072,1168,1262,1363,1456,1551,1650,1741,1832,1918,2022,2135,2241,2346,2459,2566,2735,2832,2921" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,334,442,527,628,751,836,918,1009,1102,1198,1292,1392,1485,1584,1680,1771,1862,1944,2056,2156,2257,2365,2472,2579,2738,2838", + "endColumns": "119,108,107,84,100,122,84,81,90,92,95,93,99,92,98,95,90,90,81,111,99,100,107,106,106,158,99,81", + "endOffsets": "220,329,437,522,623,746,831,913,1004,1097,1193,1287,1387,1480,1579,1675,1766,1857,1939,2051,2151,2252,2360,2467,2574,2733,2833,2915" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hi/values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,308,418,504,606,728,805,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1912,2021,2124,2226,2336,2437,2549,2711,2812", + "endColumns": "105,96,109,85,101,121,76,77,90,92,95,93,100,92,94,93,90,90,89,108,102,101,109,100,111,161,100,79", + "endOffsets": "206,303,413,499,601,723,800,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1907,2016,2119,2221,2331,2432,2544,2706,2807,2887" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hi/values-hi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2892", + "endColumns": "100", + "endOffsets": "2988" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pt/values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pt/values-pt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2753", + "endColumns": "100", + "endOffsets": "2849" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,2675", + "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,2748" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pa/values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,410,496,596,709,786,862,953,1046,1142,1236,1337,1430,1525,1619,1710,1801,1880,1981,2085,2182,2291,2390,2500,2659,2759", + "endColumns": "102,96,104,85,99,112,76,75,90,92,95,93,100,92,94,93,90,90,78,100,103,96,108,98,109,158,99,79", + "endOffsets": "203,300,405,491,591,704,781,857,948,1041,1137,1231,1332,1425,1520,1614,1705,1796,1875,1976,2080,2177,2286,2385,2495,2654,2754,2834" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pa/values-pa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2839", + "endColumns": "100", + "endOffsets": "2935" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-gu/values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,425,512,613,736,813,891,982,1075,1174,1268,1369,1462,1557,1654,1745,1836,1916,2022,2124,2221,2330,2429,2539,2699,2802", + "endColumns": "108,103,106,86,100,122,76,77,90,92,98,93,100,92,94,96,90,90,79,105,101,96,108,98,109,159,102,79", + "endOffsets": "209,313,420,507,608,731,808,886,977,1070,1169,1263,1364,1457,1552,1649,1740,1831,1911,2017,2119,2216,2325,2424,2534,2694,2797,2877" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-gu/values-gu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ms/values-ms.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2881", + "endColumns": "100", + "endOffsets": "2977" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ms/values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,321,429,516,620,731,809,888,979,1072,1167,1261,1360,1453,1548,1642,1733,1824,1904,2016,2125,2222,2331,2434,2541,2700,2801", + "endColumns": "110,104,107,86,103,110,77,78,90,92,94,93,98,92,94,93,90,90,79,111,108,96,108,102,106,158,100,79", + "endOffsets": "211,316,424,511,615,726,804,883,974,1067,1162,1256,1355,1448,1543,1637,1728,1819,1899,2011,2120,2217,2326,2429,2536,2695,2796,2876" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-land/values-land.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "10", + "endOffsets": "222" + }, + "to": { + "startLines": "5", + "startColumns": "4", + "startOffsets": "264", + "endLines": "8", + "endColumns": "10", + "endOffsets": "431" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-land/values-land.xml", + "from": { + "startLines": "2,3,4", + "startColumns": "4,4,4", + "startOffsets": "55,125,196", + "endColumns": "69,70,67", + "endOffsets": "120,191,259" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-in/values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,2803", + "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", + "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,2882" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-in/values-in.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hu/values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,2878", + "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", + "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,2956" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hu/values-hu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2961", + "endColumns": "100", + "endOffsets": "3057" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-kn/values-kn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2948", + "endColumns": "100", + "endOffsets": "3044" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-kn/values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,335,448,536,643,770,847,924,1015,1108,1204,1298,1399,1492,1587,1681,1772,1863,1945,2061,2172,2271,2384,2488,2602,2766,2866", + "endColumns": "117,111,112,87,106,126,76,76,90,92,95,93,100,92,94,93,90,90,81,115,110,98,112,103,113,163,99,81", + "endOffsets": "218,330,443,531,638,765,842,919,1010,1103,1199,1293,1394,1487,1582,1676,1767,1858,1940,2056,2167,2266,2379,2483,2597,2761,2861,2943" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ne/values-ne.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2988", + "endColumns": "100", + "endOffsets": "3084" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ne/values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,422,513,620,747,841,931,1022,1115,1211,1305,1406,1499,1594,1688,1779,1870,1958,2068,2184,2287,2402,2504,2619,2790,2902", + "endColumns": "104,103,107,90,106,126,93,89,90,92,95,93,100,92,94,93,90,90,87,109,115,102,114,101,114,170,111,85", + "endOffsets": "205,309,417,508,615,742,836,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1953,2063,2179,2282,2397,2499,2614,2785,2897,2983" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fr/values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,2859", + "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", + "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,2940" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fr/values-fr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,529,645,775,858,938,1029,1122,1221,1316,1417,1510,1603,1698,1789,1880,1976,2086,2198,2301,2412,2519,2621,2780,2879", + "endColumns": "110,114,110,86,115,129,82,79,90,92,98,94,100,92,92,94,90,90,95,109,111,102,110,106,101,158,98,85", + "endOffsets": "211,326,437,524,640,770,853,933,1024,1117,1216,1311,1412,1505,1598,1693,1784,1875,1971,2081,2193,2296,2407,2514,2616,2775,2874,2960" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2965", + "endColumns": "100", + "endOffsets": "3061" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-uz/values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,428,514,614,730,810,889,980,1073,1169,1263,1358,1451,1546,1641,1732,1824,1908,2017,2124,2225,2333,2438,2545,2706,2805", + "endColumns": "104,103,113,85,99,115,79,78,90,92,95,93,94,92,94,94,90,91,83,108,106,100,107,104,106,160,98,83", + "endOffsets": "205,309,423,509,609,725,805,884,975,1068,1164,1258,1353,1446,1541,1636,1727,1819,1903,2012,2119,2220,2328,2433,2540,2701,2800,2884" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-uz/values-uz.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2889", + "endColumns": "100", + "endOffsets": "2985" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ko/values-ko.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2756", + "endColumns": "100", + "endOffsets": "2852" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ko/values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,2678", + "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", + "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,2751" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-et/values-et.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2942", + "endColumns": "100", + "endOffsets": "3038" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-et/values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,329,440,526,628,745,825,903,995,1089,1194,1296,1406,1500,1601,1695,1787,1880,1963,2074,2179,2278,2388,2489,2592,2758,2860", + "endColumns": "116,106,110,85,101,116,79,77,91,93,104,101,109,93,100,93,91,92,82,110,104,98,109,100,102,165,101,81", + "endOffsets": "217,324,435,521,623,740,820,898,990,1084,1189,1291,1401,1495,1596,1690,1782,1875,1958,2069,2174,2273,2383,2484,2587,2753,2855,2937" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ta/values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,317,432,521,628,754,832,909,1009,1114,1210,1305,1412,1514,1618,1713,1815,1913,1995,2097,2201,2298,2408,2510,2617,2774,2874", + "endColumns": "113,97,114,88,106,125,77,76,99,104,95,94,106,101,103,94,101,97,81,101,103,96,109,101,106,156,99,79", + "endOffsets": "214,312,427,516,623,749,827,904,1004,1109,1205,1300,1407,1509,1613,1708,1810,1908,1990,2092,2196,2293,2403,2505,2612,2769,2869,2949" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ta/values-ta.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2954", + "endColumns": "100", + "endOffsets": "3050" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-lv/values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,333,442,528,632,754,836,918,1028,1136,1243,1352,1464,1567,1679,1786,1891,1991,2076,2185,2297,2396,2507,2616,2721,2895,2994", + "endColumns": "119,107,108,85,103,121,81,81,109,107,106,108,111,102,111,106,104,99,84,108,111,98,110,108,104,173,98,81", + "endOffsets": "220,328,437,523,627,749,831,913,1023,1131,1238,1347,1459,1562,1674,1781,1886,1986,2071,2180,2292,2391,2502,2611,2716,2890,2989,3071" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-lv/values-lv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "3076", + "endColumns": "100", + "endOffsets": "3172" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2744", + "endColumns": "100", + "endOffsets": "2840" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,2666", + "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", + "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,2739" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-is/values-is.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-is/values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,302,414,499,600,714,794,874,965,1058,1154,1248,1355,1448,1543,1638,1729,1823,1904,2014,2122,2220,2329,2428,2531,2686,2784", + "endColumns": "99,96,111,84,100,113,79,79,90,92,95,93,106,92,94,94,90,93,80,109,107,97,108,98,102,154,97,80", + "endOffsets": "200,297,409,494,595,709,789,869,960,1053,1149,1243,1350,1443,1538,1633,1724,1818,1899,2009,2117,2215,2324,2423,2526,2681,2779,2860" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-as_values-as.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-as/values-as.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2950", + "endColumns": "100", + "endOffsets": "3046" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-as/values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,419,515,617,736,816,896,987,1080,1173,1268,1368,1461,1558,1652,1743,1834,1923,2025,2140,2243,2352,2471,2591,2758,2861", + "endColumns": "107,98,106,95,101,118,79,79,90,92,92,94,99,92,96,93,90,90,88,101,114,102,108,118,119,166,102,88", + "endOffsets": "208,307,414,510,612,731,811,891,982,1075,1168,1263,1363,1456,1553,1647,1738,1829,1918,2020,2135,2238,2347,2466,2586,2753,2856,2945" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zu/values-zu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2898", + "endColumns": "100", + "endOffsets": "2994" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zu/values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,320,434,522,625,752,832,912,1003,1096,1190,1284,1385,1478,1573,1667,1758,1851,1937,2041,2147,2245,2352,2458,2564,2721,2817", + "endColumns": "107,106,113,87,102,126,79,79,90,92,93,93,100,92,94,93,90,92,85,103,105,97,106,105,105,156,95,80", + "endOffsets": "208,315,429,517,620,747,827,907,998,1091,1185,1279,1380,1473,1568,1662,1753,1846,1932,2036,2142,2240,2347,2453,2559,2716,2812,2893" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v17/values-v17.xml", + "from": { + "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", + "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", + "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", + "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-am/values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,207,306,412,498,601,714,792,870,961,1054,1147,1241,1342,1435,1530,1624,1715,1805,1884,1984,2084,2180,2283,2382,2489,2642,2738", + "endColumns": "101,98,105,85,102,112,77,77,90,92,92,93,100,92,94,93,90,89,78,99,99,95,102,98,106,152,95,78", + "endOffsets": "202,301,407,493,596,709,787,865,956,1049,1142,1236,1337,1430,1525,1619,1710,1800,1879,1979,2079,2175,2278,2377,2484,2637,2733,2812" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-am/values-am.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2817", + "endColumns": "100", + "endOffsets": "2913" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-kk/values-kk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2893", + "endColumns": "100", + "endOffsets": "2989" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-kk/values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,320,430,515,621,740,821,901,992,1085,1181,1275,1376,1469,1564,1661,1752,1844,1925,2028,2133,2231,2338,2447,2547,2713,2812", + "endColumns": "111,102,109,84,105,118,80,79,90,92,95,93,100,92,94,96,90,91,80,102,104,97,106,108,99,165,98,80", + "endOffsets": "212,315,425,510,616,735,816,896,987,1080,1176,1270,1371,1464,1559,1656,1747,1839,1920,2023,2128,2226,2333,2442,2542,2708,2807,2888" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-cs/values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,2809", + "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", + "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,2886" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-cs/values-cs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2891", + "endColumns": "100", + "endOffsets": "2987" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sq/values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,319,431,518,628,751,832,911,1002,1095,1191,1285,1387,1480,1575,1672,1763,1856,1939,2045,2150,2248,2354,2457,2573,2727,2826", + "endColumns": "113,99,111,86,109,122,80,78,90,92,95,93,101,92,94,96,90,92,82,105,104,97,105,102,115,153,98,80", + "endOffsets": "214,314,426,513,623,746,827,906,997,1090,1186,1280,1382,1475,1570,1667,1758,1851,1934,2040,2145,2243,2349,2452,2568,2722,2821,2902" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sq/values-sq.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2907", + "endColumns": "100", + "endOffsets": "3003" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,5,8,11", + "startColumns": "4,4,4,4", + "startOffsets": "55,223,386,554", + "endLines": "4,7,10,13", + "endColumns": "12,12,12,12", + "endOffsets": "218,381,549,716" + }, + "to": { + "startLines": "265,268,272,276", + "startColumns": "4,4,4,4", + "startOffsets": "19504,19672,19961,20257", + "endLines": "267,270,274,278", + "endColumns": "12,12,12,12", + "endOffsets": "19667,19830,20124,20419" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,13", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,354,470,596,722,850,1022", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" + }, + "to": { + "startLines": "2,3,4,5,263,264,271,275,311,314", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,19262,19378,19835,20129,22137,22309", + "endLines": "2,3,4,5,263,264,271,275,313,318", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,19373,19499,19956,20252,22304,22642" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8799,11879,12076,12275,12398,12521,12634,12817,12948,13149,13238,13349,13582,13683,13778,13901,14030,14147,14324,14423,14558,14701,14836,14955,15156,15275,15368,15479,15535,15642,15837,15948,16081,16176,16267,16358,16475,16614,16685,16768,17448,17505,17563,18257", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8794,11874,12071,12270,12393,12516,12629,12812,12943,13144,13233,13344,13577,13678,13773,13896,14025,14142,14319,14418,14553,14696,14831,14950,15151,15270,15363,15474,15530,15637,15832,15943,16076,16171,16262,16353,16470,16609,16680,16763,17443,17500,17558,18252,18958" + }, + "to": { + "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9098,12178,12375,12574,12697,12820,12933,13116,13247,13448,13537,13648,13881,13982,14077,14200,14329,14446,14623,14722,14857,15000,15135,15254,15455,15574,15667,15778,15834,15941,16136,16247,16380,16475,16566,16657,16774,16913,16984,17067,17747,17804,17862,18556", + "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9093,12173,12370,12569,12692,12815,12928,13111,13242,13443,13532,13643,13876,13977,14072,14195,14324,14441,14618,14717,14852,14995,15130,15249,15450,15569,15662,15773,15829,15936,16131,16242,16375,16470,16561,16652,16769,16908,16979,17062,17742,17799,17857,18551,19257" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,10,18,26", + "startColumns": "4,4,4,4", + "startOffsets": "55,484,910,1333", + "endLines": "9,17,25,33", + "endColumns": "10,10,10,10", + "endOffsets": "479,905,1328,1763" + }, + "to": { + "startLines": "279,287,295,303", + "startColumns": "4,4,4,4", + "startOffsets": "20424,20853,21279,21702", + "endLines": "286,294,302,310", + "endColumns": "10,10,10,10", + "endOffsets": "20848,21274,21697,22132" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-my/values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,319,436,529,641,769,847,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1951,2074,2186,2288,2414,2525,2635,2795,2895", + "endColumns": "108,104,116,92,111,127,77,78,90,92,95,93,100,92,94,93,90,90,85,122,111,101,125,110,109,159,99,83", + "endOffsets": "209,314,431,524,636,764,842,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1946,2069,2181,2283,2409,2520,2630,2790,2890,2974" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-my/values-my.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2979", + "endColumns": "100", + "endOffsets": "3075" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-mk/values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,317,425,511,616,735,818,900,997,1096,1193,1293,1400,1499,1600,1696,1793,1884,1971,2077,2184,2285,2392,2503,2607,2763,2861", + "endColumns": "107,103,107,85,104,118,82,81,96,98,96,99,106,98,100,95,96,90,86,105,106,100,106,110,103,155,97,83", + "endOffsets": "208,312,420,506,611,730,813,895,992,1091,1188,1288,1395,1494,1595,1691,1788,1879,1966,2072,2179,2280,2387,2498,2602,2758,2856,2940" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-mk/values-mk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v23/values-v23.xml", + "from": { + "startLines": "2,3,4,5,6,19,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", + "endLines": "2,3,4,5,18,31,32,33,34,35,36", + "endColumns": "134,134,74,86,12,12,126,104,114,106,112", + "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/res/values-v23/values-v23.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "4", + "endColumns": "12", + "endOffsets": "200" + }, + "to": { + "startLines": "37", + "startColumns": "4", + "startOffsets": "2646", + "endLines": "39", + "endColumns": "12", + "endOffsets": "2791" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ka/values-ka.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2899", + "endColumns": "100", + "endOffsets": "2995" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ka/values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,429,517,622,735,819,901,992,1085,1180,1276,1377,1470,1565,1659,1750,1841,1924,2037,2144,2242,2355,2459,2563,2720,2818", + "endColumns": "108,103,110,87,104,112,83,81,90,92,94,95,100,92,94,93,90,90,82,112,106,97,112,103,103,156,97,80", + "endOffsets": "209,313,424,512,617,730,814,896,987,1080,1175,1271,1372,1465,1560,1654,1745,1836,1919,2032,2139,2237,2350,2454,2558,2715,2813,2894" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sl/values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,319,427,514,617,736,821,905,997,1091,1187,1281,1377,1471,1567,1667,1759,1851,1935,2043,2152,2252,2365,2472,2576,2756,2853", + "endColumns": "106,106,107,86,102,118,84,83,91,93,95,93,95,93,95,99,91,91,83,107,108,99,112,106,103,179,96,82", + "endOffsets": "207,314,422,509,612,731,816,900,992,1086,1182,1276,1372,1466,1562,1662,1754,1846,1930,2038,2147,2247,2360,2467,2571,2751,2848,2931" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sl/values-sl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ky/values-ky.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ky/values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,304,423,507,614,731,809,888,979,1072,1168,1262,1363,1456,1551,1646,1737,1828,1909,2019,2126,2224,2330,2437,2538,2699,2802", + "endColumns": "103,94,118,83,106,116,77,78,90,92,95,93,100,92,94,94,90,90,80,109,106,97,105,106,100,160,102,80", + "endOffsets": "204,299,418,502,609,726,804,883,974,1067,1163,1257,1358,1451,1546,1641,1732,1823,1904,2014,2121,2219,2325,2432,2533,2694,2797,2878" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-te/values-te.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2946", + "endColumns": "100", + "endOffsets": "3042" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-te/values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,328,439,529,634,759,841,923,1014,1107,1203,1297,1398,1491,1586,1681,1772,1863,1947,2060,2168,2267,2378,2480,2597,2763,2864", + "endColumns": "113,108,110,89,104,124,81,81,90,92,95,93,100,92,94,94,90,90,83,112,107,98,110,101,116,165,100,81", + "endOffsets": "214,323,434,524,629,754,836,918,1009,1102,1198,1292,1393,1486,1581,1676,1767,1858,1942,2055,2163,2262,2373,2475,2592,2758,2859,2941" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v25/values-v25.xml", + "from": { + "startLines": "2,3,4,6", + "startColumns": "4,4,4,4", + "startOffsets": "55,126,209,308", + "endLines": "2,3,5,7", + "endColumns": "70,82,12,12", + "endOffsets": "121,204,303,414" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-tr/values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,2786", + "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", + "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,2860" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-tr/values-tr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ar/values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,326,435,517,618,732,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1832,1911,2016,2117,2213,2321,2424,2527,2682,2779", + "endColumns": "116,103,108,81,100,113,78,78,90,92,95,93,100,92,94,93,90,93,78,104,100,95,107,102,102,154,96,80", + "endOffsets": "217,321,430,512,613,727,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1827,1906,2011,2112,2208,2316,2419,2522,2677,2774,2855" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ar/values-ar.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2860", + "endColumns": "100", + "endOffsets": "2956" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-es/values-es.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2924", + "endColumns": "100", + "endOffsets": "3020" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-es/values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,2842", + "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", + "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,2919" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2912", + "endColumns": "100", + "endOffsets": "3008" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,424,510,614,732,814,895,986,1079,1175,1269,1370,1463,1558,1663,1754,1845,1933,2039,2147,2248,2353,2461,2562,2731,2828", + "endColumns": "108,103,105,85,103,117,81,80,90,92,95,93,100,92,94,104,90,90,87,105,107,100,104,107,100,168,96,83", + "endOffsets": "209,313,419,505,609,727,809,890,981,1074,1170,1264,1365,1458,1553,1658,1749,1840,1928,2034,2142,2243,2348,2456,2557,2726,2823,2907" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-nl/values-nl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2921", + "endColumns": "100", + "endOffsets": "3017" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-nl/values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,2839", + "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", + "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,2916" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-large-v4/values-large-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10", + "startColumns": "4,4,4,4,4,4,4,4,4", + "startOffsets": "55,114,185,256,326,396,464,532,636", + "endColumns": "58,70,70,69,69,67,67,103,115", + "endOffsets": "109,180,251,321,391,459,527,631,747" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-large-v4/values-large-v4.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,177", + "endColumns": "121,133", + "endOffsets": "172,306" + }, + "to": { + "startLines": "11,12", + "startColumns": "4,4", + "startOffsets": "752,874", + "endColumns": "121,133", + "endOffsets": "869,1003" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-be/values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,328,444,530,638,756,835,913,1005,1099,1195,1289,1385,1479,1575,1670,1762,1854,1937,2043,2149,2247,2355,2460,2565,2734,2834", + "endColumns": "119,102,115,85,107,117,78,77,91,93,95,93,95,93,95,94,91,91,82,105,105,97,107,104,104,168,99,80", + "endOffsets": "220,323,439,525,633,751,830,908,1000,1094,1190,1284,1380,1474,1570,1665,1757,1849,1932,2038,2144,2242,2350,2455,2560,2729,2829,2910" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-be/values-be.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-it/values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,2823", + "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", + "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,2901" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-it/values-it.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2906", + "endColumns": "100", + "endOffsets": "3002" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-bn/values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,326,432,526,631,760,838,916,1007,1100,1195,1289,1390,1483,1578,1672,1763,1854,1941,2051,2159,2258,2368,2474,2587,2752,2857", + "endColumns": "108,111,105,93,104,128,77,77,90,92,94,93,100,92,94,93,90,90,86,109,107,98,109,105,112,164,104,81", + "endOffsets": "209,321,427,521,626,755,833,911,1002,1095,1190,1284,1385,1478,1573,1667,1758,1849,1936,2046,2154,2253,2363,2469,2582,2747,2852,2934" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-bn/values-bn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2939", + "endColumns": "100", + "endOffsets": "3035" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ur/values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,321,430,516,620,740,816,892,984,1078,1174,1268,1370,1464,1560,1654,1746,1838,1923,2031,2140,2242,2353,2453,2561,2726,2824", + "endColumns": "109,105,108,85,103,119,75,75,91,93,95,93,101,93,95,93,91,91,84,107,108,101,110,99,107,164,97,79", + "endOffsets": "210,316,425,511,615,735,811,887,979,1073,1169,1263,1365,1459,1555,1649,1741,1833,1918,2026,2135,2237,2348,2448,2556,2721,2819,2899" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ur/values-ur.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2904", + "endColumns": "100", + "endOffsets": "3000" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hdpi-v4/values-hdpi-v4.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "6", + "endColumns": "13", + "endOffsets": "327" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-de/values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,2843", + "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", + "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,2920" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-de/values-de.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2925", + "endColumns": "100", + "endOffsets": "3021" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-watch-v21_values-watch-v21.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-watch-v21/values-watch-v21.xml", + "from": { + "startLines": "2,6,10", + "startColumns": "4,4,4", + "startOffsets": "55,271,499", + "endLines": "5,9,13", + "endColumns": "12,12,12", + "endOffsets": "266,494,724" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-night-v8/values-night-v8.xml", + "from": { + "startLines": "2,3,4,5,6,7,8", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "55,125,209,293,389,491,593", + "endColumns": "69,83,83,95,101,101,93", + "endOffsets": "120,204,288,384,486,588,682" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sv/values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,2784", + "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", + "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,2858" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sv/values-sv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2863", + "endColumns": "100", + "endOffsets": "2959" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-si/values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,322,429,517,622,738,827,914,1005,1098,1193,1287,1388,1481,1576,1670,1761,1852,1936,2045,2150,2248,2358,2457,2563,2722,2821", + "endColumns": "109,106,106,87,104,115,88,86,90,92,94,93,100,92,94,93,90,90,83,108,104,97,109,98,105,158,98,81", + "endOffsets": "210,317,424,512,617,733,822,909,1000,1093,1188,1282,1383,1476,1571,1665,1756,1847,1931,2040,2145,2243,2353,2452,2558,2717,2816,2898" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-si/values-si.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-v16/values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "65", + "endOffsets": "116" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v16/values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "12", + "endOffsets": "223" + }, + "to": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "121", + "endLines": "6", + "endColumns": "12", + "endOffsets": "289" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,10,11,12", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,185,256,328,386,444,553,617,680", + "endLines": "2,3,4,5,6,7,9,10,11,15", + "endColumns": "59,69,70,71,57,57,10,63,62,10", + "endOffsets": "110,180,251,323,381,439,548,612,675,847" + }, + "to": { + "startLines": "10,11,12,13,14,15,16,18,19,20", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "611,671,741,812,884,942,1000,1109,1173,1236", + "endLines": "10,11,12,13,14,15,17,18,19,23", + "endColumns": "59,69,70,71,57,57,10,63,62,10", + "endOffsets": "666,736,807,879,937,995,1104,1168,1231,1403" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,124,193,263,337,413,472,543", + "endColumns": "68,68,69,73,75,58,70,67", + "endOffsets": "119,188,258,332,408,467,538,606" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-vi/values-vi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2901", + "endColumns": "100", + "endOffsets": "2997" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-vi/values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,2817", + "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", + "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,2896" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-h720dp-v13/values-h720dp-v13.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "66", + "endOffsets": "117" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sw/values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,306,414,504,609,726,808,891,982,1075,1169,1263,1364,1457,1552,1647,1738,1830,1912,2013,2122,2221,2328,2437,2542,2704,2801", + "endColumns": "102,97,107,89,104,116,81,82,90,92,93,93,100,92,94,94,90,91,81,100,108,98,106,108,104,161,96,81", + "endOffsets": "203,301,409,499,604,721,803,886,977,1070,1164,1258,1359,1452,1547,1642,1733,1825,1907,2008,2117,2216,2323,2432,2537,2699,2796,2878" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sw/values-sw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ca/values-ca.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ca/values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,329,436,519,627,753,837,918,1009,1102,1196,1291,1390,1483,1576,1670,1761,1852,1935,2046,2155,2253,2363,2467,2575,2735,2834", + "endColumns": "117,105,106,82,107,125,83,80,90,92,93,94,98,92,92,93,90,90,82,110,108,97,109,103,107,159,98,80", + "endOffsets": "218,324,431,514,622,748,832,913,1004,1097,1191,1286,1385,1478,1571,1665,1756,1847,1930,2041,2150,2248,2358,2462,2570,2730,2829,2910" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fa/values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,318,429,513,616,731,810,888,981,1076,1172,1266,1369,1464,1561,1660,1753,1843,1924,2036,2139,2237,2347,2451,2560,2721,2822", + "endColumns": "109,102,110,83,102,114,78,77,92,94,95,93,102,94,96,98,92,89,80,111,102,97,109,103,108,160,100,80", + "endOffsets": "210,313,424,508,611,726,805,883,976,1071,1167,1261,1364,1459,1556,1655,1748,1838,1919,2031,2134,2232,2342,2446,2555,2716,2817,2898" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fa/values-fa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-watch-v20_values-watch-v20.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-watch-v20/values-watch-v20.xml", + "from": { + "startLines": "2,5,8", + "startColumns": "4,4,4", + "startOffsets": "55,214,385", + "endLines": "4,7,10", + "endColumns": "12,12,12", + "endOffsets": "209,380,553" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sr/values-sr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2905", + "endColumns": "100", + "endOffsets": "3001" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sr/values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,317,423,509,613,731,812,892,983,1076,1172,1266,1367,1460,1555,1660,1751,1842,1930,2035,2143,2244,2348,2456,2557,2724,2821", + "endColumns": "108,102,105,85,103,117,80,79,90,92,95,93,100,92,94,104,90,90,87,104,107,100,103,107,100,166,96,83", + "endOffsets": "209,312,418,504,608,726,807,887,978,1071,1167,1261,1362,1455,1550,1655,1746,1837,1925,2030,2138,2239,2343,2451,2552,2719,2816,2900" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-port/values-port.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "55", + "endOffsets": "106" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,2864", + "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", + "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,2944" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-da/values-da.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2844", + "endColumns": "100", + "endOffsets": "2940" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-da/values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,2765", + "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", + "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,2839" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ml/values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,342,457,550,655,787,864,940,1031,1124,1226,1320,1421,1515,1610,1709,1800,1891,1973,2084,2190,2288,2402,2502,2613,2772,2873", + "endColumns": "118,117,114,92,104,131,76,75,90,92,101,93,100,93,94,98,90,90,81,110,105,97,113,99,110,158,100,81", + "endOffsets": "219,337,452,545,650,782,859,935,1026,1119,1221,1315,1416,1510,1605,1704,1795,1886,1968,2079,2185,2283,2397,2497,2608,2767,2868,2950" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ml/values-ml.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2955", + "endColumns": "100", + "endOffsets": "3051" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,2668", + "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,2741" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2746", + "endColumns": "100", + "endOffsets": "2842" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-th/values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,2764", + "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", + "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,2840" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-th/values-th.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2845", + "endColumns": "100", + "endOffsets": "2941" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-lo/values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,412,497,602,714,791,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1888,1995,2092,2190,2295,2398,2502,2659,2755", + "endColumns": "102,96,106,84,104,111,76,77,90,92,95,93,100,92,94,93,90,90,79,106,96,97,104,102,103,156,95,80", + "endOffsets": "203,300,407,492,597,709,786,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1883,1990,2087,2185,2290,2393,2497,2654,2750,2831" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-lo/values-lo.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2836", + "endColumns": "100", + "endOffsets": "2932" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-or_values-or.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-or/values-or.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-or/values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,334,441,527,631,751,828,905,996,1089,1186,1281,1382,1475,1570,1666,1757,1847,1929,2039,2144,2250,2361,2464,2582,2745,2847", + "endColumns": "118,109,106,85,103,119,76,76,90,92,96,94,100,92,94,95,90,89,81,109,104,105,110,102,117,162,101,88", + "endOffsets": "219,329,436,522,626,746,823,900,991,1084,1181,1276,1377,1470,1565,1661,1752,1842,1924,2034,2139,2245,2356,2459,2577,2740,2842,2931" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ja/values-ja.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2771", + "endColumns": "100", + "endOffsets": "2867" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ja/values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,2693", + "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", + "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,2766" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ru/values-ru.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2913", + "endColumns": "100", + "endOffsets": "3009" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ru/values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,2832", + "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", + "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,2908" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-af/values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,415,500,603,721,797,874,965,1058,1154,1248,1348,1441,1536,1635,1730,1824,1905,2012,2115,2212,2320,2422,2524,2678,2776", + "endColumns": "103,99,105,84,102,117,75,76,90,92,95,93,99,92,94,98,94,93,80,106,102,96,107,101,101,153,97,79", + "endOffsets": "204,304,410,495,598,716,792,869,960,1053,1149,1243,1343,1436,1531,1630,1725,1819,1900,2007,2110,2207,2315,2417,2519,2673,2771,2851" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-af/values-af.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2856", + "endColumns": "100", + "endOffsets": "2952" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-iw/values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,308,416,500,600,714,792,870,961,1055,1151,1245,1346,1439,1534,1631,1722,1814,1895,1997,2101,2199,2302,2403,2503,2655,2751", + "endColumns": "103,98,107,83,99,113,77,77,90,93,95,93,100,92,94,96,90,91,80,101,103,97,102,100,99,151,95,80", + "endOffsets": "204,303,411,495,595,709,787,865,956,1050,1146,1240,1341,1434,1529,1626,1717,1809,1890,1992,2096,2194,2297,2398,2498,2650,2746,2827" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-iw/values-iw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2832", + "endColumns": "100", + "endOffsets": "2928" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-bs/values-bs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-bs/values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,333,440,526,630,752,834,915,1006,1099,1195,1289,1390,1483,1578,1677,1768,1859,1945,2048,2153,2251,2356,2469,2572,2745,2842", + "endColumns": "118,108,106,85,103,121,81,80,90,92,95,93,100,92,94,98,90,90,85,102,104,97,104,112,102,172,96,83", + "endOffsets": "219,328,435,521,625,747,829,910,1001,1094,1190,1284,1385,1478,1573,1672,1763,1854,1940,2043,2148,2246,2351,2464,2567,2740,2837,2921" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-az/values-az.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-az/values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,424,512,619,733,814,893,984,1077,1172,1271,1372,1465,1560,1655,1746,1838,1923,2030,2137,2237,2346,2450,2560,2718,2820", + "endColumns": "107,98,111,87,106,113,80,78,90,92,94,98,100,92,94,94,90,91,84,106,106,99,108,103,109,157,101,82", + "endOffsets": "208,307,419,507,614,728,809,888,979,1072,1167,1266,1367,1460,1555,1650,1741,1833,1918,2025,2132,2232,2341,2445,2555,2713,2815,2898" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values_values.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/4ffb752cdf66fc470b29b37942163402/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,95,138,185,240,285,339,391,440,501", + "endColumns": "39,42,46,54,44,53,51,48,60,49", + "endOffsets": "90,133,180,235,280,334,386,435,496,546" + }, + "to": { + "startLines": "364,371,374,375,376,389,390,391,392,393", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "23455,23785,23924,23971,24026,24620,24674,24726,24775,24836", + "endColumns": "39,42,46,54,44,53,51,48,60,49", + "endOffsets": "23490,23823,23966,24021,24066,24669,24721,24770,24831,24881" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values/values.xml", + "from": { + "startLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,171,172,176,177,178,6,13,56,88,125", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,124,7725,7795,7863,7935,8005,8066,8140,8213,8274,8335,8397,8461,8523,8584,8652,8752,8812,8878,8951,9020,9077,9129,9191,9263,9339,9374,9409,9459,9520,9577,9611,9646,9681,9751,9822,9939,10140,10250,10451,10580,10652,319,617,3523,5588,7348", + "endLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,170,171,175,176,177,178,12,55,87,124,131", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "119,182,7790,7858,7930,8000,8061,8135,8208,8269,8330,8392,8456,8518,8579,8647,8747,8807,8873,8946,9015,9072,9124,9186,9258,9334,9369,9404,9454,9515,9572,9606,9641,9676,9746,9817,9934,10135,10245,10446,10575,10647,10714,612,3518,5583,7343,7720" + }, + "to": { + "startLines": "111,112,217,218,219,220,221,222,223,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,358,359,367,368,380,381,382,383,384,388,410,466,2164,2165,2170,2173,2178,2541,2542,3603,3764,3807,3840,3877", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "7000,7069,14147,14217,14285,14357,14427,14488,14562,21459,21520,21581,21643,21707,21769,21830,21898,21998,22058,22124,22197,22266,22323,22375,23102,23174,23595,23630,24205,24255,24316,24373,24407,24585,25831,30605,143847,143964,144231,144524,144791,169193,169265,230242,239910,242816,245083,246843", + "endLines": "111,112,217,218,219,220,221,222,223,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,358,359,367,368,380,381,382,383,384,388,410,466,2164,2168,2170,2176,2178,2541,2542,3609,3806,3838,3876,3883", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "7064,7127,14212,14280,14352,14422,14483,14557,14630,21515,21576,21638,21702,21764,21825,21893,21993,22053,22119,22192,22261,22318,22370,22432,23169,23245,23625,23660,24250,24311,24368,24402,24437,24615,25896,30671,143959,144160,144336,144720,144915,169260,169327,230535,242811,244876,246838,247215" + } + }, + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values/colors.xml", + "from": { + "startLines": "4,8,7,1,2,3,5,6", + "startColumns": "2,2,2,2,2,2,2,2", + "startOffsets": "145,314,276,14,54,99,184,229", + "endColumns": "38,39,37,39,44,45,44,46", + "endOffsets": "181,351,311,51,96,142,226,273" + }, + "to": { + "startLines": "49,83,90,114,115,118,121,128", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2845,5293,5736,7221,7263,7463,7658,8108", + "endColumns": "40,41,39,41,46,47,46,48", + "endOffsets": "2881,5330,5771,7258,7305,7506,7700,8152" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/9aa7e09576dc7293e1aad5f17168b77a/res/values/values.xml", + "from": { + "startLines": "30,31,32,33,34,35,36,2", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "1535,1594,1642,1698,1773,1849,1921,55", + "endLines": "30,31,32,33,34,35,36,29", + "endColumns": "58,47,55,74,75,71,65,24", + "endOffsets": "1589,1637,1693,1768,1844,1916,1982,1530" + }, + "to": { + "startLines": "270,271,272,280,281,282,366,4141", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "17612,17671,17719,18386,18461,18537,23529,261982", + "endLines": "270,271,272,280,281,282,366,4168", + "endColumns": "58,47,55,74,75,71,65,24", + "endOffsets": "17666,17714,17770,18456,18532,18604,23590,263457" + } + }, + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values/styles.xml", + "from": { + "startLines": "6,15", + "startColumns": "4,4", + "startOffsets": "186,510", + "endLines": "12,19", + "endColumns": "12,12", + "endOffsets": "472,807" + }, + "to": { + "startLines": "476,483", + "startColumns": "4,4", + "startOffsets": "31395,31686", + "endLines": "482,487", + "endColumns": "12,12", + "endOffsets": "31681,31983" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,35,36,37,38,45,47,50,7", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,107,168,230,292,2179,2238,2295,2349,2763,2827,2953,356", + "endLines": "2,3,4,5,6,35,36,37,44,46,49,52,34", + "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", + "endOffsets": "102,163,225,287,351,2233,2290,2344,2758,2822,2948,3076,2174" + }, + "to": { + "startLines": "6,64,65,66,67,214,215,216,509,1903,1905,1908,3522", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "382,4001,4062,4124,4186,13977,14036,14093,33439,123988,124052,124178,224313", + "endLines": "6,64,65,66,67,214,215,216,515,1904,1907,1910,3549", + "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", + "endOffsets": "429,4057,4119,4181,4245,14031,14088,14142,33848,124047,124173,124301,226131" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/88627de7ec5d8832b22b4a45185bed05/res/values/values.xml", + "from": { + "startLines": "2,102,3,13", + "startColumns": "4,4,4,4", + "startOffsets": "55,5935,116,724", + "endLines": "2,104,12,101", + "endColumns": "60,12,24,24", + "endOffsets": "111,6075,719,5930" + }, + "to": { + "startLines": "11,2817,3636,3646", + "startColumns": "4,4,4,4", + "startOffsets": "642,186016,231932,232540", + "endLines": "11,2819,3645,3734", + "endColumns": "60,12,24,24", + "endOffsets": "698,186156,232535,237746" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1461,1462,1466,1470,1474,1479,1485,1492,1496,1500,1505,1509,1513,1517,1521,1525,1529,1535,1539,1545,1549,1555,1559,1564,1568,1571,1575,1581,1585,1591,1595,1601,1604,1608,1612,1616,1620,1624,1625,1626,1627,1630,1633,1636,1639,1643,1644,1645,1646,1647,1650,1652,1654,1656,1661,1662,1666,1672,1676,1677,1679,1690,1691,1695,1701,1705,1706,1707,1711,1738,1742,1743,1747,1775,1943,1969,2138,2164,2195,2203,2209,2223,2245,2250,2255,2265,2274,2283,2287,2294,2302,2309,2310,2319,2322,2325,2329,2333,2337,2340,2341,2345,2349,2359,2364,2371,2377,2378,2381,2385,2390,2392,2394,2397,2400,2402,2406,2409,2416,2419,2422,2426,2428,2432,2434,2436,2438,2442,2450,2458,2470,2476,2485,2488,2499,2502,2507,2508,2513,2571,2630,2631,2641,2650,2651,2653,2657,2660,2663,2666,2669,2672,2675,2678,2682,2685,2688,2691,2695,2698,2702,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2728,2730,2731,2732,2733,2734,2735,2736,2737,2739,2740,2742,2743,2745,2747,2748,2750,2751,2752,2753,2754,2755,2757,2758,2759,2760,2761,2762,2764,2766,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2782,2783,2784,2785,2786,2787,2789,2793,2797,2798,2799,2800,2801,2802,2803,2804,2806,2808,2810,2812,2814,2815,2816,2817,2819,2821,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2837,2838,2839,2840,2842,2844,2845,2847,2848,2850,2852,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2867,2868,2869,2870,2872,2873,2874,2875,2876,2878,2880,2882,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,69,152,155,158,161,175,186,196,223,230,241,271,298,307,344,725,730,756,774,810,816,822,845,986,1006,1012,1016,1022,1059,1071,1098,1103,1169,1184,1249,1268,1294", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,160,205,254,295,350,409,471,552,613,688,764,841,919,1004,1086,1162,1238,1315,1393,1499,1605,1684,1764,1821,1879,1953,2028,2093,2159,2219,2280,2352,2425,2492,2560,2619,2678,2737,2796,2855,2909,2963,3016,3070,3124,3178,3232,3306,3385,3458,3532,3603,3675,3747,3820,3877,3935,4008,4082,4156,4231,4303,4376,4446,4517,4577,70911,70980,71049,71119,71193,71269,71333,71410,71486,71563,71628,71697,71774,71849,71918,71986,72063,72129,72190,72287,72352,72421,72520,72591,72650,72708,72765,72824,72888,72959,73031,73103,73175,73247,73314,73382,73450,73509,73572,73636,73726,73817,73877,73943,74010,74076,74146,74210,74263,74376,74434,74497,74562,74627,74702,74775,74847,74896,74957,75018,75079,75141,75205,75269,75333,75398,75461,75521,75582,75648,75707,75767,75829,75900,75960,76028,76114,76201,76291,76378,76466,76548,76631,76721,76812,76864,76922,76967,77033,77097,77154,77211,77265,77322,77370,77419,77470,77504,77551,77600,77646,77678,77742,77804,77864,77921,77995,78065,78143,78197,78267,78352,78400,78446,78517,78595,78673,78745,78819,78893,78967,79047,79120,79189,79261,79338,79399,79462,79528,79592,79663,79726,79791,79855,79916,79977,80029,80102,80176,80245,80320,80394,80468,80609,80679,80732,80810,80900,80988,81084,81174,81756,81845,82092,82373,82625,82910,83303,83780,84002,84224,84500,84727,84957,85187,85417,85647,85874,86293,86519,86944,87174,87602,87821,88104,88312,88443,88670,89096,89321,89748,89969,90394,90514,90790,91091,91415,91706,92020,92157,92288,92393,92635,92802,93006,93214,93485,93597,93709,93814,93931,94145,94291,94431,94517,94865,94953,95199,95617,95866,95948,96046,96663,96763,97015,97439,97694,97788,97877,98114,100166,100408,100510,100763,102947,113668,115184,126004,127532,129289,129915,130335,131396,132661,132917,133153,133700,134194,134799,134997,135577,136141,136516,136634,137172,137329,137525,137798,138054,138224,138365,138429,138711,138997,139673,139937,140275,140628,140722,140908,141214,141476,141601,141728,141967,142178,142297,142490,142667,143122,143303,143425,143684,143797,143984,144086,144193,144322,144597,145105,145601,146478,146772,147342,147491,148223,148395,148731,148823,149101,153445,157932,157994,158624,159238,159329,159442,159671,159831,159983,160154,160320,160489,160656,160819,161062,161232,161405,161576,161850,162049,162254,162584,162668,162764,162860,162958,163058,163160,163262,163364,163466,163568,163668,163764,163876,164005,164128,164259,164390,164488,164602,164696,164836,164970,165066,165178,165278,165394,165490,165602,165702,165842,165978,166142,166272,166430,166580,166721,166865,167000,167112,167262,167390,167518,167654,167786,167916,168046,168158,168298,168444,168588,168726,168792,168882,168958,169062,169152,169254,169362,169470,169570,169650,169742,169840,169950,170028,170134,170226,170330,170440,170562,170725,170882,170962,171062,171152,171262,171356,171462,171554,171654,171766,171880,171996,172112,172206,172320,172432,172534,172654,172776,172858,172962,173082,173208,173306,173400,173488,173600,173716,173838,173950,174125,174241,174327,174419,174531,174655,174722,174848,174916,175044,175188,175316,175385,175480,175595,175708,175807,175916,176027,176138,176239,176344,176444,176574,176665,176788,176882,176994,177080,177184,177280,177368,177486,177590,177694,177820,177908,178016,178116,178206,178316,178400,178502,178586,178640,178704,178810,178920,179004,4638,9782,9900,10015,10147,10862,11554,12071,13718,14103,14700,16299,17832,18220,20527,40045,40305,41697,42730,44743,45005,45361,46191,52973,54107,54401,54624,54951,57001,57649,59282,59552,63403,64004,67813,69028,70437", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1460,1461,1465,1469,1473,1478,1484,1491,1495,1499,1504,1508,1512,1516,1520,1524,1528,1534,1538,1544,1548,1554,1558,1563,1567,1570,1574,1580,1584,1590,1594,1600,1603,1607,1611,1615,1619,1623,1624,1625,1626,1629,1632,1635,1638,1642,1643,1644,1645,1646,1649,1651,1653,1655,1660,1661,1665,1671,1675,1676,1678,1689,1690,1694,1700,1704,1705,1706,1710,1737,1741,1742,1746,1774,1942,1968,2137,2163,2194,2202,2208,2222,2244,2249,2254,2264,2273,2282,2286,2293,2301,2308,2309,2318,2321,2324,2328,2332,2336,2339,2340,2344,2348,2358,2363,2370,2376,2377,2380,2384,2389,2391,2393,2396,2399,2401,2405,2408,2415,2418,2421,2425,2427,2431,2433,2435,2437,2441,2449,2457,2469,2475,2484,2487,2498,2501,2506,2507,2512,2570,2629,2630,2640,2649,2650,2652,2656,2659,2662,2665,2668,2671,2674,2677,2681,2684,2687,2690,2694,2697,2701,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2727,2729,2730,2731,2732,2733,2734,2735,2736,2738,2739,2741,2742,2744,2746,2747,2749,2750,2751,2752,2753,2754,2756,2757,2758,2759,2760,2761,2763,2765,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2781,2782,2783,2784,2785,2786,2788,2792,2796,2797,2798,2799,2800,2801,2802,2803,2805,2807,2809,2811,2813,2814,2815,2816,2818,2820,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2836,2837,2838,2839,2841,2843,2844,2846,2847,2849,2851,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2866,2867,2868,2869,2871,2872,2873,2874,2875,2877,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,151,154,157,160,174,185,195,222,229,240,270,297,306,343,724,729,755,773,809,815,821,844,985,1005,1011,1015,1021,1058,1070,1097,1102,1168,1183,1248,1267,1293,1302", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "155,200,249,290,345,404,466,547,608,683,759,836,914,999,1081,1157,1233,1310,1388,1494,1600,1679,1759,1816,1874,1948,2023,2088,2154,2214,2275,2347,2420,2487,2555,2614,2673,2732,2791,2850,2904,2958,3011,3065,3119,3173,3227,3301,3380,3453,3527,3598,3670,3742,3815,3872,3930,4003,4077,4151,4226,4298,4371,4441,4512,4572,4633,70975,71044,71114,71188,71264,71328,71405,71481,71558,71623,71692,71769,71844,71913,71981,72058,72124,72185,72282,72347,72416,72515,72586,72645,72703,72760,72819,72883,72954,73026,73098,73170,73242,73309,73377,73445,73504,73567,73631,73721,73812,73872,73938,74005,74071,74141,74205,74258,74371,74429,74492,74557,74622,74697,74770,74842,74891,74952,75013,75074,75136,75200,75264,75328,75393,75456,75516,75577,75643,75702,75762,75824,75895,75955,76023,76109,76196,76286,76373,76461,76543,76626,76716,76807,76859,76917,76962,77028,77092,77149,77206,77260,77317,77365,77414,77465,77499,77546,77595,77641,77673,77737,77799,77859,77916,77990,78060,78138,78192,78262,78347,78395,78441,78512,78590,78668,78740,78814,78888,78962,79042,79115,79184,79256,79333,79394,79457,79523,79587,79658,79721,79786,79850,79911,79972,80024,80097,80171,80240,80315,80389,80463,80604,80674,80727,80805,80895,80983,81079,81169,81751,81840,82087,82368,82620,82905,83298,83775,83997,84219,84495,84722,84952,85182,85412,85642,85869,86288,86514,86939,87169,87597,87816,88099,88307,88438,88665,89091,89316,89743,89964,90389,90509,90785,91086,91410,91701,92015,92152,92283,92388,92630,92797,93001,93209,93480,93592,93704,93809,93926,94140,94286,94426,94512,94860,94948,95194,95612,95861,95943,96041,96658,96758,97010,97434,97689,97783,97872,98109,100161,100403,100505,100758,102942,113663,115179,125999,127527,129284,129910,130330,131391,132656,132912,133148,133695,134189,134794,134992,135572,136136,136511,136629,137167,137324,137520,137793,138049,138219,138360,138424,138706,138992,139668,139932,140270,140623,140717,140903,141209,141471,141596,141723,141962,142173,142292,142485,142662,143117,143298,143420,143679,143792,143979,144081,144188,144317,144592,145100,145596,146473,146767,147337,147486,148218,148390,148726,148818,149096,153440,157927,157989,158619,159233,159324,159437,159666,159826,159978,160149,160315,160484,160651,160814,161057,161227,161400,161571,161845,162044,162249,162579,162663,162759,162855,162953,163053,163155,163257,163359,163461,163563,163663,163759,163871,164000,164123,164254,164385,164483,164597,164691,164831,164965,165061,165173,165273,165389,165485,165597,165697,165837,165973,166137,166267,166425,166575,166716,166860,166995,167107,167257,167385,167513,167649,167781,167911,168041,168153,168293,168439,168583,168721,168787,168877,168953,169057,169147,169249,169357,169465,169565,169645,169737,169835,169945,170023,170129,170221,170325,170435,170557,170720,170877,170957,171057,171147,171257,171351,171457,171549,171649,171761,171875,171991,172107,172201,172315,172427,172529,172649,172771,172853,172957,173077,173203,173301,173395,173483,173595,173711,173833,173945,174120,174236,174322,174414,174526,174650,174717,174843,174911,175039,175183,175311,175380,175475,175590,175703,175802,175911,176022,176133,176234,176339,176439,176569,176660,176783,176877,176989,177075,177179,177275,177363,177481,177585,177689,177815,177903,178011,178111,178201,178311,178395,178497,178581,178635,178699,178805,178915,178999,179119,9777,9895,10010,10142,10857,11549,12066,13713,14098,14695,16294,17827,18215,20522,40040,40300,41692,42725,44738,45000,45356,46186,52968,54102,54396,54619,54946,56996,57644,59277,59547,63398,63999,67808,69023,70432,70906" + }, + "to": { + "startLines": "12,14,16,40,41,42,43,45,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,79,80,81,82,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,116,117,119,120,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,268,269,273,274,275,276,277,278,279,350,351,352,353,354,355,356,357,360,361,362,363,365,372,373,379,394,396,397,400,401,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,465,467,468,469,470,471,488,496,497,501,505,516,521,527,534,538,542,547,551,555,559,563,567,571,577,581,587,591,597,601,606,610,613,617,623,627,633,637,643,646,650,654,658,662,666,667,668,669,672,675,678,681,685,686,687,688,689,692,694,696,698,703,704,708,714,718,719,721,732,733,737,743,747,801,802,806,833,837,838,842,1092,1260,1286,1455,1481,1512,1520,1526,1540,1562,1567,1572,1582,1591,1600,1604,1611,1619,1626,1627,1636,1639,1642,1646,1650,1654,1657,1658,1662,1666,1676,1681,1688,1694,1695,1698,1702,1707,1709,1711,1714,1717,1719,1723,1726,1733,1736,1739,1743,1745,1749,1751,1753,1755,1759,1767,1775,1787,1793,1802,1805,1816,1819,1824,1825,1911,1969,2032,2033,2043,2052,2053,2055,2059,2062,2065,2068,2071,2074,2077,2080,2084,2087,2090,2093,2097,2100,2104,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2130,2132,2133,2134,2135,2136,2137,2138,2139,2141,2142,2144,2145,2147,2149,2150,2152,2153,2154,2155,2156,2157,2159,2160,2161,2162,2163,2318,2320,2322,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2338,2339,2340,2341,2342,2343,2345,2349,2418,2419,2420,2421,2422,2423,2424,2447,2449,2451,2453,2455,2457,2458,2459,2460,2462,2464,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2480,2481,2482,2483,2485,2487,2488,2490,2491,2493,2495,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2510,2511,2512,2513,2515,2516,2517,2518,2519,2521,2523,2525,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2820,2903,2906,2909,2912,2926,2937,2947,2974,2981,3013,3043,3070,3079,3116,3517,3610,3736,3884,3920,3926,3940,3963,4104,4125,4131,4135,4171,4210,4222,4249,4254,4344,4379,4444,4463,4489", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "703,803,901,2273,2314,2369,2428,2552,2633,2694,2769,2886,2963,3041,3126,3208,3284,3360,3437,3515,3621,3727,3806,3886,3943,5013,5087,5162,5227,5335,5395,5456,5528,5601,5668,5776,5835,5894,5953,6012,6071,6125,6179,6232,6286,6340,6394,7310,7384,7511,7584,7705,7776,7848,7920,7993,8050,8157,8230,8304,8378,8453,8525,8598,8668,8739,8799,8860,8929,8998,9068,9142,9218,9282,9359,9435,9512,9577,9646,9723,9798,9867,9935,10012,10078,10139,10236,10301,10370,10469,10540,10599,10657,10714,10773,10837,10908,10980,11052,11124,11196,11263,11331,11399,11458,11521,11585,11675,11766,11826,11892,11959,12025,12095,12159,12212,12325,12383,12446,12511,12576,12651,12724,12796,12845,12906,12967,13028,13090,13154,13218,13282,13347,13410,13470,13531,13597,13656,13716,13778,13849,13909,17439,17525,17775,17865,17952,18040,18122,18205,18295,22649,22701,22759,22804,22870,22934,22991,23048,23250,23307,23355,23404,23495,23828,23875,24159,24886,24966,25030,25220,25280,25901,25975,26045,26123,26177,26247,26332,26380,26426,26497,26575,26653,26725,26799,26873,26947,27027,27100,27169,27241,27318,27379,27442,27508,27572,27643,27706,27771,27835,27896,27957,28009,28082,28156,28225,28300,28374,28448,28589,30552,30676,30754,30844,30932,31028,31988,32570,32659,32906,33187,33853,34138,34531,35008,35230,35452,35728,35955,36185,36415,36645,36875,37102,37521,37747,38172,38402,38830,39049,39332,39540,39671,39898,40324,40549,40976,41197,41622,41742,42018,42319,42643,42934,43248,43385,43516,43621,43863,44030,44234,44442,44713,44825,44937,45042,45159,45373,45519,45659,45745,46093,46181,46427,46845,47094,47176,47274,47891,47991,48243,48667,48922,52749,52838,53075,55127,55369,55471,55724,74105,84826,86342,97162,98690,100447,101073,101493,102554,103819,104075,104311,104858,105352,105957,106155,106735,107299,107674,107792,108330,108487,108683,108956,109212,109382,109523,109587,109869,110155,110831,111095,111433,111786,111880,112066,112372,112634,112759,112886,113125,113336,113455,113648,113825,114280,114461,114583,114842,114955,115142,115244,115351,115480,115755,116263,116759,117636,117930,118500,118649,119381,119553,119889,119981,124306,128650,133481,133543,134173,134787,134878,134991,135220,135380,135532,135703,135869,136038,136205,136368,136611,136781,136954,137125,137399,137598,137803,138133,138217,138313,138409,138507,138607,138709,138811,138913,139015,139117,139217,139313,139425,139554,139677,139808,139939,140037,140151,140245,140385,140519,140615,140727,140827,140943,141039,141151,141251,141391,141527,141691,141821,141979,142129,142270,142414,142549,142661,142811,142939,143067,143203,143335,143465,143595,143707,152433,152579,152723,152861,152927,153017,153093,153197,153287,153389,153497,153605,153705,153785,153877,153975,154085,154163,154269,154361,154465,154575,154697,154860,159345,159425,159525,159615,159725,159819,159925,161623,161723,161835,161949,162065,162181,162275,162389,162501,162603,162723,162845,162927,163031,163151,163277,163375,163469,163557,163669,163785,163907,164019,164194,164310,164396,164488,164600,164724,164791,164917,164985,165113,165257,165385,165454,165549,165664,165777,165876,165985,166096,166207,166308,166413,166513,166643,166734,166857,166951,167063,167149,167253,167349,167437,167555,167659,167763,167889,167977,168085,168185,168275,168385,168469,168571,168655,168709,168773,168879,168989,169073,186161,191305,191423,191538,191670,192385,193077,193594,195241,195626,197274,198873,200406,200794,203101,224053,230540,237882,247220,249233,249495,251825,252655,259437,261138,261432,261655,263724,266109,266757,268390,268660,274440,277089,280898,282113,283522", + "endLines": "12,14,16,40,41,42,43,45,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,79,80,81,82,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,116,117,119,120,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,268,269,273,274,275,276,277,278,279,350,351,352,353,354,355,356,357,360,361,362,363,365,372,373,379,394,396,397,400,401,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,465,467,468,469,470,471,495,496,500,504,508,520,526,533,537,541,546,550,554,558,562,566,570,576,580,586,590,596,600,605,609,612,616,622,626,632,636,642,645,649,653,657,661,665,666,667,668,671,674,677,680,684,685,686,687,688,691,693,695,697,702,703,707,713,717,718,720,731,732,736,742,746,747,801,805,832,836,837,841,869,1259,1285,1454,1480,1511,1519,1525,1539,1561,1566,1571,1581,1590,1599,1603,1610,1618,1625,1626,1635,1638,1641,1645,1649,1653,1656,1657,1661,1665,1675,1680,1687,1693,1694,1697,1701,1706,1708,1710,1713,1716,1718,1722,1725,1732,1735,1738,1742,1744,1748,1750,1752,1754,1758,1766,1774,1786,1792,1801,1804,1815,1818,1823,1824,1829,1968,2027,2032,2042,2051,2052,2054,2058,2061,2064,2067,2070,2073,2076,2079,2083,2086,2089,2092,2096,2099,2103,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2129,2131,2132,2133,2134,2135,2136,2137,2138,2140,2141,2143,2144,2146,2148,2149,2151,2152,2153,2154,2155,2156,2158,2159,2160,2161,2162,2163,2319,2321,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2337,2338,2339,2340,2341,2342,2344,2348,2352,2418,2419,2420,2421,2422,2423,2424,2448,2450,2452,2454,2456,2457,2458,2459,2461,2463,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2479,2480,2481,2482,2484,2486,2487,2489,2490,2492,2494,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2509,2510,2511,2512,2514,2515,2516,2517,2518,2520,2522,2524,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2902,2905,2908,2911,2925,2936,2946,2973,2980,2991,3042,3069,3078,3115,3496,3521,3635,3753,3919,3925,3931,3962,4103,4123,4130,4134,4140,4207,4221,4248,4253,4319,4358,4443,4462,4488,4497", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "753,843,945,2309,2364,2423,2485,2628,2689,2764,2840,2958,3036,3121,3203,3279,3355,3432,3510,3616,3722,3801,3881,3938,3996,5082,5157,5222,5288,5390,5451,5523,5596,5663,5731,5830,5889,5948,6007,6066,6120,6174,6227,6281,6335,6389,6443,7379,7458,7579,7653,7771,7843,7915,7988,8045,8103,8225,8299,8373,8448,8520,8593,8663,8734,8794,8855,8924,8993,9063,9137,9213,9277,9354,9430,9507,9572,9641,9718,9793,9862,9930,10007,10073,10134,10231,10296,10365,10464,10535,10594,10652,10709,10768,10832,10903,10975,11047,11119,11191,11258,11326,11394,11453,11516,11580,11670,11761,11821,11887,11954,12020,12090,12154,12207,12320,12378,12441,12506,12571,12646,12719,12791,12840,12901,12962,13023,13085,13149,13213,13277,13342,13405,13465,13526,13592,13651,13711,13773,13844,13904,13972,17520,17607,17860,17947,18035,18117,18200,18290,18381,22696,22754,22799,22865,22929,22986,23043,23097,23302,23350,23399,23450,23524,23870,23919,24200,24913,25025,25087,25275,25332,25970,26040,26118,26172,26242,26327,26375,26421,26492,26570,26648,26720,26794,26868,26942,27022,27095,27164,27236,27313,27374,27437,27503,27567,27638,27701,27766,27830,27891,27952,28004,28077,28151,28220,28295,28369,28443,28584,28654,30600,30749,30839,30927,31023,31113,32565,32654,32901,33182,33434,34133,34526,35003,35225,35447,35723,35950,36180,36410,36640,36870,37097,37516,37742,38167,38397,38825,39044,39327,39535,39666,39893,40319,40544,40971,41192,41617,41737,42013,42314,42638,42929,43243,43380,43511,43616,43858,44025,44229,44437,44708,44820,44932,45037,45154,45368,45514,45654,45740,46088,46176,46422,46840,47089,47171,47269,47886,47986,48238,48662,48917,49011,52833,53070,55122,55364,55466,55719,57903,84821,86337,97157,98685,100442,101068,101488,102549,103814,104070,104306,104853,105347,105952,106150,106730,107294,107669,107787,108325,108482,108678,108951,109207,109377,109518,109582,109864,110150,110826,111090,111428,111781,111875,112061,112367,112629,112754,112881,113120,113331,113450,113643,113820,114275,114456,114578,114837,114950,115137,115239,115346,115475,115750,116258,116754,117631,117925,118495,118644,119376,119548,119884,119976,120254,128645,133132,133538,134168,134782,134873,134986,135215,135375,135527,135698,135864,136033,136200,136363,136606,136776,136949,137120,137394,137593,137798,138128,138212,138308,138404,138502,138602,138704,138806,138908,139010,139112,139212,139308,139420,139549,139672,139803,139934,140032,140146,140240,140380,140514,140610,140722,140822,140938,141034,141146,141246,141386,141522,141686,141816,141974,142124,142265,142409,142544,142656,142806,142934,143062,143198,143330,143460,143590,143702,143842,152574,152718,152856,152922,153012,153088,153192,153282,153384,153492,153600,153700,153780,153872,153970,154080,154158,154264,154356,154460,154570,154692,154855,155012,159420,159520,159610,159720,159814,159920,160012,161718,161830,161944,162060,162176,162270,162384,162496,162598,162718,162840,162922,163026,163146,163272,163370,163464,163552,163664,163780,163902,164014,164189,164305,164391,164483,164595,164719,164786,164912,164980,165108,165252,165380,165449,165544,165659,165772,165871,165980,166091,166202,166303,166408,166508,166638,166729,166852,166946,167058,167144,167248,167344,167432,167550,167654,167758,167884,167972,168080,168180,168270,168380,168464,168566,168650,168704,168768,168874,168984,169068,169188,191300,191418,191533,191665,192380,193072,193589,195236,195621,196218,198868,200401,200789,203096,222614,224308,231927,238910,249228,249490,249846,252650,259432,260566,261427,261650,261977,265769,266752,268385,268655,272506,275036,280893,282108,283517,283991" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/values/values.xml", + "from": { + "startLines": "2,5,6,7,8,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,288,341,394,447,560,626,748,809,875", + "endColumns": "88,52,52,52,52,65,121,60,65,66", + "endOffsets": "139,336,389,442,495,621,743,804,870,937" + }, + "to": { + "startLines": "113,346,347,348,349,2169,2171,2172,2177,2179", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "7132,22437,22490,22543,22596,144165,144341,144463,144725,144920", + "endColumns": "88,52,52,52,52,65,121,60,65,66", + "endOffsets": "7216,22485,22538,22591,22644,144226,144458,144519,144786,144982" + } + }, + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values/strings.xml", + "from": { + "startLines": "2,3", + "startColumns": "2,2", + "startOffsets": "53,99", + "endColumns": "45,50", + "endOffsets": "96,147" + }, + "to": { + "startLines": "450,457", + "startColumns": "4,4", + "startOffsets": "28659,29468", + "endColumns": "47,52", + "endOffsets": "28702,29516" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,345,346,347,352,353,357,363,367,368,369,370,381,382,383,387,393,397,398,399,400,430,450,496,526,546,566,612,616,620,634,675,683,693,694,695,696,697,700,701,704,707,708,711,715,720,728,736,745,753,757,765,773,781,789,797,806,815,823,832,835,837,842,844,849,853,857,858,863,864,865,866,867,868,870,871,876,877,878,879,880,881,882,884,888,892,896,900,901,902,903,904,905,906,907,908,911,915,918,922,930,937,946,950,965,973,976,985,990,1001,1009,1012,1021,1028,1029,1048,1051,1057,1060,1069,1072,1075,1078,1081,1084,1088,1091,1100,1103,1111,1116,1124,1129,1133,1134,1145,1152,1156,1160,1161,1165,1173,1177,1182,1187,55,56,57,76,82,92,96,97,98,141,149,150,158,159,160,161,167,168,169,170,171,172,173,174,175,198,217", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "100,156,216,277,332,385,443,491,540,585,638,696,756,814,860,920,973,1019,1069,1116,1174,1232,1291,1351,1413,1475,1537,1599,1661,1723,1784,1846,1908,1961,2023,2097,2160,2228,2309,2373,2439,2509,2579,2649,2719,2786,2849,2914,2980,3033,3109,3175,3262,18372,18426,18505,18583,18656,18721,18784,18850,18921,18992,19054,19123,19189,19256,19323,19379,19430,19483,19535,19589,19660,19723,19782,19844,19903,19976,20043,20103,20166,20241,20313,20384,20440,20511,20568,20625,20691,20755,20826,20883,20936,20999,21051,21109,21176,21242,21308,21389,21464,21520,21573,21634,21692,21742,21791,21840,21889,21951,22003,22048,22129,22183,22236,22290,22341,22390,22441,22502,22563,22625,22675,22716,22766,22814,22876,22927,22976,23045,23106,23162,23233,23298,23367,23418,23481,23551,23620,23690,23752,23822,23892,23967,24026,24084,24146,24191,24234,24281,24326,24377,24425,24491,24553,24616,24688,24745,24802,24862,24920,24990,25047,25192,25313,25417,25504,25656,25808,25956,26037,26115,26416,26582,26737,26839,27116,27209,27316,27659,27766,27995,28404,28636,28736,28841,28960,29583,29730,29849,30084,30499,30737,30849,30970,31103,33241,34757,38048,40182,41710,43254,46541,46787,47046,47850,49610,50060,50775,50848,50935,51020,51119,51314,51406,51579,51741,51836,52005,52248,52541,52950,53364,53824,54242,54483,54913,55348,55758,56180,56590,57047,57501,57917,58383,58565,58633,58977,59057,59413,59563,59707,59791,60156,60254,60362,60460,60570,60686,60812,60908,61285,61395,61519,61657,61767,61889,62017,62155,62317,62533,62689,62893,62977,63081,63175,63289,63401,63525,63621,63701,63890,64096,64289,64499,64931,65352,65777,65974,66922,67443,67566,68203,68424,69239,69708,69891,70487,70947,71052,72313,72463,72880,73045,73725,73884,74046,74201,74397,74564,74786,74946,75323,75482,75810,76027,76602,76952,77201,77298,78004,78442,78683,78872,79006,79197,79834,80084,80387,80602,3338,3636,3892,4389,4823,5480,5823,7362,7710,9607,9929,10060,10766,10903,11055,11257,11962,12082,13231,13798,13927,14060,14220,14395,14537,16324,18162", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,344,345,346,351,352,356,362,366,367,368,369,380,381,382,386,392,396,397,398,399,429,449,495,525,545,565,611,615,619,633,674,682,692,693,694,695,696,699,700,703,706,707,710,714,719,727,735,744,752,756,764,772,780,788,796,805,814,822,831,834,836,841,843,848,852,856,857,862,863,864,865,866,867,869,870,875,876,877,878,879,880,881,883,887,891,895,899,900,901,902,903,904,905,906,907,910,914,917,921,929,936,945,949,964,972,975,984,989,1000,1008,1011,1020,1027,1028,1047,1050,1056,1059,1068,1071,1074,1077,1080,1083,1087,1090,1099,1102,1110,1115,1123,1128,1132,1133,1144,1151,1155,1159,1160,1164,1172,1176,1181,1186,1195,55,56,75,81,91,95,96,97,140,148,149,157,158,159,160,166,167,168,169,170,171,172,173,174,197,216,217", + "endColumns": "55,59,60,54,52,57,47,48,44,52,57,59,57,45,59,52,45,49,46,57,57,58,59,61,61,61,61,61,61,60,61,61,52,61,73,62,67,80,63,65,69,69,69,69,66,62,64,65,52,75,65,86,75,53,78,77,72,64,62,65,70,70,61,68,65,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,70,55,70,56,56,65,63,70,56,52,62,51,57,66,65,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,53,52,53,50,48,50,60,60,61,49,40,49,47,61,50,48,68,60,55,70,64,68,50,62,69,68,69,61,69,69,74,58,57,61,44,42,46,44,50,47,65,61,62,71,56,56,59,57,69,56,144,120,103,86,151,151,147,80,77,300,165,154,101,10,92,106,10,106,10,10,10,99,104,118,10,146,118,10,10,10,111,120,132,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,91,10,10,94,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,83,10,97,107,97,109,115,10,95,10,109,123,137,109,121,127,10,10,10,10,10,83,103,93,113,111,123,95,79,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,96,10,10,10,10,133,10,10,10,10,10,10,297,255,90,243,367,188,1538,347,95,94,130,412,136,151,201,220,119,1148,566,128,132,159,174,141,125,457,209", + "endOffsets": "151,211,272,327,380,438,486,535,580,633,691,751,809,855,915,968,1014,1064,1111,1169,1227,1286,1346,1408,1470,1532,1594,1656,1718,1779,1841,1903,1956,2018,2092,2155,2223,2304,2368,2434,2504,2574,2644,2714,2781,2844,2909,2975,3028,3104,3170,3257,3333,18421,18500,18578,18651,18716,18779,18845,18916,18987,19049,19118,19184,19251,19318,19374,19425,19478,19530,19584,19655,19718,19777,19839,19898,19971,20038,20098,20161,20236,20308,20379,20435,20506,20563,20620,20686,20750,20821,20878,20931,20994,21046,21104,21171,21237,21303,21384,21459,21515,21568,21629,21687,21737,21786,21835,21884,21946,21998,22043,22124,22178,22231,22285,22336,22385,22436,22497,22558,22620,22670,22711,22761,22809,22871,22922,22971,23040,23101,23157,23228,23293,23362,23413,23476,23546,23615,23685,23747,23817,23887,23962,24021,24079,24141,24186,24229,24276,24321,24372,24420,24486,24548,24611,24683,24740,24797,24857,24915,24985,25042,25187,25308,25412,25499,25651,25803,25951,26032,26110,26411,26577,26732,26834,27111,27204,27311,27654,27761,27990,28399,28631,28731,28836,28955,29578,29725,29844,30079,30494,30732,30844,30965,31098,33236,34752,38043,40177,41705,43249,46536,46782,47041,47845,49605,50055,50770,50843,50930,51015,51114,51309,51401,51574,51736,51831,52000,52243,52536,52945,53359,53819,54237,54478,54908,55343,55753,56175,56585,57042,57496,57912,58378,58560,58628,58972,59052,59408,59558,59702,59786,60151,60249,60357,60455,60565,60681,60807,60903,61280,61390,61514,61652,61762,61884,62012,62150,62312,62528,62684,62888,62972,63076,63170,63284,63396,63520,63616,63696,63885,64091,64284,64494,64926,65347,65772,65969,66917,67438,67561,68198,68419,69234,69703,69886,70482,70942,71047,72308,72458,72875,73040,73720,73879,74041,74196,74392,74559,74781,74941,75318,75477,75805,76022,76597,76947,77196,77293,77999,78437,78678,78867,79001,79192,79829,80079,80382,80597,81178,3631,3887,4384,4818,5475,5818,7357,7705,9602,9924,10055,10761,10898,11050,11252,11957,12077,13226,13793,13922,14055,14215,14390,14532,16319,18157,18367" + }, + "to": { + "startLines": "2,3,4,5,7,8,9,10,13,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,68,69,70,71,72,73,74,75,76,77,78,103,104,105,106,107,108,109,110,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,369,370,377,378,385,386,387,395,398,399,402,403,404,405,406,407,408,409,451,452,453,454,455,456,458,459,460,461,462,463,464,472,748,749,750,755,756,760,766,770,771,772,773,784,785,786,790,796,800,870,871,872,902,922,968,998,1018,1038,1084,1088,1830,1844,1885,1893,2028,2029,2030,2031,2180,2183,2184,2187,2190,2191,2194,2198,2203,2211,2219,2228,2236,2240,2248,2256,2264,2272,2280,2289,2298,2306,2315,2353,2355,2360,2362,2367,2371,2375,2376,2381,2382,2383,2384,2385,2386,2388,2389,2394,2395,2396,2397,2398,2399,2400,2402,2406,2410,2414,2425,2426,2427,2428,2429,2430,2431,2432,2433,2436,2440,2443,2543,2551,2558,2567,2571,2586,2594,2597,2606,2611,2622,2630,2633,2642,2649,2650,2669,2672,2678,2681,2690,2693,2696,2699,2702,2705,2709,2712,2721,2724,2732,2737,2745,2750,2754,2755,2766,2773,2777,2781,2782,2786,2794,2798,2803,2808,2992,2993,2994,3497,3503,3513,3550,3551,3552,3595,3735,3754,3762,3763,3839,3932,3938,3939,4124,4169,4170,4208,4209,4320,4321,4359,4378", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "150,206,266,327,434,487,545,593,758,848,950,1008,1068,1126,1172,1232,1285,1331,1381,1428,1486,1544,1603,1663,1725,1787,1849,1911,1973,2035,2096,2158,2220,2490,4250,4324,4387,4455,4536,4600,4666,4736,4806,4876,4946,6448,6511,6576,6642,6695,6771,6837,6924,14635,14689,14768,14846,14919,14984,15047,15113,15184,15255,15317,15386,15452,15519,15586,15642,15693,15746,15798,15852,15923,15986,16045,16107,16166,16239,16306,16366,16429,16504,16576,16647,16703,16774,16831,16888,16954,17018,17089,17146,17199,17262,17314,17372,18609,18675,18741,18822,18897,18953,19006,19067,19125,19175,19224,19273,19322,19384,19436,19481,19562,19616,19669,19723,19774,19823,19874,19935,19996,20058,20108,20149,20199,20247,20309,20360,20409,20478,20539,20595,20666,20731,20800,20851,20914,20984,21053,21123,21185,21255,21325,21400,23665,23723,24071,24116,24442,24489,24534,24918,25092,25158,25337,25400,25472,25529,25586,25646,25704,25774,28707,28852,28973,29077,29164,29316,29521,29669,29750,29828,30129,30295,30450,31118,49016,49109,49216,49559,49666,49895,50304,50536,50636,50741,50860,51483,51630,51749,51984,52399,52637,57908,58029,58162,60300,61816,65107,67241,68769,70313,73600,73846,120259,121063,122823,123273,133137,133210,133297,133382,144987,145182,145274,145447,145609,145704,145873,146116,146409,146818,147232,147692,148110,148351,148781,149216,149626,150048,150458,150915,151369,151785,152251,155017,155085,155429,155509,155865,156015,156159,156243,156608,156706,156814,156912,157022,157138,157264,157360,157737,157847,157971,158109,158219,158341,158469,158607,158769,158985,159141,160017,160101,160205,160299,160413,160525,160649,160745,160825,161014,161220,161413,169332,169764,170185,170610,170807,171755,172276,172399,173036,173257,174072,174541,174724,175320,175780,175885,177146,177296,177713,177878,178558,178717,178879,179034,179230,179397,179619,179779,180156,180315,180643,180860,181435,181785,182034,182131,182837,183275,183516,183705,183839,184030,184667,184917,185220,185435,196223,196521,196777,222619,223053,223710,226136,227675,228023,229920,237751,238915,239621,239758,244881,249851,250556,250676,260571,263462,263591,265774,265934,272511,272653,275041,276879", + "endLines": "2,3,4,5,7,8,9,10,13,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,68,69,70,71,72,73,74,75,76,77,78,103,104,105,106,107,108,109,110,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,369,370,377,378,385,386,387,395,398,399,402,403,404,405,406,407,408,409,451,452,453,454,455,456,458,459,460,461,462,463,464,475,748,749,754,755,759,765,769,770,771,772,783,784,785,789,795,799,800,870,871,901,921,967,997,1017,1037,1083,1087,1091,1843,1884,1892,1902,2028,2029,2030,2031,2182,2183,2186,2189,2190,2193,2197,2202,2210,2218,2227,2235,2239,2247,2255,2263,2271,2279,2288,2297,2305,2314,2317,2354,2359,2361,2366,2370,2374,2375,2380,2381,2382,2383,2384,2385,2387,2388,2393,2394,2395,2396,2397,2398,2399,2401,2405,2409,2413,2417,2425,2426,2427,2428,2429,2430,2431,2432,2435,2439,2442,2446,2550,2557,2566,2570,2585,2593,2596,2605,2610,2621,2629,2632,2641,2648,2649,2668,2671,2677,2680,2689,2692,2695,2698,2701,2704,2708,2711,2720,2723,2731,2736,2744,2749,2753,2754,2765,2772,2776,2780,2781,2785,2793,2797,2802,2807,2816,2992,2993,3012,3502,3512,3516,3550,3551,3594,3602,3735,3761,3762,3763,3839,3937,3938,3939,4124,4169,4170,4208,4209,4320,4343,4377,4378", + "endColumns": "55,59,60,54,52,57,47,48,44,52,57,59,57,45,59,52,45,49,46,57,57,58,59,61,61,61,61,61,61,60,61,61,52,61,73,62,67,80,63,65,69,69,69,69,66,62,64,65,52,75,65,86,75,53,78,77,72,64,62,65,70,70,61,68,65,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,70,55,70,56,56,65,63,70,56,52,62,51,57,66,65,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,53,52,53,50,48,50,60,60,61,49,40,49,47,61,50,48,68,60,55,70,64,68,50,62,69,68,69,61,69,69,74,58,57,61,44,42,46,44,50,47,65,61,62,71,56,56,59,57,69,56,144,120,103,86,151,151,147,80,77,300,165,154,101,10,92,106,10,106,10,10,10,99,104,118,10,146,118,10,10,10,111,120,132,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,91,10,10,94,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,83,10,97,107,97,109,115,10,95,10,109,123,137,109,121,127,10,10,10,10,10,83,103,93,113,111,123,95,79,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,96,10,10,10,10,133,10,10,10,10,10,10,297,255,90,243,367,188,1538,347,95,94,130,412,136,151,201,220,119,1148,566,128,132,159,174,141,125,457,209", + "endOffsets": "201,261,322,377,482,540,588,637,798,896,1003,1063,1121,1167,1227,1280,1326,1376,1423,1481,1539,1598,1658,1720,1782,1844,1906,1968,2030,2091,2153,2215,2268,2547,4319,4382,4450,4531,4595,4661,4731,4801,4871,4941,5008,6506,6571,6637,6690,6766,6832,6919,6995,14684,14763,14841,14914,14979,15042,15108,15179,15250,15312,15381,15447,15514,15581,15637,15688,15741,15793,15847,15918,15981,16040,16102,16161,16234,16301,16361,16424,16499,16571,16642,16698,16769,16826,16883,16949,17013,17084,17141,17194,17257,17309,17367,17434,18670,18736,18817,18892,18948,19001,19062,19120,19170,19219,19268,19317,19379,19431,19476,19557,19611,19664,19718,19769,19818,19869,19930,19991,20053,20103,20144,20194,20242,20304,20355,20404,20473,20534,20590,20661,20726,20795,20846,20909,20979,21048,21118,21180,21250,21320,21395,21454,23718,23780,24111,24154,24484,24529,24580,24961,25153,25215,25395,25467,25524,25581,25641,25699,25769,25826,28847,28968,29072,29159,29311,29463,29664,29745,29823,30124,30290,30445,30547,31390,49104,49211,49554,49661,49890,50299,50531,50631,50736,50855,51478,51625,51744,51979,52394,52632,52744,58024,58157,60295,61811,65102,67236,68764,70308,73595,73841,74100,121058,122818,123268,123983,133205,133292,133377,133476,145177,145269,145442,145604,145699,145868,146111,146404,146813,147227,147687,148105,148346,148776,149211,149621,150043,150453,150910,151364,151780,152246,152428,155080,155424,155504,155860,156010,156154,156238,156603,156701,156809,156907,157017,157133,157259,157355,157732,157842,157966,158104,158214,158336,158464,158602,158764,158980,159136,159340,160096,160200,160294,160408,160520,160644,160740,160820,161009,161215,161408,161618,169759,170180,170605,170802,171750,172271,172394,173031,173252,174067,174536,174719,175315,175775,175880,177141,177291,177708,177873,178553,178712,178874,179029,179225,179392,179614,179774,180151,180310,180638,180855,181430,181780,182029,182126,182832,183270,183511,183700,183834,184025,184662,184912,185215,185430,186011,196516,196772,197269,223048,223705,224048,227670,228018,229915,230237,237877,239616,239753,239905,245078,250551,250671,251820,261133,263586,263719,265929,266104,272648,274435,276874,277084" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-nb/values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,2747", + "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", + "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,2821" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-nb/values-nb.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2826", + "endColumns": "100", + "endOffsets": "2922" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fi/values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,2792", + "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", + "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,2867" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fi/values-fi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2872", + "endColumns": "100", + "endOffsets": "2968" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hy/values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,309,419,508,614,729,811,892,983,1076,1172,1266,1367,1460,1555,1649,1740,1831,1916,2023,2130,2229,2339,2446,2546,2703,2802", + "endColumns": "102,100,109,88,105,114,81,80,90,92,95,93,100,92,94,93,90,90,84,106,106,98,109,106,99,156,98,81", + "endOffsets": "203,304,414,503,609,724,806,887,978,1071,1167,1261,1362,1455,1550,1644,1735,1826,1911,2018,2125,2224,2334,2441,2541,2698,2797,2879" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hy/values-hy.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2884", + "endColumns": "100", + "endOffsets": "2980" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pl/values-pl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2909", + "endColumns": "100", + "endOffsets": "3005" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pl/values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,2827", + "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", + "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,2904" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v26/values-v26.xml", + "from": { + "startLines": "2,3,4,8,12,16", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,130,217,431,657,896", + "endLines": "2,3,7,11,15,16", + "endColumns": "74,86,12,12,12,92", + "endOffsets": "125,212,426,652,891,984" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-mr/values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,322,429,519,620,735,812,890,981,1074,1168,1265,1366,1459,1554,1651,1742,1833,1913,2025,2127,2223,2332,2433,2545,2702,2807", + "endColumns": "110,105,106,89,100,114,76,77,90,92,93,96,100,92,94,96,90,90,79,111,101,95,108,100,111,156,104,79", + "endOffsets": "211,317,424,514,615,730,807,885,976,1069,1163,1260,1361,1454,1549,1646,1737,1828,1908,2020,2122,2218,2327,2428,2540,2697,2802,2882" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-mr/values-mr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-v28_values-v28.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v28/values-v28.xml", + "from": { + "startLines": "2,3,4,8", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,447", + "endLines": "2,3,7,11", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,442,684" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-gl/values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,329,437,522,624,750,834,915,1007,1101,1199,1293,1394,1488,1584,1679,1771,1863,1945,2052,2161,2260,2368,2472,2579,2738,2838", + "endColumns": "111,111,107,84,101,125,83,80,91,93,97,93,100,93,95,94,91,91,81,106,108,98,107,103,106,158,99,81", + "endOffsets": "212,324,432,517,619,745,829,910,1002,1096,1194,1288,1389,1483,1579,1674,1766,1858,1940,2047,2156,2255,2363,2467,2574,2733,2833,2915" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-gl/values-gl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-en-rCA_values-en-rCA.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-lt/values-lt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2978", + "endColumns": "100", + "endOffsets": "3074" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-lt/values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,322,435,522,631,752,834,915,1009,1105,1203,1299,1403,1499,1597,1700,1794,1888,1973,2082,2191,2291,2401,2505,2618,2794,2895", + "endColumns": "115,100,112,86,108,120,81,80,93,95,97,95,103,95,97,102,93,93,84,108,108,99,109,103,112,175,100,82", + "endOffsets": "216,317,430,517,626,747,829,910,1004,1100,1198,1294,1398,1494,1592,1695,1789,1883,1968,2077,2186,2286,2396,2500,2613,2789,2890,2973" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-el/values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,2879", + "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", + "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,2959" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-el/values-el.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2964", + "endColumns": "100", + "endOffsets": "3060" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v22/values-v22.xml", + "from": { + "startLines": "2,3,4,9", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,553", + "endLines": "2,3,8,13", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,548,896" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ldltr-v21/values-ldltr-v21.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "112", + "endOffsets": "163" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/values-v24/values-v24.xml", + "from": { + "startLines": "2,3,4,5", + "startColumns": "4,4,4,4", + "startOffsets": "55,121,182,248", + "endColumns": "65,60,65,66", + "endOffsets": "116,177,243,310" + }, + "to": { + "startLines": "4,5,6,7", + "startColumns": "4,4,4,4", + "startOffsets": "347,413,474,540", + "endColumns": "65,60,65,66", + "endOffsets": "408,469,535,602" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v24/values-v24.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,212", + "endColumns": "156,134", + "endOffsets": "207,342" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-tl/values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,332,449,537,643,764,843,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1944,2053,2164,2265,2375,2492,2600,2763,2865", + "endColumns": "118,107,116,87,105,120,78,77,90,92,95,93,100,92,94,93,90,90,83,108,110,100,109,116,107,162,101,83", + "endOffsets": "219,327,444,532,638,759,838,916,1007,1100,1196,1290,1391,1484,1579,1673,1764,1855,1939,2048,2159,2260,2370,2487,2595,2758,2860,2944" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-tl/values-tl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-km/values-km.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-km/values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,308,420,507,611,729,806,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1905,2009,2114,2214,2324,2431,2539,2701,2799", + "endColumns": "102,99,111,86,103,117,76,76,90,92,95,93,100,92,94,93,90,90,82,103,104,99,109,106,107,161,97,82", + "endOffsets": "203,303,415,502,606,724,801,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1900,2004,2109,2209,2319,2426,2534,2696,2794,2877" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-af.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-af.json new file mode 100644 index 0000000000000000000000000000000000000000..ca3a1e669aaa13ea16c2fb6cb363fcd0b04ae67a --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-af.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-af/values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,415,500,603,721,797,874,965,1058,1154,1248,1348,1441,1536,1635,1730,1824,1905,2012,2115,2212,2320,2422,2524,2678,2776", + "endColumns": "103,99,105,84,102,117,75,76,90,92,95,93,99,92,94,98,94,93,80,106,102,96,107,101,101,153,97,79", + "endOffsets": "204,304,410,495,598,716,792,869,960,1053,1149,1243,1343,1436,1531,1630,1725,1819,1900,2007,2110,2207,2315,2417,2519,2673,2771,2851" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-af/values-af.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2856", + "endColumns": "100", + "endOffsets": "2952" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-am.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-am.json new file mode 100644 index 0000000000000000000000000000000000000000..bda38e426bb45d63f1db0abb194ec8e4e61bba14 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-am.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-am/values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,207,306,412,498,601,714,792,870,961,1054,1147,1241,1342,1435,1530,1624,1715,1805,1884,1984,2084,2180,2283,2382,2489,2642,2738", + "endColumns": "101,98,105,85,102,112,77,77,90,92,92,93,100,92,94,93,90,89,78,99,99,95,102,98,106,152,95,78", + "endOffsets": "202,301,407,493,596,709,787,865,956,1049,1142,1236,1337,1430,1525,1619,1710,1800,1879,1979,2079,2175,2278,2377,2484,2637,2733,2812" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-am/values-am.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2817", + "endColumns": "100", + "endOffsets": "2913" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ar.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ar.json new file mode 100644 index 0000000000000000000000000000000000000000..2d18d7dc1c26756d4002a61bea309dfcb76ee6c9 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ar.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ar/values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,326,435,517,618,732,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1832,1911,2016,2117,2213,2321,2424,2527,2682,2779", + "endColumns": "116,103,108,81,100,113,78,78,90,92,95,93,100,92,94,93,90,93,78,104,100,95,107,102,102,154,96,80", + "endOffsets": "217,321,430,512,613,727,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1827,1906,2011,2112,2208,2316,2419,2522,2677,2774,2855" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ar/values-ar.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2860", + "endColumns": "100", + "endOffsets": "2956" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-as.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-as.json new file mode 100644 index 0000000000000000000000000000000000000000..7a9b17cae70166bd7d116482976844c7afd57af3 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-as.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-as/values-as.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-as/values-as.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2950", + "endColumns": "100", + "endOffsets": "3046" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-as/values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,419,515,617,736,816,896,987,1080,1173,1268,1368,1461,1558,1652,1743,1834,1923,2025,2140,2243,2352,2471,2591,2758,2861", + "endColumns": "107,98,106,95,101,118,79,79,90,92,92,94,99,92,96,93,90,90,88,101,114,102,108,118,119,166,102,88", + "endOffsets": "208,307,414,510,612,731,811,891,982,1075,1168,1263,1363,1456,1553,1647,1738,1829,1918,2020,2135,2238,2347,2466,2586,2753,2856,2945" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-az.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-az.json new file mode 100644 index 0000000000000000000000000000000000000000..ef2bed65830198e2c8b22a6fd461a2854c184a38 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-az.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-az/values-az.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-az/values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,424,512,619,733,814,893,984,1077,1172,1271,1372,1465,1560,1655,1746,1838,1923,2030,2137,2237,2346,2450,2560,2718,2820", + "endColumns": "107,98,111,87,106,113,80,78,90,92,94,98,100,92,94,94,90,91,84,106,106,99,108,103,109,157,101,82", + "endOffsets": "208,307,419,507,614,728,809,888,979,1072,1167,1266,1367,1460,1555,1650,1741,1833,1918,2025,2132,2232,2341,2445,2555,2713,2815,2898" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json new file mode 100644 index 0000000000000000000000000000000000000000..a943d63f8a960dfb1e9544a992f604c3eb0bdf32 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2912", + "endColumns": "100", + "endOffsets": "3008" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,424,510,614,732,814,895,986,1079,1175,1269,1370,1463,1558,1663,1754,1845,1933,2039,2147,2248,2353,2461,2562,2731,2828", + "endColumns": "108,103,105,85,103,117,81,80,90,92,95,93,100,92,94,104,90,90,87,105,107,100,104,107,100,168,96,83", + "endOffsets": "209,313,419,505,609,727,809,890,981,1074,1170,1264,1365,1458,1553,1658,1749,1840,1928,2034,2142,2243,2348,2456,2557,2726,2823,2907" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-be.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-be.json new file mode 100644 index 0000000000000000000000000000000000000000..85641323a0da3785c5d773bea8bfc57d26f5892f --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-be.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-be/values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,328,444,530,638,756,835,913,1005,1099,1195,1289,1385,1479,1575,1670,1762,1854,1937,2043,2149,2247,2355,2460,2565,2734,2834", + "endColumns": "119,102,115,85,107,117,78,77,91,93,95,93,95,93,95,94,91,91,82,105,105,97,107,104,104,168,99,80", + "endOffsets": "220,323,439,525,633,751,830,908,1000,1094,1190,1284,1380,1474,1570,1665,1757,1849,1932,2038,2144,2242,2350,2455,2560,2729,2829,2910" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-be/values-be.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-bg.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-bg.json new file mode 100644 index 0000000000000000000000000000000000000000..a5b0106a373232734e1864fff5ae04a8cb774196 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-bg.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-bg/values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,327,432,518,623,744,823,901,992,1085,1181,1275,1376,1469,1564,1672,1763,1854,1937,2051,2160,2260,2374,2480,2588,2748,2847", + "endColumns": "114,106,104,85,104,120,78,77,90,92,95,93,100,92,94,107,90,90,82,113,108,99,113,105,107,159,98,82", + "endOffsets": "215,322,427,513,618,739,818,896,987,1080,1176,1270,1371,1464,1559,1667,1758,1849,1932,2046,2155,2255,2369,2475,2583,2743,2842,2925" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-bg/values-bg.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2930", + "endColumns": "100", + "endOffsets": "3026" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-bn.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-bn.json new file mode 100644 index 0000000000000000000000000000000000000000..23031114f403a76c26164265ad3e6d26c27c97c8 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-bn.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-bn/values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,326,432,526,631,760,838,916,1007,1100,1195,1289,1390,1483,1578,1672,1763,1854,1941,2051,2159,2258,2368,2474,2587,2752,2857", + "endColumns": "108,111,105,93,104,128,77,77,90,92,94,93,100,92,94,93,90,90,86,109,107,98,109,105,112,164,104,81", + "endOffsets": "209,321,427,521,626,755,833,911,1002,1095,1190,1284,1385,1478,1573,1667,1758,1849,1936,2046,2154,2253,2363,2469,2582,2747,2852,2934" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-bn/values-bn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2939", + "endColumns": "100", + "endOffsets": "3035" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-bs.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-bs.json new file mode 100644 index 0000000000000000000000000000000000000000..e90dd3e5b9800f8a2325339c2d685ebdbb6f0e88 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-bs.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-bs/values-bs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-bs/values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,333,440,526,630,752,834,915,1006,1099,1195,1289,1390,1483,1578,1677,1768,1859,1945,2048,2153,2251,2356,2469,2572,2745,2842", + "endColumns": "118,108,106,85,103,121,81,80,90,92,95,93,100,92,94,98,90,90,85,102,104,97,104,112,102,172,96,83", + "endOffsets": "219,328,435,521,625,747,829,910,1001,1094,1190,1284,1385,1478,1573,1672,1763,1854,1940,2043,2148,2246,2351,2464,2567,2740,2837,2921" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ca.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ca.json new file mode 100644 index 0000000000000000000000000000000000000000..4b94447d3a87c1f94770d55f0f2cd22407e7be25 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ca.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ca/values-ca.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ca/values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,329,436,519,627,753,837,918,1009,1102,1196,1291,1390,1483,1576,1670,1761,1852,1935,2046,2155,2253,2363,2467,2575,2735,2834", + "endColumns": "117,105,106,82,107,125,83,80,90,92,93,94,98,92,92,93,90,90,82,110,108,97,109,103,107,159,98,80", + "endOffsets": "218,324,431,514,622,748,832,913,1004,1097,1191,1286,1385,1478,1571,1665,1756,1847,1930,2041,2150,2248,2358,2462,2570,2730,2829,2910" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-cs.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-cs.json new file mode 100644 index 0000000000000000000000000000000000000000..bfa6f4d627f68e756dec4c0e711ed5f6651bb1bd --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-cs.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-cs/values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,2809", + "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", + "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,2886" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-cs/values-cs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2891", + "endColumns": "100", + "endOffsets": "2987" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-da.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-da.json new file mode 100644 index 0000000000000000000000000000000000000000..f3e385a1f1c28152fd8621f850ad0173781b18e1 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-da.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-da/values-da.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2844", + "endColumns": "100", + "endOffsets": "2940" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-da/values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,2765", + "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", + "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,2839" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-de.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-de.json new file mode 100644 index 0000000000000000000000000000000000000000..374c8bed56bfde2661aa6cbe3651a9fa6eca67f5 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-de.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-de/values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,2843", + "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", + "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,2920" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-de/values-de.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2925", + "endColumns": "100", + "endOffsets": "3021" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-el.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-el.json new file mode 100644 index 0000000000000000000000000000000000000000..9ddc7bd298401d03e8bad274e7b7ce6eb4dedb7a --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-el.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-el/values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,2879", + "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", + "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,2959" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-el/values-el.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2964", + "endColumns": "100", + "endOffsets": "3060" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json new file mode 100644 index 0000000000000000000000000000000000000000..8933f073350761b43be9dc54e5b8ce3a62fd04b2 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rCA.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rCA.json new file mode 100644 index 0000000000000000000000000000000000000000..b6dd96cd86b236d806bd7cd0f9169edba6fcd5aa --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rCA.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json new file mode 100644 index 0000000000000000000000000000000000000000..850d17bdcae133eac4ad3d8c597e66e398e721cc --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json new file mode 100644 index 0000000000000000000000000000000000000000..05f8ea4a881eb5219b72d63b57308c4c1c820173 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rXC.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rXC.json new file mode 100644 index 0000000000000000000000000000000000000000..e4383a9f00984c87e4b1e3dd8d3734304ac55080 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-en-rXC.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,310,510,719,904,1106,1321,1494,1671,1862,2055,2253,2449,2652,2847,3044,3239,3432,3623,3807,4011,4216,4417,4624,4826,5031,5303,5503", + "endColumns": "204,199,208,184,201,214,172,176,190,192,197,195,202,194,196,194,192,190,183,203,204,200,206,201,204,271,199,178", + "endOffsets": "305,505,714,899,1101,1316,1489,1666,1857,2050,2248,2444,2647,2842,3039,3234,3427,3618,3802,4006,4211,4412,4619,4821,5026,5298,5498,5677" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "202", + "endOffsets": "253" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "5682", + "endColumns": "202", + "endOffsets": "5880" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json new file mode 100644 index 0000000000000000000000000000000000000000..2f757e58055a86f5f6379892109320ec5d2a199a --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,334,442,527,628,751,836,918,1009,1102,1198,1292,1392,1485,1584,1680,1771,1862,1944,2056,2156,2257,2365,2472,2579,2738,2838", + "endColumns": "119,108,107,84,100,122,84,81,90,92,95,93,99,92,98,95,90,90,81,111,99,100,107,106,106,158,99,81", + "endOffsets": "220,329,437,522,623,746,831,913,1004,1097,1193,1287,1387,1480,1579,1675,1766,1857,1939,2051,2151,2252,2360,2467,2574,2733,2833,2915" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-es.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-es.json new file mode 100644 index 0000000000000000000000000000000000000000..1981d8354f9df09ebe43525662fa450e072fe2d3 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-es.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-es/values-es.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2924", + "endColumns": "100", + "endOffsets": "3020" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-es/values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,2842", + "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", + "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,2919" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-et.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-et.json new file mode 100644 index 0000000000000000000000000000000000000000..7ed0a993cce24f890f5b9e96264e34197ab74eb4 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-et.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-et/values-et.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2942", + "endColumns": "100", + "endOffsets": "3038" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-et/values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,329,440,526,628,745,825,903,995,1089,1194,1296,1406,1500,1601,1695,1787,1880,1963,2074,2179,2278,2388,2489,2592,2758,2860", + "endColumns": "116,106,110,85,101,116,79,77,91,93,104,101,109,93,100,93,91,92,82,110,104,98,109,100,102,165,101,81", + "endOffsets": "217,324,435,521,623,740,820,898,990,1084,1189,1291,1401,1495,1596,1690,1782,1875,1958,2069,2174,2273,2383,2484,2587,2753,2855,2937" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-eu.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-eu.json new file mode 100644 index 0000000000000000000000000000000000000000..53eadea508e27a1b7ad1eb6daf66bbdf34c60018 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-eu.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-eu/values-eu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2938", + "endColumns": "100", + "endOffsets": "3034" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-eu/values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,312,422,508,614,738,825,909,1001,1095,1192,1286,1388,1482,1578,1675,1767,1860,1942,2051,2161,2260,2369,2475,2586,2757,2856", + "endColumns": "108,97,109,85,105,123,86,83,91,93,96,93,101,93,95,96,91,92,81,108,109,98,108,105,110,170,98,81", + "endOffsets": "209,307,417,503,609,733,820,904,996,1090,1187,1281,1383,1477,1573,1670,1762,1855,1937,2046,2156,2255,2364,2470,2581,2752,2851,2933" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-fa.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-fa.json new file mode 100644 index 0000000000000000000000000000000000000000..6b3d3d7c607433b9be9b7315c367e157509d0247 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-fa.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fa/values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,318,429,513,616,731,810,888,981,1076,1172,1266,1369,1464,1561,1660,1753,1843,1924,2036,2139,2237,2347,2451,2560,2721,2822", + "endColumns": "109,102,110,83,102,114,78,77,92,94,95,93,102,94,96,98,92,89,80,111,102,97,109,103,108,160,100,80", + "endOffsets": "210,313,424,508,611,726,805,883,976,1071,1167,1261,1364,1459,1556,1655,1748,1838,1919,2031,2134,2232,2342,2446,2555,2716,2817,2898" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fa/values-fa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-fi.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-fi.json new file mode 100644 index 0000000000000000000000000000000000000000..12a4c6017e4124b12ea23b8a66f8b4a9b3c03700 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-fi.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fi/values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,2792", + "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", + "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,2867" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fi/values-fi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2872", + "endColumns": "100", + "endOffsets": "2968" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json new file mode 100644 index 0000000000000000000000000000000000000000..588008566be755404da4f9d84bd6cb3c46dbda58 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,529,645,775,858,938,1029,1122,1221,1316,1417,1510,1603,1698,1789,1880,1976,2086,2198,2301,2412,2519,2621,2780,2879", + "endColumns": "110,114,110,86,115,129,82,79,90,92,98,94,100,92,92,94,90,90,95,109,111,102,110,106,101,158,98,85", + "endOffsets": "211,326,437,524,640,770,853,933,1024,1117,1216,1311,1412,1505,1598,1693,1784,1875,1971,2081,2193,2296,2407,2514,2616,2775,2874,2960" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2965", + "endColumns": "100", + "endOffsets": "3061" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-fr.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-fr.json new file mode 100644 index 0000000000000000000000000000000000000000..589f28ac4e6f4a9b452b5807972be84eb7e3f695 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-fr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fr/values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,2859", + "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", + "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,2940" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fr/values-fr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-gl.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-gl.json new file mode 100644 index 0000000000000000000000000000000000000000..24c0baa74e06c73fd3c851db6885c21ecba05b6d --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-gl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-gl/values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,329,437,522,624,750,834,915,1007,1101,1199,1293,1394,1488,1584,1679,1771,1863,1945,2052,2161,2260,2368,2472,2579,2738,2838", + "endColumns": "111,111,107,84,101,125,83,80,91,93,97,93,100,93,95,94,91,91,81,106,108,98,107,103,106,158,99,81", + "endOffsets": "212,324,432,517,619,745,829,910,1002,1096,1194,1288,1389,1483,1579,1674,1766,1858,1940,2047,2156,2255,2363,2467,2574,2733,2833,2915" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-gl/values-gl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-gu.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-gu.json new file mode 100644 index 0000000000000000000000000000000000000000..7b9ede47749365c288b940cad290a6eeb94335ca --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-gu.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-gu/values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,425,512,613,736,813,891,982,1075,1174,1268,1369,1462,1557,1654,1745,1836,1916,2022,2124,2221,2330,2429,2539,2699,2802", + "endColumns": "108,103,106,86,100,122,76,77,90,92,98,93,100,92,94,96,90,90,79,105,101,96,108,98,109,159,102,79", + "endOffsets": "209,313,420,507,608,731,808,886,977,1070,1169,1263,1364,1457,1552,1649,1740,1831,1911,2017,2119,2216,2325,2424,2534,2694,2797,2877" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-gu/values-gu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json new file mode 100644 index 0000000000000000000000000000000000000000..b08d5df46706152a34b5bdb1ed7cc895f505d155 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-h720dp-v13/values-h720dp-v13.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "66", + "endOffsets": "117" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json new file mode 100644 index 0000000000000000000000000000000000000000..50c907db526b6aa02602c73760a7654859bcc111 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hdpi-v4/values-hdpi-v4.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "6", + "endColumns": "13", + "endOffsets": "327" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hi.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hi.json new file mode 100644 index 0000000000000000000000000000000000000000..95072769436bc3224ee4dbca034ffae917c2de6d --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hi.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hi/values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,308,418,504,606,728,805,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1912,2021,2124,2226,2336,2437,2549,2711,2812", + "endColumns": "105,96,109,85,101,121,76,77,90,92,95,93,100,92,94,93,90,90,89,108,102,101,109,100,111,161,100,79", + "endOffsets": "206,303,413,499,601,723,800,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1907,2016,2119,2221,2331,2432,2544,2706,2807,2887" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hi/values-hi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2892", + "endColumns": "100", + "endOffsets": "2988" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hr.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hr.json new file mode 100644 index 0000000000000000000000000000000000000000..e8cffa0937df84f90b84e8731aee346ffb8a5c6f --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hr/values-hr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hr/values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,307,417,503,607,726,810,893,984,1077,1173,1267,1368,1461,1556,1655,1746,1837,1923,2027,2140,2246,2351,2464,2571,2740,2837", + "endColumns": "104,96,109,85,103,118,83,82,90,92,95,93,100,92,94,98,90,90,85,103,112,105,104,112,106,168,96,88", + "endOffsets": "205,302,412,498,602,721,805,888,979,1072,1168,1262,1363,1456,1551,1650,1741,1832,1918,2022,2135,2241,2346,2459,2566,2735,2832,2921" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hu.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hu.json new file mode 100644 index 0000000000000000000000000000000000000000..a03bcf586b03c37e49c264655a2353086d308726 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hu.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hu/values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,2878", + "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", + "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,2956" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hu/values-hu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2961", + "endColumns": "100", + "endOffsets": "3057" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hy.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hy.json new file mode 100644 index 0000000000000000000000000000000000000000..33f4d4ca1e13dbed5e6734e9dabc521e4fa743e0 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-hy.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hy/values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,309,419,508,614,729,811,892,983,1076,1172,1266,1367,1460,1555,1649,1740,1831,1916,2023,2130,2229,2339,2446,2546,2703,2802", + "endColumns": "102,100,109,88,105,114,81,80,90,92,95,93,100,92,94,93,90,90,84,106,106,98,109,106,99,156,98,81", + "endOffsets": "203,304,414,503,609,724,806,887,978,1071,1167,1261,1362,1455,1550,1644,1735,1826,1911,2018,2125,2224,2334,2441,2541,2698,2797,2879" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hy/values-hy.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2884", + "endColumns": "100", + "endOffsets": "2980" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-in.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-in.json new file mode 100644 index 0000000000000000000000000000000000000000..6f6399ffa9ed149ace6055b8c6d19e47c8060d45 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-in.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-in/values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,2803", + "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", + "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,2882" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-in/values-in.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-is.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-is.json new file mode 100644 index 0000000000000000000000000000000000000000..6e2956d5df0d0ac2393a639642245f9e6e223c40 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-is.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-is/values-is.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-is/values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,302,414,499,600,714,794,874,965,1058,1154,1248,1355,1448,1543,1638,1729,1823,1904,2014,2122,2220,2329,2428,2531,2686,2784", + "endColumns": "99,96,111,84,100,113,79,79,90,92,95,93,106,92,94,94,90,93,80,109,107,97,108,98,102,154,97,80", + "endOffsets": "200,297,409,494,595,709,789,869,960,1053,1149,1243,1350,1443,1538,1633,1724,1818,1899,2009,2117,2215,2324,2423,2526,2681,2779,2860" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-it.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-it.json new file mode 100644 index 0000000000000000000000000000000000000000..9f7dd1d2c8b8510f45abd56979a0f9e6d8b33728 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-it.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-it/values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,2823", + "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", + "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,2901" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-it/values-it.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2906", + "endColumns": "100", + "endOffsets": "3002" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-iw.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-iw.json new file mode 100644 index 0000000000000000000000000000000000000000..10f5b9ed4f1a7e9f3e590707b8ff86deb65a527e --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-iw.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-iw/values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,308,416,500,600,714,792,870,961,1055,1151,1245,1346,1439,1534,1631,1722,1814,1895,1997,2101,2199,2302,2403,2503,2655,2751", + "endColumns": "103,98,107,83,99,113,77,77,90,93,95,93,100,92,94,96,90,91,80,101,103,97,102,100,99,151,95,80", + "endOffsets": "204,303,411,495,595,709,787,865,956,1050,1146,1240,1341,1434,1529,1626,1717,1809,1890,1992,2096,2194,2297,2398,2498,2650,2746,2827" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-iw/values-iw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2832", + "endColumns": "100", + "endOffsets": "2928" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ja.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ja.json new file mode 100644 index 0000000000000000000000000000000000000000..03bda883b8d9ebf69f083c194394d742542c8680 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ja.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ja/values-ja.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2771", + "endColumns": "100", + "endOffsets": "2867" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ja/values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,2693", + "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", + "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,2766" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ka.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ka.json new file mode 100644 index 0000000000000000000000000000000000000000..7eca3d8981c29f852d18f4c1f3c38dad0ba186a5 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ka.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ka/values-ka.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2899", + "endColumns": "100", + "endOffsets": "2995" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ka/values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,429,517,622,735,819,901,992,1085,1180,1276,1377,1470,1565,1659,1750,1841,1924,2037,2144,2242,2355,2459,2563,2720,2818", + "endColumns": "108,103,110,87,104,112,83,81,90,92,94,95,100,92,94,93,90,90,82,112,106,97,112,103,103,156,97,80", + "endOffsets": "209,313,424,512,617,730,814,896,987,1080,1175,1271,1372,1465,1560,1654,1745,1836,1919,2032,2139,2237,2350,2454,2558,2715,2813,2894" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-kk.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-kk.json new file mode 100644 index 0000000000000000000000000000000000000000..9ee19fdcb1bbe7354b6c09ef978e788c04f3c69d --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-kk.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-kk/values-kk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2893", + "endColumns": "100", + "endOffsets": "2989" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-kk/values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,320,430,515,621,740,821,901,992,1085,1181,1275,1376,1469,1564,1661,1752,1844,1925,2028,2133,2231,2338,2447,2547,2713,2812", + "endColumns": "111,102,109,84,105,118,80,79,90,92,95,93,100,92,94,96,90,91,80,102,104,97,106,108,99,165,98,80", + "endOffsets": "212,315,425,510,616,735,816,896,987,1080,1176,1270,1371,1464,1559,1656,1747,1839,1920,2023,2128,2226,2333,2442,2542,2708,2807,2888" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-km.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-km.json new file mode 100644 index 0000000000000000000000000000000000000000..9cd7004649d628d7a31963091d51cd3dd7d05bcf --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-km.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-km/values-km.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-km/values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,308,420,507,611,729,806,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1905,2009,2114,2214,2324,2431,2539,2701,2799", + "endColumns": "102,99,111,86,103,117,76,76,90,92,95,93,100,92,94,93,90,90,82,103,104,99,109,106,107,161,97,82", + "endOffsets": "203,303,415,502,606,724,801,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1900,2004,2109,2209,2319,2426,2534,2696,2794,2877" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-kn.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-kn.json new file mode 100644 index 0000000000000000000000000000000000000000..4e0e6f7343a941f86c7607ce796c2a41f2fc8aa6 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-kn.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-kn/values-kn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2948", + "endColumns": "100", + "endOffsets": "3044" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-kn/values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,335,448,536,643,770,847,924,1015,1108,1204,1298,1399,1492,1587,1681,1772,1863,1945,2061,2172,2271,2384,2488,2602,2766,2866", + "endColumns": "117,111,112,87,106,126,76,76,90,92,95,93,100,92,94,93,90,90,81,115,110,98,112,103,113,163,99,81", + "endOffsets": "218,330,443,531,638,765,842,919,1010,1103,1199,1293,1394,1487,1582,1676,1767,1858,1940,2056,2167,2266,2379,2483,2597,2761,2861,2943" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ko.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ko.json new file mode 100644 index 0000000000000000000000000000000000000000..cc8e0a4988a6ffc4e436a1b03f48ef57adfb6621 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ko.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ko/values-ko.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2756", + "endColumns": "100", + "endOffsets": "2852" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ko/values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,2678", + "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", + "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,2751" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ky.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ky.json new file mode 100644 index 0000000000000000000000000000000000000000..e0e4663d2437f99cc2e83db9051ca27c532376b6 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ky.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ky/values-ky.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ky/values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,304,423,507,614,731,809,888,979,1072,1168,1262,1363,1456,1551,1646,1737,1828,1909,2019,2126,2224,2330,2437,2538,2699,2802", + "endColumns": "103,94,118,83,106,116,77,78,90,92,95,93,100,92,94,94,90,90,80,109,106,97,105,106,100,160,102,80", + "endOffsets": "204,299,418,502,609,726,804,883,974,1067,1163,1257,1358,1451,1546,1641,1732,1823,1904,2014,2121,2219,2325,2432,2533,2694,2797,2878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-land.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-land.json new file mode 100644 index 0000000000000000000000000000000000000000..133ffde5391f2885e747380382a653db60810a20 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-land.json @@ -0,0 +1,38 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-land/values-land.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "10", + "endOffsets": "222" + }, + "to": { + "startLines": "5", + "startColumns": "4", + "startOffsets": "264", + "endLines": "8", + "endColumns": "10", + "endOffsets": "431" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-land/values-land.xml", + "from": { + "startLines": "2,3,4", + "startColumns": "4,4,4", + "startOffsets": "55,125,196", + "endColumns": "69,70,67", + "endOffsets": "120,191,259" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json new file mode 100644 index 0000000000000000000000000000000000000000..f99bb7758fc780ba475b1909431890a789ee38da --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-large-v4/values-large-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10", + "startColumns": "4,4,4,4,4,4,4,4,4", + "startOffsets": "55,114,185,256,326,396,464,532,636", + "endColumns": "58,70,70,69,69,67,67,103,115", + "endOffsets": "109,180,251,321,391,459,527,631,747" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-large-v4/values-large-v4.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,177", + "endColumns": "121,133", + "endOffsets": "172,306" + }, + "to": { + "startLines": "11,12", + "startColumns": "4,4", + "startOffsets": "752,874", + "endColumns": "121,133", + "endOffsets": "869,1003" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json new file mode 100644 index 0000000000000000000000000000000000000000..250fb75cc9b36a0b5744f8a36501dd3ca8624a3b --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ldltr-v21/values-ldltr-v21.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "112", + "endOffsets": "163" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-lo.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-lo.json new file mode 100644 index 0000000000000000000000000000000000000000..a8c3291cdb2ae4ef1804b739f724f3492595390e --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-lo.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo/values-lo.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-lo/values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,412,497,602,714,791,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1888,1995,2092,2190,2295,2398,2502,2659,2755", + "endColumns": "102,96,106,84,104,111,76,77,90,92,95,93,100,92,94,93,90,90,79,106,96,97,104,102,103,156,95,80", + "endOffsets": "203,300,407,492,597,709,786,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1883,1990,2087,2185,2290,2393,2497,2654,2750,2831" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-lo/values-lo.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2836", + "endColumns": "100", + "endOffsets": "2932" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-lt.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-lt.json new file mode 100644 index 0000000000000000000000000000000000000000..da7fd204c2decb82aeb3d5fce74756d340e08be1 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-lt.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-lt/values-lt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2978", + "endColumns": "100", + "endOffsets": "3074" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-lt/values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,322,435,522,631,752,834,915,1009,1105,1203,1299,1403,1499,1597,1700,1794,1888,1973,2082,2191,2291,2401,2505,2618,2794,2895", + "endColumns": "115,100,112,86,108,120,81,80,93,95,97,95,103,95,97,102,93,93,84,108,108,99,109,103,112,175,100,82", + "endOffsets": "216,317,430,517,626,747,829,910,1004,1100,1198,1294,1398,1494,1592,1695,1789,1883,1968,2077,2186,2286,2396,2500,2613,2789,2890,2973" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-lv.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-lv.json new file mode 100644 index 0000000000000000000000000000000000000000..dcc4eb7cf5f7be4fae991b8bf3223453cf1f7988 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-lv.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-lv/values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,333,442,528,632,754,836,918,1028,1136,1243,1352,1464,1567,1679,1786,1891,1991,2076,2185,2297,2396,2507,2616,2721,2895,2994", + "endColumns": "119,107,108,85,103,121,81,81,109,107,106,108,111,102,111,106,104,99,84,108,111,98,110,108,104,173,98,81", + "endOffsets": "220,328,437,523,627,749,831,913,1023,1131,1238,1347,1459,1562,1674,1781,1886,1986,2071,2180,2292,2391,2502,2611,2716,2890,2989,3071" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-lv/values-lv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "3076", + "endColumns": "100", + "endOffsets": "3172" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-mk.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-mk.json new file mode 100644 index 0000000000000000000000000000000000000000..3394b746da26c8b8521b0fbe1da5998c6a4974dc --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-mk.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk/values-mk.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-mk/values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,317,425,511,616,735,818,900,997,1096,1193,1293,1400,1499,1600,1696,1793,1884,1971,2077,2184,2285,2392,2503,2607,2763,2861", + "endColumns": "107,103,107,85,104,118,82,81,96,98,96,99,106,98,100,95,96,90,86,105,106,100,106,110,103,155,97,83", + "endOffsets": "208,312,420,506,611,730,813,895,992,1091,1188,1288,1395,1494,1595,1691,1788,1879,1966,2072,2179,2280,2387,2498,2602,2758,2856,2940" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-mk/values-mk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ml.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ml.json new file mode 100644 index 0000000000000000000000000000000000000000..f69734dfc9eac4a87c077169cee475f0f3776b37 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ml.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml/values-ml.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ml/values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,342,457,550,655,787,864,940,1031,1124,1226,1320,1421,1515,1610,1709,1800,1891,1973,2084,2190,2288,2402,2502,2613,2772,2873", + "endColumns": "118,117,114,92,104,131,76,75,90,92,101,93,100,93,94,98,90,90,81,110,105,97,113,99,110,158,100,81", + "endOffsets": "219,337,452,545,650,782,859,935,1026,1119,1221,1315,1416,1510,1605,1704,1795,1886,1968,2079,2185,2283,2397,2497,2608,2767,2868,2950" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ml/values-ml.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2955", + "endColumns": "100", + "endOffsets": "3051" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-mn.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-mn.json new file mode 100644 index 0000000000000000000000000000000000000000..95b84ca143e25f54d78c6fbfee70a6ae4652aa95 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-mn.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn/values-mn.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-mn/values-mn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2876", + "endColumns": "100", + "endOffsets": "2972" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-mn/values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,218,318,431,518,624,736,818,900,991,1084,1180,1276,1374,1467,1562,1654,1745,1835,1917,2026,2130,2227,2335,2436,2539,2698,2795", + "endColumns": "112,99,112,86,105,111,81,81,90,92,95,95,97,92,94,91,90,89,81,108,103,96,107,100,102,158,96,80", + "endOffsets": "213,313,426,513,619,731,813,895,986,1079,1175,1271,1369,1462,1557,1649,1740,1830,1912,2021,2125,2222,2330,2431,2534,2693,2790,2871" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-mr.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-mr.json new file mode 100644 index 0000000000000000000000000000000000000000..484a638105e920cf452026a26f991c4d69885d80 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-mr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr/values-mr.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-mr/values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,322,429,519,620,735,812,890,981,1074,1168,1265,1366,1459,1554,1651,1742,1833,1913,2025,2127,2223,2332,2433,2545,2702,2807", + "endColumns": "110,105,106,89,100,114,76,77,90,92,93,96,100,92,94,96,90,90,79,111,101,95,108,100,111,156,104,79", + "endOffsets": "211,317,424,514,615,730,807,885,976,1069,1163,1260,1361,1454,1549,1646,1737,1828,1908,2020,2122,2218,2327,2428,2540,2697,2802,2882" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-mr/values-mr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ms.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ms.json new file mode 100644 index 0000000000000000000000000000000000000000..e148431a122a9a9df641b4fb28da20fadf760f6d --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ms.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms/values-ms.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ms/values-ms.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2881", + "endColumns": "100", + "endOffsets": "2977" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ms/values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,321,429,516,620,731,809,888,979,1072,1167,1261,1360,1453,1548,1642,1733,1824,1904,2016,2125,2222,2331,2434,2541,2700,2801", + "endColumns": "110,104,107,86,103,110,77,78,90,92,94,93,98,92,94,93,90,90,79,111,108,96,108,102,106,158,100,79", + "endOffsets": "211,316,424,511,615,726,804,883,974,1067,1162,1256,1355,1448,1543,1637,1728,1819,1899,2011,2120,2217,2326,2429,2536,2695,2796,2876" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-my.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-my.json new file mode 100644 index 0000000000000000000000000000000000000000..285b7a03665d31f4bcf13f371caee71ed9b6f80b --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-my.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my/values-my.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-my/values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,319,436,529,641,769,847,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1951,2074,2186,2288,2414,2525,2635,2795,2895", + "endColumns": "108,104,116,92,111,127,77,78,90,92,95,93,100,92,94,93,90,90,85,122,111,101,125,110,109,159,99,83", + "endOffsets": "209,314,431,524,636,764,842,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1946,2069,2181,2283,2409,2520,2630,2790,2890,2974" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-my/values-my.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2979", + "endColumns": "100", + "endOffsets": "3075" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-nb.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-nb.json new file mode 100644 index 0000000000000000000000000000000000000000..0523f6f89ed73ad17149575502423365a1a408a7 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-nb.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-nb/values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,2747", + "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", + "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,2821" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-nb/values-nb.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2826", + "endColumns": "100", + "endOffsets": "2922" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ne.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ne.json new file mode 100644 index 0000000000000000000000000000000000000000..afbbb7b5e8da6b4e8849897812af065e6c25b0b6 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ne.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne/values-ne.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ne/values-ne.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2988", + "endColumns": "100", + "endOffsets": "3084" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ne/values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,422,513,620,747,841,931,1022,1115,1211,1305,1406,1499,1594,1688,1779,1870,1958,2068,2184,2287,2402,2504,2619,2790,2902", + "endColumns": "104,103,107,90,106,126,93,89,90,92,95,93,100,92,94,93,90,90,87,109,115,102,114,101,114,170,111,85", + "endOffsets": "205,309,417,508,615,742,836,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1953,2063,2179,2282,2397,2499,2614,2785,2897,2983" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json new file mode 100644 index 0000000000000000000000000000000000000000..e61806eefa27723009081a79ca28dd859362d48d --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-night-v8/values-night-v8.xml", + "from": { + "startLines": "2,3,4,5,6,7,8", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "55,125,209,293,389,491,593", + "endColumns": "69,83,83,95,101,101,93", + "endOffsets": "120,204,288,384,486,588,682" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-nl.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-nl.json new file mode 100644 index 0000000000000000000000000000000000000000..68d22702420c9e7f9a01e0bb66ee562b290e1859 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-nl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-nl/values-nl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2921", + "endColumns": "100", + "endOffsets": "3017" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-nl/values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,2839", + "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", + "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,2916" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-or.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-or.json new file mode 100644 index 0000000000000000000000000000000000000000..b4918cdf70a38c5fe9b39d09a7c3bc7dce55e78d --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-or.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-or/values-or.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-or/values-or.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-or/values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,334,441,527,631,751,828,905,996,1089,1186,1281,1382,1475,1570,1666,1757,1847,1929,2039,2144,2250,2361,2464,2582,2745,2847", + "endColumns": "118,109,106,85,103,119,76,76,90,92,96,94,100,92,94,95,90,89,81,109,104,105,110,102,117,162,101,88", + "endOffsets": "219,329,436,522,626,746,823,900,991,1084,1181,1276,1377,1470,1565,1661,1752,1842,1924,2034,2139,2245,2356,2459,2577,2740,2842,2931" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pa.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pa.json new file mode 100644 index 0000000000000000000000000000000000000000..1ebdb3c1fd6248281a152b72e5d3accae3c83c0e --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pa.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa/values-pa.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pa/values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,410,496,596,709,786,862,953,1046,1142,1236,1337,1430,1525,1619,1710,1801,1880,1981,2085,2182,2291,2390,2500,2659,2759", + "endColumns": "102,96,104,85,99,112,76,75,90,92,95,93,100,92,94,93,90,90,78,100,103,96,108,98,109,158,99,79", + "endOffsets": "203,300,405,491,591,704,781,857,948,1041,1137,1231,1332,1425,1520,1614,1705,1796,1875,1976,2080,2177,2286,2385,2495,2654,2754,2834" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pa/values-pa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2839", + "endColumns": "100", + "endOffsets": "2935" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pl.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pl.json new file mode 100644 index 0000000000000000000000000000000000000000..66751cf2508ee2d9431af69be189f44bb503f8ea --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pl/values-pl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2909", + "endColumns": "100", + "endOffsets": "3005" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pl/values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,2827", + "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", + "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,2904" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-port.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-port.json new file mode 100644 index 0000000000000000000000000000000000000000..44ce5115b944f1a5fa7845370ade3a8f34b2ea10 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-port.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-port/values-port.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "55", + "endOffsets": "106" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json new file mode 100644 index 0000000000000000000000000000000000000000..f641230c750a3783c7f69367e3a8715c310cebd5 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json new file mode 100644 index 0000000000000000000000000000000000000000..e3390a0f272b8ecf558df6576ea6d14b6c6a842b --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,2864", + "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", + "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,2944" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pt.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pt.json new file mode 100644 index 0000000000000000000000000000000000000000..96211347638a647ecc6dac947605ecca51c03cdd --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-pt.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pt/values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pt/values-pt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ro.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ro.json new file mode 100644 index 0000000000000000000000000000000000000000..b43659387dcd9f4c424abc078d9248801cc0a841 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ro.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ro/values-ro.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2953", + "endColumns": "100", + "endOffsets": "3049" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ro/values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,2870", + "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", + "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,2948" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ru.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ru.json new file mode 100644 index 0000000000000000000000000000000000000000..84964c70c26505af2c11df0ba89717770e2ceb89 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ru.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ru/values-ru.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2913", + "endColumns": "100", + "endOffsets": "3009" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ru/values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,2832", + "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", + "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,2908" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-si.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-si.json new file mode 100644 index 0000000000000000000000000000000000000000..099ef912d47b0a5f718957a151ae1487ec8902a5 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-si.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si/values-si.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-si/values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,322,429,517,622,738,827,914,1005,1098,1193,1287,1388,1481,1576,1670,1761,1852,1936,2045,2150,2248,2358,2457,2563,2722,2821", + "endColumns": "109,106,106,87,104,115,88,86,90,92,94,93,100,92,94,93,90,90,83,108,104,97,109,98,105,158,98,81", + "endOffsets": "210,317,424,512,617,733,822,909,1000,1093,1188,1282,1383,1476,1571,1665,1756,1847,1931,2040,2145,2243,2353,2452,2558,2717,2816,2898" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-si/values-si.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sk.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sk.json new file mode 100644 index 0000000000000000000000000000000000000000..fbc8d5d2bf964be4a390419a2d772897e0694afb --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sk.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sk/values-sk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2918", + "endColumns": "100", + "endOffsets": "3014" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sk/values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,312,423,509,617,735,816,897,988,1081,1180,1274,1375,1468,1563,1661,1752,1843,1927,2032,2141,2240,2346,2457,2566,2732,2830", + "endColumns": "106,99,110,85,107,117,80,80,90,92,98,93,100,92,94,97,90,90,83,104,108,98,105,110,108,165,97,87", + "endOffsets": "207,307,418,504,612,730,811,892,983,1076,1175,1269,1370,1463,1558,1656,1747,1838,1922,2027,2136,2235,2341,2452,2561,2727,2825,2913" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sl.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sl.json new file mode 100644 index 0000000000000000000000000000000000000000..b6b5ff09d89cfa28b99f81826344a5ee8ad259b0 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sl/values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,319,427,514,617,736,821,905,997,1091,1187,1281,1377,1471,1567,1667,1759,1851,1935,2043,2152,2252,2365,2472,2576,2756,2853", + "endColumns": "106,106,107,86,102,118,84,83,91,93,95,93,95,93,95,99,91,91,83,107,108,99,112,106,103,179,96,82", + "endOffsets": "207,314,422,509,612,731,816,900,992,1086,1182,1276,1372,1466,1562,1662,1754,1846,1930,2038,2147,2247,2360,2467,2571,2751,2848,2931" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sl/values-sl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sq.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sq.json new file mode 100644 index 0000000000000000000000000000000000000000..558ec04a9275c963287c65efb0ecb96192157359 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sq.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq/values-sq.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sq/values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,319,431,518,628,751,832,911,1002,1095,1191,1285,1387,1480,1575,1672,1763,1856,1939,2045,2150,2248,2354,2457,2573,2727,2826", + "endColumns": "113,99,111,86,109,122,80,78,90,92,95,93,101,92,94,96,90,92,82,105,104,97,105,102,115,153,98,80", + "endOffsets": "214,314,426,513,623,746,827,906,997,1090,1186,1280,1382,1475,1570,1667,1758,1851,1934,2040,2145,2243,2349,2452,2568,2722,2821,2902" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sq/values-sq.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2907", + "endColumns": "100", + "endOffsets": "3003" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sr.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sr.json new file mode 100644 index 0000000000000000000000000000000000000000..530144f3408ecd806650c36b484d376cfb59e105 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sr/values-sr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2905", + "endColumns": "100", + "endOffsets": "3001" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sr/values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,317,423,509,613,731,812,892,983,1076,1172,1266,1367,1460,1555,1660,1751,1842,1930,2035,2143,2244,2348,2456,2557,2724,2821", + "endColumns": "108,102,105,85,103,117,80,79,90,92,95,93,100,92,94,104,90,90,87,104,107,100,103,107,100,166,96,83", + "endOffsets": "209,312,418,504,608,726,807,887,978,1071,1167,1261,1362,1455,1550,1655,1746,1837,1925,2030,2138,2239,2343,2451,2552,2719,2816,2900" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sv.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sv.json new file mode 100644 index 0000000000000000000000000000000000000000..db4dc52b5da2a86931a851a2a5ec750ebacd9bc8 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sv.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sv/values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,2784", + "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", + "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,2858" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sv/values-sv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2863", + "endColumns": "100", + "endOffsets": "2959" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sw.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sw.json new file mode 100644 index 0000000000000000000000000000000000000000..1c99774a6437bc76a9d8ec2d61d4cff6eab05996 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sw.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sw/values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,306,414,504,609,726,808,891,982,1075,1169,1263,1364,1457,1552,1647,1738,1830,1912,2013,2122,2221,2328,2437,2542,2704,2801", + "endColumns": "102,97,107,89,104,116,81,82,90,92,93,93,100,92,94,94,90,91,81,100,108,98,106,108,104,161,96,81", + "endOffsets": "203,301,409,499,604,721,803,886,977,1070,1164,1258,1359,1452,1547,1642,1733,1825,1907,2008,2117,2216,2323,2432,2537,2699,2796,2878" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sw/values-sw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json new file mode 100644 index 0000000000000000000000000000000000000000..589bfe90cf188ee421d2cfcf49635a16bca66d2d --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json @@ -0,0 +1,38 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,10,11,12", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,185,256,328,386,444,553,617,680", + "endLines": "2,3,4,5,6,7,9,10,11,15", + "endColumns": "59,69,70,71,57,57,10,63,62,10", + "endOffsets": "110,180,251,323,381,439,548,612,675,847" + }, + "to": { + "startLines": "10,11,12,13,14,15,16,18,19,20", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "611,671,741,812,884,942,1000,1109,1173,1236", + "endLines": "10,11,12,13,14,15,17,18,19,23", + "endColumns": "59,69,70,71,57,57,10,63,62,10", + "endOffsets": "666,736,807,879,937,995,1104,1168,1231,1403" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,124,193,263,337,413,472,543", + "endColumns": "68,68,69,73,75,58,70,67", + "endOffsets": "119,188,258,332,408,467,538,606" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ta.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ta.json new file mode 100644 index 0000000000000000000000000000000000000000..f7d470dd7d89987e0f0e12518edc0e3629eb2aa1 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ta.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta/values-ta.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ta/values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,317,432,521,628,754,832,909,1009,1114,1210,1305,1412,1514,1618,1713,1815,1913,1995,2097,2201,2298,2408,2510,2617,2774,2874", + "endColumns": "113,97,114,88,106,125,77,76,99,104,95,94,106,101,103,94,101,97,81,101,103,96,109,101,106,156,99,79", + "endOffsets": "214,312,427,516,623,749,827,904,1004,1109,1205,1300,1407,1509,1613,1708,1810,1908,1990,2092,2196,2293,2403,2505,2612,2769,2869,2949" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ta/values-ta.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2954", + "endColumns": "100", + "endOffsets": "3050" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-te.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-te.json new file mode 100644 index 0000000000000000000000000000000000000000..5c089fb1dec94b144197006886f9f7dd6dfcdc9e --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-te.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te/values-te.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-te/values-te.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2946", + "endColumns": "100", + "endOffsets": "3042" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-te/values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,328,439,529,634,759,841,923,1014,1107,1203,1297,1398,1491,1586,1681,1772,1863,1947,2060,2168,2267,2378,2480,2597,2763,2864", + "endColumns": "113,108,110,89,104,124,81,81,90,92,95,93,100,92,94,94,90,90,83,112,107,98,110,101,116,165,100,81", + "endOffsets": "214,323,434,524,629,754,836,918,1009,1102,1198,1292,1393,1486,1581,1676,1767,1858,1942,2055,2163,2262,2373,2475,2592,2758,2859,2941" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-th.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-th.json new file mode 100644 index 0000000000000000000000000000000000000000..a03e25baabc98ea5fad2e5b6a19b1d9693ed0b04 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-th.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-th/values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,2764", + "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", + "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,2840" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-th/values-th.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2845", + "endColumns": "100", + "endOffsets": "2941" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-tl.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-tl.json new file mode 100644 index 0000000000000000000000000000000000000000..7956843a4f8122090756960184e23979e7c26cb9 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-tl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-tl/values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,332,449,537,643,764,843,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1944,2053,2164,2265,2375,2492,2600,2763,2865", + "endColumns": "118,107,116,87,105,120,78,77,90,92,95,93,100,92,94,93,90,90,83,108,110,100,109,116,107,162,101,83", + "endOffsets": "219,327,444,532,638,759,838,916,1007,1100,1196,1290,1391,1484,1579,1673,1764,1855,1939,2048,2159,2260,2370,2487,2595,2758,2860,2944" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-tl/values-tl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-tr.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-tr.json new file mode 100644 index 0000000000000000000000000000000000000000..33b7a50a6fc0d11bfbfada4ae932c50a210d31b7 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-tr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-tr/values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,2786", + "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", + "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,2860" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-tr/values-tr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-uk.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-uk.json new file mode 100644 index 0000000000000000000000000000000000000000..f1e58b04955e1ba8fd681c1d4be88326b6ea6302 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-uk.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-uk/values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,423,509,617,735,814,894,985,1078,1174,1268,1369,1462,1557,1652,1743,1834,1915,2021,2128,2226,2334,2440,2549,2719,2819", + "endColumns": "109,101,105,85,107,117,78,79,90,92,95,93,100,92,94,94,90,90,80,105,106,97,107,105,108,169,99,80", + "endOffsets": "210,312,418,504,612,730,809,889,980,1073,1169,1263,1364,1457,1552,1647,1738,1829,1910,2016,2123,2221,2329,2435,2544,2714,2814,2895" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-uk/values-uk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2900", + "endColumns": "100", + "endOffsets": "2996" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ur.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ur.json new file mode 100644 index 0000000000000000000000000000000000000000..fb1e6bff685ed118174dda2ba0397ca3e1ab2cf1 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-ur.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur/values-ur.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ur/values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,321,430,516,620,740,816,892,984,1078,1174,1268,1370,1464,1560,1654,1746,1838,1923,2031,2140,2242,2353,2453,2561,2726,2824", + "endColumns": "109,105,108,85,103,119,75,75,91,93,95,93,101,93,95,93,91,91,84,107,108,101,110,99,107,164,97,79", + "endOffsets": "210,316,425,511,615,735,811,887,979,1073,1169,1263,1365,1459,1555,1649,1741,1833,1918,2026,2135,2237,2348,2448,2556,2721,2819,2899" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ur/values-ur.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2904", + "endColumns": "100", + "endOffsets": "3000" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-uz.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-uz.json new file mode 100644 index 0000000000000000000000000000000000000000..d7d02532964e07b3864bb40d0f2b56184034f163 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-uz.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz/values-uz.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-uz/values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,428,514,614,730,810,889,980,1073,1169,1263,1358,1451,1546,1641,1732,1824,1908,2017,2124,2225,2333,2438,2545,2706,2805", + "endColumns": "104,103,113,85,99,115,79,78,90,92,95,93,94,92,94,94,90,91,83,108,106,100,107,104,106,160,98,83", + "endOffsets": "205,309,423,509,609,725,805,884,975,1068,1164,1258,1353,1446,1541,1636,1727,1819,1903,2012,2119,2220,2328,2433,2540,2701,2800,2884" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-uz/values-uz.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2889", + "endColumns": "100", + "endOffsets": "2985" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v14.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v14.json new file mode 100644 index 0000000000000000000000000000000000000000..d2381d6afc297380464fe4fcea8202da3e335801 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v14.json @@ -0,0 +1,28 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml", + "map": [ + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values-v14/styles.xml", + "from": { + "startLines": "6", + "startColumns": "4", + "startOffsets": "219", + "endLines": "8", + "endColumns": "12", + "endOffsets": "354" + }, + "to": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "4", + "endColumns": "12", + "endOffsets": "190" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v16.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v16.json new file mode 100644 index 0000000000000000000000000000000000000000..53b0eca7c0fe3c286b1b2b51bc185accab613c1a --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v16.json @@ -0,0 +1,38 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v16/values-v16.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-v16/values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "65", + "endOffsets": "116" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v16/values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "12", + "endOffsets": "223" + }, + "to": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "121", + "endLines": "6", + "endColumns": "12", + "endOffsets": "289" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v17.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v17.json new file mode 100644 index 0000000000000000000000000000000000000000..24765eb434ab8c1a189d4a71463c389f3404a5fd --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v17.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v17/values-v17.xml", + "from": { + "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", + "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", + "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", + "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v18.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v18.json new file mode 100644 index 0000000000000000000000000000000000000000..486cd9e043a0b1db399438793904f3b5807f8770 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v18.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v18/values-v18.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "48", + "endOffsets": "99" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v21.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v21.json new file mode 100644 index 0000000000000000000000000000000000000000..7a0d6aff458ba05046c63ce498ad5d4f25847ed9 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v21.json @@ -0,0 +1,85 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,5,8,11", + "startColumns": "4,4,4,4", + "startOffsets": "55,223,386,554", + "endLines": "4,7,10,13", + "endColumns": "12,12,12,12", + "endOffsets": "218,381,549,716" + }, + "to": { + "startLines": "265,268,272,276", + "startColumns": "4,4,4,4", + "startOffsets": "19504,19672,19961,20257", + "endLines": "267,270,274,278", + "endColumns": "12,12,12,12", + "endOffsets": "19667,19830,20124,20419" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,13", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,354,470,596,722,850,1022", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" + }, + "to": { + "startLines": "2,3,4,5,263,264,271,275,311,314", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,19262,19378,19835,20129,22137,22309", + "endLines": "2,3,4,5,263,264,271,275,313,318", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,19373,19499,19956,20252,22304,22642" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8799,11879,12076,12275,12398,12521,12634,12817,12948,13149,13238,13349,13582,13683,13778,13901,14030,14147,14324,14423,14558,14701,14836,14955,15156,15275,15368,15479,15535,15642,15837,15948,16081,16176,16267,16358,16475,16614,16685,16768,17448,17505,17563,18257", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8794,11874,12071,12270,12393,12516,12629,12812,12943,13144,13233,13344,13577,13678,13773,13896,14025,14142,14319,14418,14553,14696,14831,14950,15151,15270,15363,15474,15530,15637,15832,15943,16076,16171,16262,16353,16470,16609,16680,16763,17443,17500,17558,18252,18958" + }, + "to": { + "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9098,12178,12375,12574,12697,12820,12933,13116,13247,13448,13537,13648,13881,13982,14077,14200,14329,14446,14623,14722,14857,15000,15135,15254,15455,15574,15667,15778,15834,15941,16136,16247,16380,16475,16566,16657,16774,16913,16984,17067,17747,17804,17862,18556", + "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9093,12173,12370,12569,12692,12815,12928,13111,13242,13443,13532,13643,13876,13977,14072,14195,14324,14441,14618,14717,14852,14995,15130,15249,15450,15569,15662,15773,15829,15936,16131,16242,16375,16470,16561,16652,16769,16908,16979,17062,17742,17799,17857,18551,19257" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,10,18,26", + "startColumns": "4,4,4,4", + "startOffsets": "55,484,910,1333", + "endLines": "9,17,25,33", + "endColumns": "10,10,10,10", + "endOffsets": "479,905,1328,1763" + }, + "to": { + "startLines": "279,287,295,303", + "startColumns": "4,4,4,4", + "startOffsets": "20424,20853,21279,21702", + "endLines": "286,294,302,310", + "endColumns": "10,10,10,10", + "endOffsets": "20848,21274,21697,22132" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v22.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v22.json new file mode 100644 index 0000000000000000000000000000000000000000..1308a055d55c5c391074cc62cefe51b80af10be3 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v22.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v22/values-v22.xml", + "from": { + "startLines": "2,3,4,9", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,553", + "endLines": "2,3,8,13", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,548,896" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v23.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v23.json new file mode 100644 index 0000000000000000000000000000000000000000..16c22ff8ae1c613769914c97f9d8eaf901a54e11 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v23.json @@ -0,0 +1,39 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v23/values-v23.xml", + "from": { + "startLines": "2,3,4,5,6,19,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", + "endLines": "2,3,4,5,18,31,32,33,34,35,36", + "endColumns": "134,134,74,86,12,12,126,104,114,106,112", + "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/res/values-v23/values-v23.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "4", + "endColumns": "12", + "endOffsets": "200" + }, + "to": { + "startLines": "37", + "startColumns": "4", + "startOffsets": "2646", + "endLines": "39", + "endColumns": "12", + "endOffsets": "2791" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v24.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v24.json new file mode 100644 index 0000000000000000000000000000000000000000..e09a618962dbb57b2ea8bba006d794498dbefcbf --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v24.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v24/values-v24.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/values-v24/values-v24.xml", + "from": { + "startLines": "2,3,4,5", + "startColumns": "4,4,4,4", + "startOffsets": "55,121,182,248", + "endColumns": "65,60,65,66", + "endOffsets": "116,177,243,310" + }, + "to": { + "startLines": "4,5,6,7", + "startColumns": "4,4,4,4", + "startOffsets": "347,413,474,540", + "endColumns": "65,60,65,66", + "endOffsets": "408,469,535,602" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v24/values-v24.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,212", + "endColumns": "156,134", + "endOffsets": "207,342" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v25.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v25.json new file mode 100644 index 0000000000000000000000000000000000000000..2671306ad9dd65e5d6d03e709c9aa471bc340c5e --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v25.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v25/values-v25.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v25/values-v25.xml", + "from": { + "startLines": "2,3,4,6", + "startColumns": "4,4,4,4", + "startOffsets": "55,126,209,308", + "endLines": "2,3,5,7", + "endColumns": "70,82,12,12", + "endOffsets": "121,204,303,414" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v26.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v26.json new file mode 100644 index 0000000000000000000000000000000000000000..efad8bbf8a1e2ab1829914fbc61e769dd2db1082 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v26.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v26/values-v26.xml", + "from": { + "startLines": "2,3,4,8,12,16", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,130,217,431,657,896", + "endLines": "2,3,7,11,15,16", + "endColumns": "74,86,12,12,12,92", + "endOffsets": "125,212,426,652,891,984" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v28.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v28.json new file mode 100644 index 0000000000000000000000000000000000000000..3d5250831cdb1a837177b62f52cbb0b2502ca847 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-v28.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v28/values-v28.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v28/values-v28.xml", + "from": { + "startLines": "2,3,4,8", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,447", + "endLines": "2,3,7,11", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,442,684" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-vi.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-vi.json new file mode 100644 index 0000000000000000000000000000000000000000..68a099eb8776753be92ec6b6d90479106790949a --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-vi.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-vi/values-vi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2901", + "endColumns": "100", + "endOffsets": "2997" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-vi/values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,2817", + "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", + "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,2896" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-watch-v20.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-watch-v20.json new file mode 100644 index 0000000000000000000000000000000000000000..da6a32bb64d4e6bcc52dfe246fc8a4dec842bb4a --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-watch-v20.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-watch-v20/values-watch-v20.xml", + "from": { + "startLines": "2,5,8", + "startColumns": "4,4,4", + "startOffsets": "55,214,385", + "endLines": "4,7,10", + "endColumns": "12,12,12", + "endOffsets": "209,380,553" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-watch-v21.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-watch-v21.json new file mode 100644 index 0000000000000000000000000000000000000000..001ee426ab57b8ae835a33626c5cb35788727118 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-watch-v21.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-watch-v21/values-watch-v21.xml", + "from": { + "startLines": "2,6,10", + "startColumns": "4,4,4", + "startOffsets": "55,271,499", + "endLines": "5,9,13", + "endColumns": "12,12,12", + "endOffsets": "266,494,724" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json new file mode 100644 index 0000000000000000000000000000000000000000..18c7f62e002f75d3773592f584da4825e5df0790 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-xlarge-v4/values-xlarge-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,126,197,267,337,405", + "endColumns": "70,70,69,69,67,67", + "endOffsets": "121,192,262,332,400,468" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json new file mode 100644 index 0000000000000000000000000000000000000000..099a053493a82c48b0df3980838e9ef6717a6bc0 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2744", + "endColumns": "100", + "endOffsets": "2840" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,2666", + "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", + "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,2739" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json new file mode 100644 index 0000000000000000000000000000000000000000..d0136c2912ac4c67f31b79bf7f9a80a7a8ea8da6 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,2668", + "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,2741" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2746", + "endColumns": "100", + "endOffsets": "2842" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json new file mode 100644 index 0000000000000000000000000000000000000000..1d58853fc485a88bb79a2777fefcb557aad91e7f --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2753", + "endColumns": "100", + "endOffsets": "2849" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,2675", + "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,2748" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-zu.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-zu.json new file mode 100644 index 0000000000000000000000000000000000000000..125f6cccacc32b4ca2ab4756dfb473b368e9cd0a --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values-zu.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zu/values-zu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2898", + "endColumns": "100", + "endOffsets": "2994" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zu/values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,320,434,522,625,752,832,912,1003,1096,1190,1284,1385,1478,1573,1667,1758,1851,1937,2041,2147,2245,2352,2458,2564,2721,2817", + "endColumns": "107,106,113,87,102,126,79,79,90,92,93,93,100,92,94,93,90,92,85,103,105,97,106,105,105,156,95,80", + "endOffsets": "208,315,429,517,620,747,827,907,998,1091,1185,1279,1380,1473,1568,1662,1753,1846,1932,2036,2142,2240,2347,2453,2559,2716,2812,2893" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values.json b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values.json new file mode 100644 index 0000000000000000000000000000000000000000..7b1a02934b05b425302fd93fc9ac4f0a425e75e4 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/multi-v2/values.json @@ -0,0 +1,210 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/4ffb752cdf66fc470b29b37942163402/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,95,138,185,240,285,339,391,440,501", + "endColumns": "39,42,46,54,44,53,51,48,60,49", + "endOffsets": "90,133,180,235,280,334,386,435,496,546" + }, + "to": { + "startLines": "364,371,374,375,376,389,390,391,392,393", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "23455,23785,23924,23971,24026,24620,24674,24726,24775,24836", + "endColumns": "39,42,46,54,44,53,51,48,60,49", + "endOffsets": "23490,23823,23966,24021,24066,24669,24721,24770,24831,24881" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values/values.xml", + "from": { + "startLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,171,172,176,177,178,6,13,56,88,125", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,124,7725,7795,7863,7935,8005,8066,8140,8213,8274,8335,8397,8461,8523,8584,8652,8752,8812,8878,8951,9020,9077,9129,9191,9263,9339,9374,9409,9459,9520,9577,9611,9646,9681,9751,9822,9939,10140,10250,10451,10580,10652,319,617,3523,5588,7348", + "endLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,170,171,175,176,177,178,12,55,87,124,131", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "119,182,7790,7858,7930,8000,8061,8135,8208,8269,8330,8392,8456,8518,8579,8647,8747,8807,8873,8946,9015,9072,9124,9186,9258,9334,9369,9404,9454,9515,9572,9606,9641,9676,9746,9817,9934,10135,10245,10446,10575,10647,10714,612,3518,5583,7343,7720" + }, + "to": { + "startLines": "111,112,217,218,219,220,221,222,223,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,358,359,367,368,380,381,382,383,384,388,410,466,2164,2165,2170,2173,2178,2541,2542,3603,3764,3807,3840,3877", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "7000,7069,14147,14217,14285,14357,14427,14488,14562,21459,21520,21581,21643,21707,21769,21830,21898,21998,22058,22124,22197,22266,22323,22375,23102,23174,23595,23630,24205,24255,24316,24373,24407,24585,25831,30605,143847,143964,144231,144524,144791,169193,169265,230242,239910,242816,245083,246843", + "endLines": "111,112,217,218,219,220,221,222,223,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,358,359,367,368,380,381,382,383,384,388,410,466,2164,2168,2170,2176,2178,2541,2542,3609,3806,3838,3876,3883", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "7064,7127,14212,14280,14352,14422,14483,14557,14630,21515,21576,21638,21702,21764,21825,21893,21993,22053,22119,22192,22261,22318,22370,22432,23169,23245,23625,23660,24250,24311,24368,24402,24437,24615,25896,30671,143959,144160,144336,144720,144915,169260,169327,230535,242811,244876,246838,247215" + } + }, + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values/colors.xml", + "from": { + "startLines": "4,8,7,1,2,3,5,6", + "startColumns": "2,2,2,2,2,2,2,2", + "startOffsets": "145,314,276,14,54,99,184,229", + "endColumns": "38,39,37,39,44,45,44,46", + "endOffsets": "181,351,311,51,96,142,226,273" + }, + "to": { + "startLines": "49,83,90,114,115,118,121,128", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2845,5293,5736,7221,7263,7463,7658,8108", + "endColumns": "40,41,39,41,46,47,46,48", + "endOffsets": "2881,5330,5771,7258,7305,7506,7700,8152" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/9aa7e09576dc7293e1aad5f17168b77a/res/values/values.xml", + "from": { + "startLines": "30,31,32,33,34,35,36,2", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "1535,1594,1642,1698,1773,1849,1921,55", + "endLines": "30,31,32,33,34,35,36,29", + "endColumns": "58,47,55,74,75,71,65,24", + "endOffsets": "1589,1637,1693,1768,1844,1916,1982,1530" + }, + "to": { + "startLines": "270,271,272,280,281,282,366,4141", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "17612,17671,17719,18386,18461,18537,23529,261982", + "endLines": "270,271,272,280,281,282,366,4168", + "endColumns": "58,47,55,74,75,71,65,24", + "endOffsets": "17666,17714,17770,18456,18532,18604,23590,263457" + } + }, + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values/styles.xml", + "from": { + "startLines": "6,15", + "startColumns": "4,4", + "startOffsets": "186,510", + "endLines": "12,19", + "endColumns": "12,12", + "endOffsets": "472,807" + }, + "to": { + "startLines": "476,483", + "startColumns": "4,4", + "startOffsets": "31395,31686", + "endLines": "482,487", + "endColumns": "12,12", + "endOffsets": "31681,31983" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,35,36,37,38,45,47,50,7", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,107,168,230,292,2179,2238,2295,2349,2763,2827,2953,356", + "endLines": "2,3,4,5,6,35,36,37,44,46,49,52,34", + "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", + "endOffsets": "102,163,225,287,351,2233,2290,2344,2758,2822,2948,3076,2174" + }, + "to": { + "startLines": "6,64,65,66,67,214,215,216,509,1903,1905,1908,3522", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "382,4001,4062,4124,4186,13977,14036,14093,33439,123988,124052,124178,224313", + "endLines": "6,64,65,66,67,214,215,216,515,1904,1907,1910,3549", + "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", + "endOffsets": "429,4057,4119,4181,4245,14031,14088,14142,33848,124047,124173,124301,226131" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/88627de7ec5d8832b22b4a45185bed05/res/values/values.xml", + "from": { + "startLines": "2,102,3,13", + "startColumns": "4,4,4,4", + "startOffsets": "55,5935,116,724", + "endLines": "2,104,12,101", + "endColumns": "60,12,24,24", + "endOffsets": "111,6075,719,5930" + }, + "to": { + "startLines": "11,2817,3636,3646", + "startColumns": "4,4,4,4", + "startOffsets": "642,186016,231932,232540", + "endLines": "11,2819,3645,3734", + "endColumns": "60,12,24,24", + "endOffsets": "698,186156,232535,237746" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1461,1462,1466,1470,1474,1479,1485,1492,1496,1500,1505,1509,1513,1517,1521,1525,1529,1535,1539,1545,1549,1555,1559,1564,1568,1571,1575,1581,1585,1591,1595,1601,1604,1608,1612,1616,1620,1624,1625,1626,1627,1630,1633,1636,1639,1643,1644,1645,1646,1647,1650,1652,1654,1656,1661,1662,1666,1672,1676,1677,1679,1690,1691,1695,1701,1705,1706,1707,1711,1738,1742,1743,1747,1775,1943,1969,2138,2164,2195,2203,2209,2223,2245,2250,2255,2265,2274,2283,2287,2294,2302,2309,2310,2319,2322,2325,2329,2333,2337,2340,2341,2345,2349,2359,2364,2371,2377,2378,2381,2385,2390,2392,2394,2397,2400,2402,2406,2409,2416,2419,2422,2426,2428,2432,2434,2436,2438,2442,2450,2458,2470,2476,2485,2488,2499,2502,2507,2508,2513,2571,2630,2631,2641,2650,2651,2653,2657,2660,2663,2666,2669,2672,2675,2678,2682,2685,2688,2691,2695,2698,2702,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2728,2730,2731,2732,2733,2734,2735,2736,2737,2739,2740,2742,2743,2745,2747,2748,2750,2751,2752,2753,2754,2755,2757,2758,2759,2760,2761,2762,2764,2766,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2782,2783,2784,2785,2786,2787,2789,2793,2797,2798,2799,2800,2801,2802,2803,2804,2806,2808,2810,2812,2814,2815,2816,2817,2819,2821,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2837,2838,2839,2840,2842,2844,2845,2847,2848,2850,2852,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2867,2868,2869,2870,2872,2873,2874,2875,2876,2878,2880,2882,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,69,152,155,158,161,175,186,196,223,230,241,271,298,307,344,725,730,756,774,810,816,822,845,986,1006,1012,1016,1022,1059,1071,1098,1103,1169,1184,1249,1268,1294", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,160,205,254,295,350,409,471,552,613,688,764,841,919,1004,1086,1162,1238,1315,1393,1499,1605,1684,1764,1821,1879,1953,2028,2093,2159,2219,2280,2352,2425,2492,2560,2619,2678,2737,2796,2855,2909,2963,3016,3070,3124,3178,3232,3306,3385,3458,3532,3603,3675,3747,3820,3877,3935,4008,4082,4156,4231,4303,4376,4446,4517,4577,70911,70980,71049,71119,71193,71269,71333,71410,71486,71563,71628,71697,71774,71849,71918,71986,72063,72129,72190,72287,72352,72421,72520,72591,72650,72708,72765,72824,72888,72959,73031,73103,73175,73247,73314,73382,73450,73509,73572,73636,73726,73817,73877,73943,74010,74076,74146,74210,74263,74376,74434,74497,74562,74627,74702,74775,74847,74896,74957,75018,75079,75141,75205,75269,75333,75398,75461,75521,75582,75648,75707,75767,75829,75900,75960,76028,76114,76201,76291,76378,76466,76548,76631,76721,76812,76864,76922,76967,77033,77097,77154,77211,77265,77322,77370,77419,77470,77504,77551,77600,77646,77678,77742,77804,77864,77921,77995,78065,78143,78197,78267,78352,78400,78446,78517,78595,78673,78745,78819,78893,78967,79047,79120,79189,79261,79338,79399,79462,79528,79592,79663,79726,79791,79855,79916,79977,80029,80102,80176,80245,80320,80394,80468,80609,80679,80732,80810,80900,80988,81084,81174,81756,81845,82092,82373,82625,82910,83303,83780,84002,84224,84500,84727,84957,85187,85417,85647,85874,86293,86519,86944,87174,87602,87821,88104,88312,88443,88670,89096,89321,89748,89969,90394,90514,90790,91091,91415,91706,92020,92157,92288,92393,92635,92802,93006,93214,93485,93597,93709,93814,93931,94145,94291,94431,94517,94865,94953,95199,95617,95866,95948,96046,96663,96763,97015,97439,97694,97788,97877,98114,100166,100408,100510,100763,102947,113668,115184,126004,127532,129289,129915,130335,131396,132661,132917,133153,133700,134194,134799,134997,135577,136141,136516,136634,137172,137329,137525,137798,138054,138224,138365,138429,138711,138997,139673,139937,140275,140628,140722,140908,141214,141476,141601,141728,141967,142178,142297,142490,142667,143122,143303,143425,143684,143797,143984,144086,144193,144322,144597,145105,145601,146478,146772,147342,147491,148223,148395,148731,148823,149101,153445,157932,157994,158624,159238,159329,159442,159671,159831,159983,160154,160320,160489,160656,160819,161062,161232,161405,161576,161850,162049,162254,162584,162668,162764,162860,162958,163058,163160,163262,163364,163466,163568,163668,163764,163876,164005,164128,164259,164390,164488,164602,164696,164836,164970,165066,165178,165278,165394,165490,165602,165702,165842,165978,166142,166272,166430,166580,166721,166865,167000,167112,167262,167390,167518,167654,167786,167916,168046,168158,168298,168444,168588,168726,168792,168882,168958,169062,169152,169254,169362,169470,169570,169650,169742,169840,169950,170028,170134,170226,170330,170440,170562,170725,170882,170962,171062,171152,171262,171356,171462,171554,171654,171766,171880,171996,172112,172206,172320,172432,172534,172654,172776,172858,172962,173082,173208,173306,173400,173488,173600,173716,173838,173950,174125,174241,174327,174419,174531,174655,174722,174848,174916,175044,175188,175316,175385,175480,175595,175708,175807,175916,176027,176138,176239,176344,176444,176574,176665,176788,176882,176994,177080,177184,177280,177368,177486,177590,177694,177820,177908,178016,178116,178206,178316,178400,178502,178586,178640,178704,178810,178920,179004,4638,9782,9900,10015,10147,10862,11554,12071,13718,14103,14700,16299,17832,18220,20527,40045,40305,41697,42730,44743,45005,45361,46191,52973,54107,54401,54624,54951,57001,57649,59282,59552,63403,64004,67813,69028,70437", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1460,1461,1465,1469,1473,1478,1484,1491,1495,1499,1504,1508,1512,1516,1520,1524,1528,1534,1538,1544,1548,1554,1558,1563,1567,1570,1574,1580,1584,1590,1594,1600,1603,1607,1611,1615,1619,1623,1624,1625,1626,1629,1632,1635,1638,1642,1643,1644,1645,1646,1649,1651,1653,1655,1660,1661,1665,1671,1675,1676,1678,1689,1690,1694,1700,1704,1705,1706,1710,1737,1741,1742,1746,1774,1942,1968,2137,2163,2194,2202,2208,2222,2244,2249,2254,2264,2273,2282,2286,2293,2301,2308,2309,2318,2321,2324,2328,2332,2336,2339,2340,2344,2348,2358,2363,2370,2376,2377,2380,2384,2389,2391,2393,2396,2399,2401,2405,2408,2415,2418,2421,2425,2427,2431,2433,2435,2437,2441,2449,2457,2469,2475,2484,2487,2498,2501,2506,2507,2512,2570,2629,2630,2640,2649,2650,2652,2656,2659,2662,2665,2668,2671,2674,2677,2681,2684,2687,2690,2694,2697,2701,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2727,2729,2730,2731,2732,2733,2734,2735,2736,2738,2739,2741,2742,2744,2746,2747,2749,2750,2751,2752,2753,2754,2756,2757,2758,2759,2760,2761,2763,2765,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2781,2782,2783,2784,2785,2786,2788,2792,2796,2797,2798,2799,2800,2801,2802,2803,2805,2807,2809,2811,2813,2814,2815,2816,2818,2820,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2836,2837,2838,2839,2841,2843,2844,2846,2847,2849,2851,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2866,2867,2868,2869,2871,2872,2873,2874,2875,2877,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,151,154,157,160,174,185,195,222,229,240,270,297,306,343,724,729,755,773,809,815,821,844,985,1005,1011,1015,1021,1058,1070,1097,1102,1168,1183,1248,1267,1293,1302", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "155,200,249,290,345,404,466,547,608,683,759,836,914,999,1081,1157,1233,1310,1388,1494,1600,1679,1759,1816,1874,1948,2023,2088,2154,2214,2275,2347,2420,2487,2555,2614,2673,2732,2791,2850,2904,2958,3011,3065,3119,3173,3227,3301,3380,3453,3527,3598,3670,3742,3815,3872,3930,4003,4077,4151,4226,4298,4371,4441,4512,4572,4633,70975,71044,71114,71188,71264,71328,71405,71481,71558,71623,71692,71769,71844,71913,71981,72058,72124,72185,72282,72347,72416,72515,72586,72645,72703,72760,72819,72883,72954,73026,73098,73170,73242,73309,73377,73445,73504,73567,73631,73721,73812,73872,73938,74005,74071,74141,74205,74258,74371,74429,74492,74557,74622,74697,74770,74842,74891,74952,75013,75074,75136,75200,75264,75328,75393,75456,75516,75577,75643,75702,75762,75824,75895,75955,76023,76109,76196,76286,76373,76461,76543,76626,76716,76807,76859,76917,76962,77028,77092,77149,77206,77260,77317,77365,77414,77465,77499,77546,77595,77641,77673,77737,77799,77859,77916,77990,78060,78138,78192,78262,78347,78395,78441,78512,78590,78668,78740,78814,78888,78962,79042,79115,79184,79256,79333,79394,79457,79523,79587,79658,79721,79786,79850,79911,79972,80024,80097,80171,80240,80315,80389,80463,80604,80674,80727,80805,80895,80983,81079,81169,81751,81840,82087,82368,82620,82905,83298,83775,83997,84219,84495,84722,84952,85182,85412,85642,85869,86288,86514,86939,87169,87597,87816,88099,88307,88438,88665,89091,89316,89743,89964,90389,90509,90785,91086,91410,91701,92015,92152,92283,92388,92630,92797,93001,93209,93480,93592,93704,93809,93926,94140,94286,94426,94512,94860,94948,95194,95612,95861,95943,96041,96658,96758,97010,97434,97689,97783,97872,98109,100161,100403,100505,100758,102942,113663,115179,125999,127527,129284,129910,130330,131391,132656,132912,133148,133695,134189,134794,134992,135572,136136,136511,136629,137167,137324,137520,137793,138049,138219,138360,138424,138706,138992,139668,139932,140270,140623,140717,140903,141209,141471,141596,141723,141962,142173,142292,142485,142662,143117,143298,143420,143679,143792,143979,144081,144188,144317,144592,145100,145596,146473,146767,147337,147486,148218,148390,148726,148818,149096,153440,157927,157989,158619,159233,159324,159437,159666,159826,159978,160149,160315,160484,160651,160814,161057,161227,161400,161571,161845,162044,162249,162579,162663,162759,162855,162953,163053,163155,163257,163359,163461,163563,163663,163759,163871,164000,164123,164254,164385,164483,164597,164691,164831,164965,165061,165173,165273,165389,165485,165597,165697,165837,165973,166137,166267,166425,166575,166716,166860,166995,167107,167257,167385,167513,167649,167781,167911,168041,168153,168293,168439,168583,168721,168787,168877,168953,169057,169147,169249,169357,169465,169565,169645,169737,169835,169945,170023,170129,170221,170325,170435,170557,170720,170877,170957,171057,171147,171257,171351,171457,171549,171649,171761,171875,171991,172107,172201,172315,172427,172529,172649,172771,172853,172957,173077,173203,173301,173395,173483,173595,173711,173833,173945,174120,174236,174322,174414,174526,174650,174717,174843,174911,175039,175183,175311,175380,175475,175590,175703,175802,175911,176022,176133,176234,176339,176439,176569,176660,176783,176877,176989,177075,177179,177275,177363,177481,177585,177689,177815,177903,178011,178111,178201,178311,178395,178497,178581,178635,178699,178805,178915,178999,179119,9777,9895,10010,10142,10857,11549,12066,13713,14098,14695,16294,17827,18215,20522,40040,40300,41692,42725,44738,45000,45356,46186,52968,54102,54396,54619,54946,56996,57644,59277,59547,63398,63999,67808,69023,70432,70906" + }, + "to": { + "startLines": "12,14,16,40,41,42,43,45,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,79,80,81,82,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,116,117,119,120,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,268,269,273,274,275,276,277,278,279,350,351,352,353,354,355,356,357,360,361,362,363,365,372,373,379,394,396,397,400,401,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,465,467,468,469,470,471,488,496,497,501,505,516,521,527,534,538,542,547,551,555,559,563,567,571,577,581,587,591,597,601,606,610,613,617,623,627,633,637,643,646,650,654,658,662,666,667,668,669,672,675,678,681,685,686,687,688,689,692,694,696,698,703,704,708,714,718,719,721,732,733,737,743,747,801,802,806,833,837,838,842,1092,1260,1286,1455,1481,1512,1520,1526,1540,1562,1567,1572,1582,1591,1600,1604,1611,1619,1626,1627,1636,1639,1642,1646,1650,1654,1657,1658,1662,1666,1676,1681,1688,1694,1695,1698,1702,1707,1709,1711,1714,1717,1719,1723,1726,1733,1736,1739,1743,1745,1749,1751,1753,1755,1759,1767,1775,1787,1793,1802,1805,1816,1819,1824,1825,1911,1969,2032,2033,2043,2052,2053,2055,2059,2062,2065,2068,2071,2074,2077,2080,2084,2087,2090,2093,2097,2100,2104,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2130,2132,2133,2134,2135,2136,2137,2138,2139,2141,2142,2144,2145,2147,2149,2150,2152,2153,2154,2155,2156,2157,2159,2160,2161,2162,2163,2318,2320,2322,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2338,2339,2340,2341,2342,2343,2345,2349,2418,2419,2420,2421,2422,2423,2424,2447,2449,2451,2453,2455,2457,2458,2459,2460,2462,2464,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2480,2481,2482,2483,2485,2487,2488,2490,2491,2493,2495,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2510,2511,2512,2513,2515,2516,2517,2518,2519,2521,2523,2525,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2820,2903,2906,2909,2912,2926,2937,2947,2974,2981,3013,3043,3070,3079,3116,3517,3610,3736,3884,3920,3926,3940,3963,4104,4125,4131,4135,4171,4210,4222,4249,4254,4344,4379,4444,4463,4489", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "703,803,901,2273,2314,2369,2428,2552,2633,2694,2769,2886,2963,3041,3126,3208,3284,3360,3437,3515,3621,3727,3806,3886,3943,5013,5087,5162,5227,5335,5395,5456,5528,5601,5668,5776,5835,5894,5953,6012,6071,6125,6179,6232,6286,6340,6394,7310,7384,7511,7584,7705,7776,7848,7920,7993,8050,8157,8230,8304,8378,8453,8525,8598,8668,8739,8799,8860,8929,8998,9068,9142,9218,9282,9359,9435,9512,9577,9646,9723,9798,9867,9935,10012,10078,10139,10236,10301,10370,10469,10540,10599,10657,10714,10773,10837,10908,10980,11052,11124,11196,11263,11331,11399,11458,11521,11585,11675,11766,11826,11892,11959,12025,12095,12159,12212,12325,12383,12446,12511,12576,12651,12724,12796,12845,12906,12967,13028,13090,13154,13218,13282,13347,13410,13470,13531,13597,13656,13716,13778,13849,13909,17439,17525,17775,17865,17952,18040,18122,18205,18295,22649,22701,22759,22804,22870,22934,22991,23048,23250,23307,23355,23404,23495,23828,23875,24159,24886,24966,25030,25220,25280,25901,25975,26045,26123,26177,26247,26332,26380,26426,26497,26575,26653,26725,26799,26873,26947,27027,27100,27169,27241,27318,27379,27442,27508,27572,27643,27706,27771,27835,27896,27957,28009,28082,28156,28225,28300,28374,28448,28589,30552,30676,30754,30844,30932,31028,31988,32570,32659,32906,33187,33853,34138,34531,35008,35230,35452,35728,35955,36185,36415,36645,36875,37102,37521,37747,38172,38402,38830,39049,39332,39540,39671,39898,40324,40549,40976,41197,41622,41742,42018,42319,42643,42934,43248,43385,43516,43621,43863,44030,44234,44442,44713,44825,44937,45042,45159,45373,45519,45659,45745,46093,46181,46427,46845,47094,47176,47274,47891,47991,48243,48667,48922,52749,52838,53075,55127,55369,55471,55724,74105,84826,86342,97162,98690,100447,101073,101493,102554,103819,104075,104311,104858,105352,105957,106155,106735,107299,107674,107792,108330,108487,108683,108956,109212,109382,109523,109587,109869,110155,110831,111095,111433,111786,111880,112066,112372,112634,112759,112886,113125,113336,113455,113648,113825,114280,114461,114583,114842,114955,115142,115244,115351,115480,115755,116263,116759,117636,117930,118500,118649,119381,119553,119889,119981,124306,128650,133481,133543,134173,134787,134878,134991,135220,135380,135532,135703,135869,136038,136205,136368,136611,136781,136954,137125,137399,137598,137803,138133,138217,138313,138409,138507,138607,138709,138811,138913,139015,139117,139217,139313,139425,139554,139677,139808,139939,140037,140151,140245,140385,140519,140615,140727,140827,140943,141039,141151,141251,141391,141527,141691,141821,141979,142129,142270,142414,142549,142661,142811,142939,143067,143203,143335,143465,143595,143707,152433,152579,152723,152861,152927,153017,153093,153197,153287,153389,153497,153605,153705,153785,153877,153975,154085,154163,154269,154361,154465,154575,154697,154860,159345,159425,159525,159615,159725,159819,159925,161623,161723,161835,161949,162065,162181,162275,162389,162501,162603,162723,162845,162927,163031,163151,163277,163375,163469,163557,163669,163785,163907,164019,164194,164310,164396,164488,164600,164724,164791,164917,164985,165113,165257,165385,165454,165549,165664,165777,165876,165985,166096,166207,166308,166413,166513,166643,166734,166857,166951,167063,167149,167253,167349,167437,167555,167659,167763,167889,167977,168085,168185,168275,168385,168469,168571,168655,168709,168773,168879,168989,169073,186161,191305,191423,191538,191670,192385,193077,193594,195241,195626,197274,198873,200406,200794,203101,224053,230540,237882,247220,249233,249495,251825,252655,259437,261138,261432,261655,263724,266109,266757,268390,268660,274440,277089,280898,282113,283522", + "endLines": "12,14,16,40,41,42,43,45,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,79,80,81,82,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,116,117,119,120,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,268,269,273,274,275,276,277,278,279,350,351,352,353,354,355,356,357,360,361,362,363,365,372,373,379,394,396,397,400,401,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,465,467,468,469,470,471,495,496,500,504,508,520,526,533,537,541,546,550,554,558,562,566,570,576,580,586,590,596,600,605,609,612,616,622,626,632,636,642,645,649,653,657,661,665,666,667,668,671,674,677,680,684,685,686,687,688,691,693,695,697,702,703,707,713,717,718,720,731,732,736,742,746,747,801,805,832,836,837,841,869,1259,1285,1454,1480,1511,1519,1525,1539,1561,1566,1571,1581,1590,1599,1603,1610,1618,1625,1626,1635,1638,1641,1645,1649,1653,1656,1657,1661,1665,1675,1680,1687,1693,1694,1697,1701,1706,1708,1710,1713,1716,1718,1722,1725,1732,1735,1738,1742,1744,1748,1750,1752,1754,1758,1766,1774,1786,1792,1801,1804,1815,1818,1823,1824,1829,1968,2027,2032,2042,2051,2052,2054,2058,2061,2064,2067,2070,2073,2076,2079,2083,2086,2089,2092,2096,2099,2103,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2129,2131,2132,2133,2134,2135,2136,2137,2138,2140,2141,2143,2144,2146,2148,2149,2151,2152,2153,2154,2155,2156,2158,2159,2160,2161,2162,2163,2319,2321,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2337,2338,2339,2340,2341,2342,2344,2348,2352,2418,2419,2420,2421,2422,2423,2424,2448,2450,2452,2454,2456,2457,2458,2459,2461,2463,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2479,2480,2481,2482,2484,2486,2487,2489,2490,2492,2494,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2509,2510,2511,2512,2514,2515,2516,2517,2518,2520,2522,2524,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2902,2905,2908,2911,2925,2936,2946,2973,2980,2991,3042,3069,3078,3115,3496,3521,3635,3753,3919,3925,3931,3962,4103,4123,4130,4134,4140,4207,4221,4248,4253,4319,4358,4443,4462,4488,4497", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "753,843,945,2309,2364,2423,2485,2628,2689,2764,2840,2958,3036,3121,3203,3279,3355,3432,3510,3616,3722,3801,3881,3938,3996,5082,5157,5222,5288,5390,5451,5523,5596,5663,5731,5830,5889,5948,6007,6066,6120,6174,6227,6281,6335,6389,6443,7379,7458,7579,7653,7771,7843,7915,7988,8045,8103,8225,8299,8373,8448,8520,8593,8663,8734,8794,8855,8924,8993,9063,9137,9213,9277,9354,9430,9507,9572,9641,9718,9793,9862,9930,10007,10073,10134,10231,10296,10365,10464,10535,10594,10652,10709,10768,10832,10903,10975,11047,11119,11191,11258,11326,11394,11453,11516,11580,11670,11761,11821,11887,11954,12020,12090,12154,12207,12320,12378,12441,12506,12571,12646,12719,12791,12840,12901,12962,13023,13085,13149,13213,13277,13342,13405,13465,13526,13592,13651,13711,13773,13844,13904,13972,17520,17607,17860,17947,18035,18117,18200,18290,18381,22696,22754,22799,22865,22929,22986,23043,23097,23302,23350,23399,23450,23524,23870,23919,24200,24913,25025,25087,25275,25332,25970,26040,26118,26172,26242,26327,26375,26421,26492,26570,26648,26720,26794,26868,26942,27022,27095,27164,27236,27313,27374,27437,27503,27567,27638,27701,27766,27830,27891,27952,28004,28077,28151,28220,28295,28369,28443,28584,28654,30600,30749,30839,30927,31023,31113,32565,32654,32901,33182,33434,34133,34526,35003,35225,35447,35723,35950,36180,36410,36640,36870,37097,37516,37742,38167,38397,38825,39044,39327,39535,39666,39893,40319,40544,40971,41192,41617,41737,42013,42314,42638,42929,43243,43380,43511,43616,43858,44025,44229,44437,44708,44820,44932,45037,45154,45368,45514,45654,45740,46088,46176,46422,46840,47089,47171,47269,47886,47986,48238,48662,48917,49011,52833,53070,55122,55364,55466,55719,57903,84821,86337,97157,98685,100442,101068,101488,102549,103814,104070,104306,104853,105347,105952,106150,106730,107294,107669,107787,108325,108482,108678,108951,109207,109377,109518,109582,109864,110150,110826,111090,111428,111781,111875,112061,112367,112629,112754,112881,113120,113331,113450,113643,113820,114275,114456,114578,114837,114950,115137,115239,115346,115475,115750,116258,116754,117631,117925,118495,118644,119376,119548,119884,119976,120254,128645,133132,133538,134168,134782,134873,134986,135215,135375,135527,135698,135864,136033,136200,136363,136606,136776,136949,137120,137394,137593,137798,138128,138212,138308,138404,138502,138602,138704,138806,138908,139010,139112,139212,139308,139420,139549,139672,139803,139934,140032,140146,140240,140380,140514,140610,140722,140822,140938,141034,141146,141246,141386,141522,141686,141816,141974,142124,142265,142409,142544,142656,142806,142934,143062,143198,143330,143460,143590,143702,143842,152574,152718,152856,152922,153012,153088,153192,153282,153384,153492,153600,153700,153780,153872,153970,154080,154158,154264,154356,154460,154570,154692,154855,155012,159420,159520,159610,159720,159814,159920,160012,161718,161830,161944,162060,162176,162270,162384,162496,162598,162718,162840,162922,163026,163146,163272,163370,163464,163552,163664,163780,163902,164014,164189,164305,164391,164483,164595,164719,164786,164912,164980,165108,165252,165380,165449,165544,165659,165772,165871,165980,166091,166202,166303,166408,166508,166638,166729,166852,166946,167058,167144,167248,167344,167432,167550,167654,167758,167884,167972,168080,168180,168270,168380,168464,168566,168650,168704,168768,168874,168984,169068,169188,191300,191418,191533,191665,192380,193072,193589,195236,195621,196218,198868,200401,200789,203096,222614,224308,231927,238910,249228,249490,249846,252650,259432,260566,261427,261650,261977,265769,266752,268385,268655,272506,275036,280893,282108,283517,283991" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/values/values.xml", + "from": { + "startLines": "2,5,6,7,8,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,288,341,394,447,560,626,748,809,875", + "endColumns": "88,52,52,52,52,65,121,60,65,66", + "endOffsets": "139,336,389,442,495,621,743,804,870,937" + }, + "to": { + "startLines": "113,346,347,348,349,2169,2171,2172,2177,2179", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "7132,22437,22490,22543,22596,144165,144341,144463,144725,144920", + "endColumns": "88,52,52,52,52,65,121,60,65,66", + "endOffsets": "7216,22485,22538,22591,22644,144226,144458,144519,144786,144982" + } + }, + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values/strings.xml", + "from": { + "startLines": "2,3", + "startColumns": "2,2", + "startOffsets": "53,99", + "endColumns": "45,50", + "endOffsets": "96,147" + }, + "to": { + "startLines": "450,457", + "startColumns": "4,4", + "startOffsets": "28659,29468", + "endColumns": "47,52", + "endOffsets": "28702,29516" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,345,346,347,352,353,357,363,367,368,369,370,381,382,383,387,393,397,398,399,400,430,450,496,526,546,566,612,616,620,634,675,683,693,694,695,696,697,700,701,704,707,708,711,715,720,728,736,745,753,757,765,773,781,789,797,806,815,823,832,835,837,842,844,849,853,857,858,863,864,865,866,867,868,870,871,876,877,878,879,880,881,882,884,888,892,896,900,901,902,903,904,905,906,907,908,911,915,918,922,930,937,946,950,965,973,976,985,990,1001,1009,1012,1021,1028,1029,1048,1051,1057,1060,1069,1072,1075,1078,1081,1084,1088,1091,1100,1103,1111,1116,1124,1129,1133,1134,1145,1152,1156,1160,1161,1165,1173,1177,1182,1187,55,56,57,76,82,92,96,97,98,141,149,150,158,159,160,161,167,168,169,170,171,172,173,174,175,198,217", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "100,156,216,277,332,385,443,491,540,585,638,696,756,814,860,920,973,1019,1069,1116,1174,1232,1291,1351,1413,1475,1537,1599,1661,1723,1784,1846,1908,1961,2023,2097,2160,2228,2309,2373,2439,2509,2579,2649,2719,2786,2849,2914,2980,3033,3109,3175,3262,18372,18426,18505,18583,18656,18721,18784,18850,18921,18992,19054,19123,19189,19256,19323,19379,19430,19483,19535,19589,19660,19723,19782,19844,19903,19976,20043,20103,20166,20241,20313,20384,20440,20511,20568,20625,20691,20755,20826,20883,20936,20999,21051,21109,21176,21242,21308,21389,21464,21520,21573,21634,21692,21742,21791,21840,21889,21951,22003,22048,22129,22183,22236,22290,22341,22390,22441,22502,22563,22625,22675,22716,22766,22814,22876,22927,22976,23045,23106,23162,23233,23298,23367,23418,23481,23551,23620,23690,23752,23822,23892,23967,24026,24084,24146,24191,24234,24281,24326,24377,24425,24491,24553,24616,24688,24745,24802,24862,24920,24990,25047,25192,25313,25417,25504,25656,25808,25956,26037,26115,26416,26582,26737,26839,27116,27209,27316,27659,27766,27995,28404,28636,28736,28841,28960,29583,29730,29849,30084,30499,30737,30849,30970,31103,33241,34757,38048,40182,41710,43254,46541,46787,47046,47850,49610,50060,50775,50848,50935,51020,51119,51314,51406,51579,51741,51836,52005,52248,52541,52950,53364,53824,54242,54483,54913,55348,55758,56180,56590,57047,57501,57917,58383,58565,58633,58977,59057,59413,59563,59707,59791,60156,60254,60362,60460,60570,60686,60812,60908,61285,61395,61519,61657,61767,61889,62017,62155,62317,62533,62689,62893,62977,63081,63175,63289,63401,63525,63621,63701,63890,64096,64289,64499,64931,65352,65777,65974,66922,67443,67566,68203,68424,69239,69708,69891,70487,70947,71052,72313,72463,72880,73045,73725,73884,74046,74201,74397,74564,74786,74946,75323,75482,75810,76027,76602,76952,77201,77298,78004,78442,78683,78872,79006,79197,79834,80084,80387,80602,3338,3636,3892,4389,4823,5480,5823,7362,7710,9607,9929,10060,10766,10903,11055,11257,11962,12082,13231,13798,13927,14060,14220,14395,14537,16324,18162", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,344,345,346,351,352,356,362,366,367,368,369,380,381,382,386,392,396,397,398,399,429,449,495,525,545,565,611,615,619,633,674,682,692,693,694,695,696,699,700,703,706,707,710,714,719,727,735,744,752,756,764,772,780,788,796,805,814,822,831,834,836,841,843,848,852,856,857,862,863,864,865,866,867,869,870,875,876,877,878,879,880,881,883,887,891,895,899,900,901,902,903,904,905,906,907,910,914,917,921,929,936,945,949,964,972,975,984,989,1000,1008,1011,1020,1027,1028,1047,1050,1056,1059,1068,1071,1074,1077,1080,1083,1087,1090,1099,1102,1110,1115,1123,1128,1132,1133,1144,1151,1155,1159,1160,1164,1172,1176,1181,1186,1195,55,56,75,81,91,95,96,97,140,148,149,157,158,159,160,166,167,168,169,170,171,172,173,174,197,216,217", + "endColumns": "55,59,60,54,52,57,47,48,44,52,57,59,57,45,59,52,45,49,46,57,57,58,59,61,61,61,61,61,61,60,61,61,52,61,73,62,67,80,63,65,69,69,69,69,66,62,64,65,52,75,65,86,75,53,78,77,72,64,62,65,70,70,61,68,65,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,70,55,70,56,56,65,63,70,56,52,62,51,57,66,65,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,53,52,53,50,48,50,60,60,61,49,40,49,47,61,50,48,68,60,55,70,64,68,50,62,69,68,69,61,69,69,74,58,57,61,44,42,46,44,50,47,65,61,62,71,56,56,59,57,69,56,144,120,103,86,151,151,147,80,77,300,165,154,101,10,92,106,10,106,10,10,10,99,104,118,10,146,118,10,10,10,111,120,132,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,91,10,10,94,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,83,10,97,107,97,109,115,10,95,10,109,123,137,109,121,127,10,10,10,10,10,83,103,93,113,111,123,95,79,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,96,10,10,10,10,133,10,10,10,10,10,10,297,255,90,243,367,188,1538,347,95,94,130,412,136,151,201,220,119,1148,566,128,132,159,174,141,125,457,209", + "endOffsets": "151,211,272,327,380,438,486,535,580,633,691,751,809,855,915,968,1014,1064,1111,1169,1227,1286,1346,1408,1470,1532,1594,1656,1718,1779,1841,1903,1956,2018,2092,2155,2223,2304,2368,2434,2504,2574,2644,2714,2781,2844,2909,2975,3028,3104,3170,3257,3333,18421,18500,18578,18651,18716,18779,18845,18916,18987,19049,19118,19184,19251,19318,19374,19425,19478,19530,19584,19655,19718,19777,19839,19898,19971,20038,20098,20161,20236,20308,20379,20435,20506,20563,20620,20686,20750,20821,20878,20931,20994,21046,21104,21171,21237,21303,21384,21459,21515,21568,21629,21687,21737,21786,21835,21884,21946,21998,22043,22124,22178,22231,22285,22336,22385,22436,22497,22558,22620,22670,22711,22761,22809,22871,22922,22971,23040,23101,23157,23228,23293,23362,23413,23476,23546,23615,23685,23747,23817,23887,23962,24021,24079,24141,24186,24229,24276,24321,24372,24420,24486,24548,24611,24683,24740,24797,24857,24915,24985,25042,25187,25308,25412,25499,25651,25803,25951,26032,26110,26411,26577,26732,26834,27111,27204,27311,27654,27761,27990,28399,28631,28731,28836,28955,29578,29725,29844,30079,30494,30732,30844,30965,31098,33236,34752,38043,40177,41705,43249,46536,46782,47041,47845,49605,50055,50770,50843,50930,51015,51114,51309,51401,51574,51736,51831,52000,52243,52536,52945,53359,53819,54237,54478,54908,55343,55753,56175,56585,57042,57496,57912,58378,58560,58628,58972,59052,59408,59558,59702,59786,60151,60249,60357,60455,60565,60681,60807,60903,61280,61390,61514,61652,61762,61884,62012,62150,62312,62528,62684,62888,62972,63076,63170,63284,63396,63520,63616,63696,63885,64091,64284,64494,64926,65347,65772,65969,66917,67438,67561,68198,68419,69234,69703,69886,70482,70942,71047,72308,72458,72875,73040,73720,73879,74041,74196,74392,74559,74781,74941,75318,75477,75805,76022,76597,76947,77196,77293,77999,78437,78678,78867,79001,79192,79829,80079,80382,80597,81178,3631,3887,4384,4818,5475,5818,7357,7705,9602,9924,10055,10761,10898,11050,11252,11957,12077,13226,13793,13922,14055,14215,14390,14532,16319,18157,18367" + }, + "to": { + "startLines": "2,3,4,5,7,8,9,10,13,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,68,69,70,71,72,73,74,75,76,77,78,103,104,105,106,107,108,109,110,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,369,370,377,378,385,386,387,395,398,399,402,403,404,405,406,407,408,409,451,452,453,454,455,456,458,459,460,461,462,463,464,472,748,749,750,755,756,760,766,770,771,772,773,784,785,786,790,796,800,870,871,872,902,922,968,998,1018,1038,1084,1088,1830,1844,1885,1893,2028,2029,2030,2031,2180,2183,2184,2187,2190,2191,2194,2198,2203,2211,2219,2228,2236,2240,2248,2256,2264,2272,2280,2289,2298,2306,2315,2353,2355,2360,2362,2367,2371,2375,2376,2381,2382,2383,2384,2385,2386,2388,2389,2394,2395,2396,2397,2398,2399,2400,2402,2406,2410,2414,2425,2426,2427,2428,2429,2430,2431,2432,2433,2436,2440,2443,2543,2551,2558,2567,2571,2586,2594,2597,2606,2611,2622,2630,2633,2642,2649,2650,2669,2672,2678,2681,2690,2693,2696,2699,2702,2705,2709,2712,2721,2724,2732,2737,2745,2750,2754,2755,2766,2773,2777,2781,2782,2786,2794,2798,2803,2808,2992,2993,2994,3497,3503,3513,3550,3551,3552,3595,3735,3754,3762,3763,3839,3932,3938,3939,4124,4169,4170,4208,4209,4320,4321,4359,4378", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "150,206,266,327,434,487,545,593,758,848,950,1008,1068,1126,1172,1232,1285,1331,1381,1428,1486,1544,1603,1663,1725,1787,1849,1911,1973,2035,2096,2158,2220,2490,4250,4324,4387,4455,4536,4600,4666,4736,4806,4876,4946,6448,6511,6576,6642,6695,6771,6837,6924,14635,14689,14768,14846,14919,14984,15047,15113,15184,15255,15317,15386,15452,15519,15586,15642,15693,15746,15798,15852,15923,15986,16045,16107,16166,16239,16306,16366,16429,16504,16576,16647,16703,16774,16831,16888,16954,17018,17089,17146,17199,17262,17314,17372,18609,18675,18741,18822,18897,18953,19006,19067,19125,19175,19224,19273,19322,19384,19436,19481,19562,19616,19669,19723,19774,19823,19874,19935,19996,20058,20108,20149,20199,20247,20309,20360,20409,20478,20539,20595,20666,20731,20800,20851,20914,20984,21053,21123,21185,21255,21325,21400,23665,23723,24071,24116,24442,24489,24534,24918,25092,25158,25337,25400,25472,25529,25586,25646,25704,25774,28707,28852,28973,29077,29164,29316,29521,29669,29750,29828,30129,30295,30450,31118,49016,49109,49216,49559,49666,49895,50304,50536,50636,50741,50860,51483,51630,51749,51984,52399,52637,57908,58029,58162,60300,61816,65107,67241,68769,70313,73600,73846,120259,121063,122823,123273,133137,133210,133297,133382,144987,145182,145274,145447,145609,145704,145873,146116,146409,146818,147232,147692,148110,148351,148781,149216,149626,150048,150458,150915,151369,151785,152251,155017,155085,155429,155509,155865,156015,156159,156243,156608,156706,156814,156912,157022,157138,157264,157360,157737,157847,157971,158109,158219,158341,158469,158607,158769,158985,159141,160017,160101,160205,160299,160413,160525,160649,160745,160825,161014,161220,161413,169332,169764,170185,170610,170807,171755,172276,172399,173036,173257,174072,174541,174724,175320,175780,175885,177146,177296,177713,177878,178558,178717,178879,179034,179230,179397,179619,179779,180156,180315,180643,180860,181435,181785,182034,182131,182837,183275,183516,183705,183839,184030,184667,184917,185220,185435,196223,196521,196777,222619,223053,223710,226136,227675,228023,229920,237751,238915,239621,239758,244881,249851,250556,250676,260571,263462,263591,265774,265934,272511,272653,275041,276879", + "endLines": "2,3,4,5,7,8,9,10,13,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,68,69,70,71,72,73,74,75,76,77,78,103,104,105,106,107,108,109,110,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,369,370,377,378,385,386,387,395,398,399,402,403,404,405,406,407,408,409,451,452,453,454,455,456,458,459,460,461,462,463,464,475,748,749,754,755,759,765,769,770,771,772,783,784,785,789,795,799,800,870,871,901,921,967,997,1017,1037,1083,1087,1091,1843,1884,1892,1902,2028,2029,2030,2031,2182,2183,2186,2189,2190,2193,2197,2202,2210,2218,2227,2235,2239,2247,2255,2263,2271,2279,2288,2297,2305,2314,2317,2354,2359,2361,2366,2370,2374,2375,2380,2381,2382,2383,2384,2385,2387,2388,2393,2394,2395,2396,2397,2398,2399,2401,2405,2409,2413,2417,2425,2426,2427,2428,2429,2430,2431,2432,2435,2439,2442,2446,2550,2557,2566,2570,2585,2593,2596,2605,2610,2621,2629,2632,2641,2648,2649,2668,2671,2677,2680,2689,2692,2695,2698,2701,2704,2708,2711,2720,2723,2731,2736,2744,2749,2753,2754,2765,2772,2776,2780,2781,2785,2793,2797,2802,2807,2816,2992,2993,3012,3502,3512,3516,3550,3551,3594,3602,3735,3761,3762,3763,3839,3937,3938,3939,4124,4169,4170,4208,4209,4320,4343,4377,4378", + "endColumns": "55,59,60,54,52,57,47,48,44,52,57,59,57,45,59,52,45,49,46,57,57,58,59,61,61,61,61,61,61,60,61,61,52,61,73,62,67,80,63,65,69,69,69,69,66,62,64,65,52,75,65,86,75,53,78,77,72,64,62,65,70,70,61,68,65,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,70,55,70,56,56,65,63,70,56,52,62,51,57,66,65,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,53,52,53,50,48,50,60,60,61,49,40,49,47,61,50,48,68,60,55,70,64,68,50,62,69,68,69,61,69,69,74,58,57,61,44,42,46,44,50,47,65,61,62,71,56,56,59,57,69,56,144,120,103,86,151,151,147,80,77,300,165,154,101,10,92,106,10,106,10,10,10,99,104,118,10,146,118,10,10,10,111,120,132,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,91,10,10,94,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,83,10,97,107,97,109,115,10,95,10,109,123,137,109,121,127,10,10,10,10,10,83,103,93,113,111,123,95,79,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,96,10,10,10,10,133,10,10,10,10,10,10,297,255,90,243,367,188,1538,347,95,94,130,412,136,151,201,220,119,1148,566,128,132,159,174,141,125,457,209", + "endOffsets": "201,261,322,377,482,540,588,637,798,896,1003,1063,1121,1167,1227,1280,1326,1376,1423,1481,1539,1598,1658,1720,1782,1844,1906,1968,2030,2091,2153,2215,2268,2547,4319,4382,4450,4531,4595,4661,4731,4801,4871,4941,5008,6506,6571,6637,6690,6766,6832,6919,6995,14684,14763,14841,14914,14979,15042,15108,15179,15250,15312,15381,15447,15514,15581,15637,15688,15741,15793,15847,15918,15981,16040,16102,16161,16234,16301,16361,16424,16499,16571,16642,16698,16769,16826,16883,16949,17013,17084,17141,17194,17257,17309,17367,17434,18670,18736,18817,18892,18948,19001,19062,19120,19170,19219,19268,19317,19379,19431,19476,19557,19611,19664,19718,19769,19818,19869,19930,19991,20053,20103,20144,20194,20242,20304,20355,20404,20473,20534,20590,20661,20726,20795,20846,20909,20979,21048,21118,21180,21250,21320,21395,21454,23718,23780,24111,24154,24484,24529,24580,24961,25153,25215,25395,25467,25524,25581,25641,25699,25769,25826,28847,28968,29072,29159,29311,29463,29664,29745,29823,30124,30290,30445,30547,31390,49104,49211,49554,49661,49890,50299,50531,50631,50736,50855,51478,51625,51744,51979,52394,52632,52744,58024,58157,60295,61811,65102,67236,68764,70308,73595,73841,74100,121058,122818,123268,123983,133205,133292,133377,133476,145177,145269,145442,145604,145699,145868,146111,146404,146813,147227,147687,148105,148346,148776,149211,149621,150043,150453,150910,151364,151780,152246,152428,155080,155424,155504,155860,156010,156154,156238,156603,156701,156809,156907,157017,157133,157259,157355,157732,157842,157966,158104,158214,158336,158464,158602,158764,158980,159136,159340,160096,160200,160294,160408,160520,160644,160740,160820,161009,161215,161408,161618,169759,170180,170605,170802,171750,172271,172394,173031,173252,174067,174536,174719,175315,175775,175880,177141,177291,177708,177873,178553,178712,178874,179029,179225,179392,179614,179774,180151,180310,180638,180855,181430,181780,182029,182126,182832,183270,183511,183700,183834,184025,184662,184912,185215,185430,186011,196516,196772,197269,223048,223705,224048,227670,228018,229915,230237,237877,239616,239753,239905,245078,250551,250671,251820,261133,263586,263719,265929,266104,272648,274435,276874,277084" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/debug/single/debug.json b/SmartFritz/build/intermediates/blame/res/debug/single/debug.json new file mode 100644 index 0000000000000000000000000000000000000000..02da998a5bb8e6245e447529c0fcbf678fb72bf5 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/debug/single/debug.json @@ -0,0 +1,2030 @@ +[ + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_radio_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim-v21_design_bottom_sheet_slide_out.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim-v21/design_bottom_sheet_slide_out.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow_custom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media_narrow_custom.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi_ic_launcher.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xxhdpi/ic_launcher.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_windmil.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_windmil.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_snackbar_include.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_snackbar_include.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_design_password_eye.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_password_eye.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_search_api_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_media_custom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_media_custom.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_linear_out_slow_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_linear_out_slow_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_design_bottom_sheet_slide_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_bottom_sheet_slide_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_design_ic_visibility_off.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxhdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_design_fab_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_fab_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout-v26/abc_screen_toolbar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_select_dialog_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_icon_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_icon_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_checked_black.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/ic_mtrl_chip_checked_black.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_switch_track.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_btn_state_list_anim.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_btn_state_list_anim.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_design_bottom_navigation_item_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/design_bottom_navigation_item_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_menu_white_36dp.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_menu_white_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_bg.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim-v21_design_bottom_sheet_slide_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim-v21/design_bottom_sheet_slide_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_seek_thumb.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_edittext.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_design_snackbar_out.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_snackbar_out.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_bg_low.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_text_color_selector.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_text_color_selector.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_template_custom_big.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_template_custom_big.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_search_view.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/switch_thumb_material_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_settings_icon.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_settings_icon.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_singlechoice_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/select_dialog_singlechoice_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v21_abc_btn_colored_borderless_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v21/abc_btn_colored_borderless_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_ripple_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_ripple_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_bar_up_container.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_design_tint_password_toggle.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color-v23/design_tint_password_toggle.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_vector_test.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media_narrow.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/xml_network_security_config.xml.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/xml/network_security_config.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/switch_thumb_material_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_mtrl_layout_snackbar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/mtrl_layout_snackbar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-sw600dp-v13_design_layout_snackbar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout-sw600dp-v13/design_layout_snackbar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_switch_thumb_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_borderless_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_separator.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item_separator.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_color_highlight_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_fritzbox.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_fritzbox.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_design_error.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/design_error.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_tooltip_exit.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_tooltip_exit.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/select_dialog_item_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_action.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_action.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_media_action.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_media_action.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_simple.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_background_cache_hint_selector_material_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_dialog_material_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_dialog_material_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_ripple_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_ripple_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_log_icon.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_log_icon.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_chip_state_list_anim.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_chip_state_list_anim.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_secondary_text_material_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_secondary_text_material_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_design_bottom_navigation_item_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_bottom_navigation_item_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_secondary_text_material_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_popup_enter.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_mode_close_item_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_mode_close_item_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_seekbar_track_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_bg_material.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable/bg_material.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_stroke_color_selector.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_stroke_color_selector.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-v16_notification_template_custom_big.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v16/notification_template_custom_big.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_mode_bar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_checked_circle.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/ic_mtrl_chip_checked_circle.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_dialog_title_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_search_dropdown_item_icons_2line.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_out_top.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_tile_bg.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_text_btn_ripple_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_text_btn_ripple_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_holo_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_mtrl_layout_snackbar_include.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/mtrl_layout_snackbar_include.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_voice_search_api_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_voice_search_api_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_search_url_text.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_go_search_api_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_go_search_api_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi_ic_launcher.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-mdpi/ic_launcher.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_btn_unelevated_state_list_anim.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_btn_unelevated_state_list_anim.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_fast_out_linear_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_fast_out_linear_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_btn_colored_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_spinner.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_tooltip_enter.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_tooltip_enter.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_in_top.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_action.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_bottom_navigation_item.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_bottom_navigation_item.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_btn_colored_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_out_bottom.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_fade_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_item_background_holo_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_radio.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_cervantes.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_cervantes.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_close_circle.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/ic_mtrl_chip_close_circle.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_edittext.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_holo_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldpi_ic_launcher.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-ldpi/ic_launcher.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_action_bar_item_background_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_ripple_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_ripple_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_media.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_media.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_btn_checkable.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_multichoice_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/select_dialog_multichoice_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_clear_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_normal.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_seekbar_thumb_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_menu_item_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_default.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_bottom_sheet_dialog.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_bottom_sheet_dialog.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-anydpi-v21_design_ic_visibility_off.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-anydpi-v21/design_ic_visibility_off.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_content_include.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator-v21_design_appbar_state_list_animator.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator-v21/design_appbar_state_list_animator.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_icon.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxxhdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_hint_foreground_material_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_launcher.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_launcher.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_mtrl_snackbar_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/mtrl_snackbar_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_chevron_right_black_48dp.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_chevron_right_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_list_divider_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_list_divider_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_design_bottom_sheet_slide_out.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_bottom_sheet_slide_out.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_call_icon.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_call_icon.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_show_motion_spec.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_show_motion_spec.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_lance.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_lance.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_custom_big.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_custom_big.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_tick_mark_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_seekbar_tick_mark_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_small_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ratingbar_small_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_mtrl_tabs_default_indicator.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/mtrl_tabs_default_indicator.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_fritzbox_icon.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_fritzbox_icon.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_1.jpg.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_scene_1.jpg" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_tooltip.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_tooltip.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_popup_menu_header_item_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_popup_menu_header_item_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_normal.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_template_icon_group.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_template_icon_group.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_chevron_right_black_48dp.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_chevron_right_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_chevron_left_black_48dp.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_chevron_left_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_legacy_text_color_selector.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_legacy_text_color_selector.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_dialog_material_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_dialog_material_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_icon_group.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_icon_group.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_toolbar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_media_cancel_action.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_media_cancel_action.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_hint_foreground_material_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_popup_menu_item_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_checkbox.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_close_icon_tint.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_close_icon_tint.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-anydpi-v21_design_ic_visibility.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-anydpi-v21/design_ic_visibility.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_alert_dialog_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_chevron_left_black_48dp.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_chevron_left_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_fast_out_linear_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator-v21/mtrl_fast_out_linear_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_menu_overflow_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_menu_overflow_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_title_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_alert_dialog_title_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_icon_color_selector.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_icon_color_selector.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/raw_my_ca.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/raw/my_ca" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_popup_exit.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_low_normal.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_design_snackbar_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_snackbar_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_default_mtrl_shape.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_navigation_empty_icon.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/navigation_empty_icon.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_3.jpg.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_scene_3.jpg" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_action_tombstone.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_action_tombstone.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_design_ic_visibility_off.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-mdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_btn_colored_borderless_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_btn_colored_borderless_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_check_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_disable_only_material_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_tab_indicator_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_fast_out_slow_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_fast_out_slow_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_btn_checkable.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_edit_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_part_time.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_part_time.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_activity_app.xml.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/layout/activity_app.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_disable_only_material_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_spinner_textfield_background_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_spinner_textfield_background_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_text_btn_text_color_selector.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_text_btn_text_color_selector.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_low_normal.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/tooltip_frame_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_bg_color_selector.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_bg_color_selector.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-sw600dp-v13_mtrl_layout_snackbar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout-sw600dp-v13/mtrl_layout_snackbar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_menu_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_linear.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_linear.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_snackbar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_snackbar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_hide_motion_spec.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_hide_motion_spec.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_button_bar_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_alert_dialog_button_bar_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_fade_out.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_btn_colored_borderless_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_design_ic_visibility_off.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-hdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_design_ic_visibility.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxhdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_menu.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_menu.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_normal.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_2.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_scene_2.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_colored_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-watch-v20_abc_dialog_material_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-watch-v20/abc_dialog_material_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_design_fab_hide_motion_spec.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/design_fab_hide_motion_spec.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_switch_track.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_fast_out_slow_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator-v21/mtrl_fast_out_slow_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_ab_back_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_background_transition_holo_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_background_cache_hint_selector_material_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_action_tombstone.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_action_tombstone.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_default.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_textfield_search_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_textfield_search_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_background_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_background_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_design_ic_visibility.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-mdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_header.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item_header.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_expanded_menu_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/tooltip_frame_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_material_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_transformation_sheet_expand_spec.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_transformation_sheet_expand_spec.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ratingbar_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_part_chronometer.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_part_chronometer.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_design_fab_show_motion_spec.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/design_fab_show_motion_spec.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_grow_fade_in_from_bottom.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_in_bottom.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_item_background_holo_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_text_cursor_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_notification_action_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-v21/notification_action_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_design_ic_visibility.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-hdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_cab_background_top_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_cab_background_top_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_seek_thumb.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_title_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout-watch-v20/abc_alert_dialog_title_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_design_ic_visibility.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxxhdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_indicator_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ratingbar_indicator_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_linear_out_slow_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator-v21/mtrl_linear_out_slow_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_background_transition_holo_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_btn_colored_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_design_ic_visibility.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xhdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_material_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_simple_overlay_action_mode.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_state_icon.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_state_icon.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_menu_item_action_area.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_menu_item_action_area.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_text_input_password_icon.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_text_input_password_icon.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_menu_white_36dp.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_menu_white_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_subheader.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item_subheader.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_avd_hide_password.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/avd_hide_password.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_colored_ripple_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_colored_ripple_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_icon_color_selector_colored.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_icon_color_selector_colored.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_text_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_text_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_design_snackbar_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_snackbar_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_divider_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_divider_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_lines_media.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_lines_media.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_design_tint_password_toggle.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/design_tint_password_toggle.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_launcher.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_launcher.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_cab_background_internal_bg.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_cab_background_internal_bg.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_support_simple_spinner_dropdown_item.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/support_simple_spinner_dropdown_item.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_bottom_nav_colored_item_tint.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_bottom_nav_colored_item_tint.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_bar_title_item.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_custom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media_custom.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view_list_item.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_activity_chooser_view_list_item.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_tab_icon.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_tab_icon.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_edit_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_bottom_nav_item_tint.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_bottom_nav_item_tint.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_shrink_fade_out_from_bottom.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_menu_item.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_menu_item.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_avd_show_password.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/avd_show_password.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_spinner.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_cascading_menu_item_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_cascading_menu_item_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_design_password_eye.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/design_password_eye.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_don_quixote.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_don_quixote.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_activity_chooser_view.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_design_ic_visibility_off.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xhdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_tab_text.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_tab_text.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_fab_ripple_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_fab_ripple_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v23_abc_control_background_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v23/abc_control_background_material.xml" + } +] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/release.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/release.json new file mode 100644 index 0000000000000000000000000000000000000000..c358648762634855edf23b7c4a9888bc7e5adb3b --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/release.json @@ -0,0 +1,3454 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ka_values-ka.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ka/values-ka.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2899", + "endColumns": "100", + "endOffsets": "2995" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ka/values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,429,517,622,735,819,901,992,1085,1180,1276,1377,1470,1565,1659,1750,1841,1924,2037,2144,2242,2355,2459,2563,2720,2818", + "endColumns": "108,103,110,87,104,112,83,81,90,92,94,95,100,92,94,93,90,90,82,112,106,97,112,103,103,156,97,80", + "endOffsets": "209,313,424,512,617,730,814,896,987,1080,1175,1271,1372,1465,1560,1654,1745,1836,1919,2032,2139,2237,2350,2454,2558,2715,2813,2894" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-tl_values-tl.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-tl/values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,332,449,537,643,764,843,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1944,2053,2164,2265,2375,2492,2600,2763,2865", + "endColumns": "118,107,116,87,105,120,78,77,90,92,95,93,100,92,94,93,90,90,83,108,110,100,109,116,107,162,101,83", + "endOffsets": "219,327,444,532,638,759,838,916,1007,1100,1196,1290,1391,1484,1579,1673,1764,1855,1939,2048,2159,2260,2370,2487,2595,2758,2860,2944" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-tl/values-tl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-en-rXC_values-en-rXC.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,310,510,719,904,1106,1321,1494,1671,1862,2055,2253,2449,2652,2847,3044,3239,3432,3623,3807,4011,4216,4417,4624,4826,5031,5303,5503", + "endColumns": "204,199,208,184,201,214,172,176,190,192,197,195,202,194,196,194,192,190,183,203,204,200,206,201,204,271,199,178", + "endOffsets": "305,505,714,899,1101,1316,1489,1666,1857,2050,2248,2444,2647,2842,3039,3234,3427,3618,3802,4006,4211,4412,4619,4821,5026,5298,5498,5677" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "202", + "endOffsets": "253" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "5682", + "endColumns": "202", + "endOffsets": "5880" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-en-rCA_values-en-rCA.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-kn_values-kn.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-kn/values-kn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2948", + "endColumns": "100", + "endOffsets": "3044" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-kn/values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,335,448,536,643,770,847,924,1015,1108,1204,1298,1399,1492,1587,1681,1772,1863,1945,2061,2172,2271,2384,2488,2602,2766,2866", + "endColumns": "117,111,112,87,106,126,76,76,90,92,95,93,100,92,94,93,90,90,81,115,110,98,112,103,113,163,99,81", + "endOffsets": "218,330,443,531,638,765,842,919,1010,1103,1199,1293,1394,1487,1582,1676,1767,1858,1940,2056,2167,2266,2379,2483,2597,2761,2861,2943" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ms_values-ms.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ms/values-ms.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2881", + "endColumns": "100", + "endOffsets": "2977" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ms/values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,321,429,516,620,731,809,888,979,1072,1167,1261,1360,1453,1548,1642,1733,1824,1904,2016,2125,2222,2331,2434,2541,2700,2801", + "endColumns": "110,104,107,86,103,110,77,78,90,92,94,93,98,92,94,93,90,90,79,111,108,96,108,102,106,158,100,79", + "endOffsets": "211,316,424,511,615,726,804,883,974,1067,1162,1256,1355,1448,1543,1637,1728,1819,1899,2011,2120,2217,2326,2429,2536,2695,2796,2876" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-land_values-land.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-land/values-land.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "10", + "endOffsets": "222" + }, + "to": { + "startLines": "5", + "startColumns": "4", + "startOffsets": "264", + "endLines": "8", + "endColumns": "10", + "endOffsets": "431" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-land/values-land.xml", + "from": { + "startLines": "2,3,4", + "startColumns": "4,4,4", + "startOffsets": "55,125,196", + "endColumns": "69,70,67", + "endOffsets": "120,191,259" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-v28_values-v28.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v28/values-v28.xml", + "from": { + "startLines": "2,3,4,8", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,447", + "endLines": "2,3,7,11", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,442,684" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-hr_values-hr.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hr/values-hr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hr/values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,307,417,503,607,726,810,893,984,1077,1173,1267,1368,1461,1556,1655,1746,1837,1923,2027,2140,2246,2351,2464,2571,2740,2837", + "endColumns": "104,96,109,85,103,118,83,82,90,92,95,93,100,92,94,98,90,90,85,103,112,105,104,112,106,168,96,88", + "endOffsets": "205,302,412,498,602,721,805,888,979,1072,1168,1262,1363,1456,1551,1650,1741,1832,1918,2022,2135,2241,2346,2459,2566,2735,2832,2921" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-iw_values-iw.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-iw/values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,308,416,500,600,714,792,870,961,1055,1151,1245,1346,1439,1534,1631,1722,1814,1895,1997,2101,2199,2302,2403,2503,2655,2751", + "endColumns": "103,98,107,83,99,113,77,77,90,93,95,93,100,92,94,96,90,91,80,101,103,97,102,100,99,151,95,80", + "endOffsets": "204,303,411,495,595,709,787,865,956,1050,1146,1240,1341,1434,1529,1626,1717,1809,1890,1992,2096,2194,2297,2398,2498,2650,2746,2827" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-iw/values-iw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2832", + "endColumns": "100", + "endOffsets": "2928" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-zh-rTW_values-zh-rTW.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2753", + "endColumns": "100", + "endOffsets": "2849" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,2675", + "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,2748" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-lo_values-lo.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-lo/values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,412,497,602,714,791,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1888,1995,2092,2190,2295,2398,2502,2659,2755", + "endColumns": "102,96,106,84,104,111,76,77,90,92,95,93,100,92,94,93,90,90,79,106,96,97,104,102,103,156,95,80", + "endOffsets": "203,300,407,492,597,709,786,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1883,1990,2087,2185,2290,2393,2497,2654,2750,2831" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-lo/values-lo.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2836", + "endColumns": "100", + "endOffsets": "2932" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-v25_values-v25.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v25/values-v25.xml", + "from": { + "startLines": "2,3,4,6", + "startColumns": "4,4,4,4", + "startOffsets": "55,126,209,308", + "endLines": "2,3,5,7", + "endColumns": "70,82,12,12", + "endOffsets": "121,204,303,414" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-is_values-is.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-is/values-is.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-is/values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,302,414,499,600,714,794,874,965,1058,1154,1248,1355,1448,1543,1638,1729,1823,1904,2014,2122,2220,2329,2428,2531,2686,2784", + "endColumns": "99,96,111,84,100,113,79,79,90,92,95,93,106,92,94,94,90,93,80,109,107,97,108,98,102,154,97,80", + "endOffsets": "200,297,409,494,595,709,789,869,960,1053,1149,1243,1350,1443,1538,1633,1724,1818,1899,2009,2117,2215,2324,2423,2526,2681,2779,2860" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values_values.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/4ffb752cdf66fc470b29b37942163402/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,95,138,185,240,285,339,391,440,501", + "endColumns": "39,42,46,54,44,53,51,48,60,49", + "endOffsets": "90,133,180,235,280,334,386,435,496,546" + }, + "to": { + "startLines": "364,371,374,375,376,389,390,391,392,393", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "23455,23785,23924,23971,24026,24620,24674,24726,24775,24836", + "endColumns": "39,42,46,54,44,53,51,48,60,49", + "endOffsets": "23490,23823,23966,24021,24066,24669,24721,24770,24831,24881" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values/values.xml", + "from": { + "startLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,171,172,176,177,178,6,13,56,88,125", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,124,7725,7795,7863,7935,8005,8066,8140,8213,8274,8335,8397,8461,8523,8584,8652,8752,8812,8878,8951,9020,9077,9129,9191,9263,9339,9374,9409,9459,9520,9577,9611,9646,9681,9751,9822,9939,10140,10250,10451,10580,10652,319,617,3523,5588,7348", + "endLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,170,171,175,176,177,178,12,55,87,124,131", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "119,182,7790,7858,7930,8000,8061,8135,8208,8269,8330,8392,8456,8518,8579,8647,8747,8807,8873,8946,9015,9072,9124,9186,9258,9334,9369,9404,9454,9515,9572,9606,9641,9676,9746,9817,9934,10135,10245,10446,10575,10647,10714,612,3518,5583,7343,7720" + }, + "to": { + "startLines": "111,112,217,218,219,220,221,222,223,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,358,359,367,368,380,381,382,383,384,388,410,466,2164,2165,2170,2173,2178,2541,2542,3603,3764,3807,3840,3877", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "7000,7069,14147,14217,14285,14357,14427,14488,14562,21459,21520,21581,21643,21707,21769,21830,21898,21998,22058,22124,22197,22266,22323,22375,23102,23174,23595,23630,24205,24255,24316,24373,24407,24585,25831,30605,143847,143964,144231,144524,144791,169193,169265,230242,239910,242816,245083,246843", + "endLines": "111,112,217,218,219,220,221,222,223,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,358,359,367,368,380,381,382,383,384,388,410,466,2164,2168,2170,2176,2178,2541,2542,3609,3806,3838,3876,3883", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "7064,7127,14212,14280,14352,14422,14483,14557,14630,21515,21576,21638,21702,21764,21825,21893,21993,22053,22119,22192,22261,22318,22370,22432,23169,23245,23625,23660,24250,24311,24368,24402,24437,24615,25896,30671,143959,144160,144336,144720,144915,169260,169327,230535,242811,244876,246838,247215" + } + }, + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values/colors.xml", + "from": { + "startLines": "4,8,7,1,2,3,5,6", + "startColumns": "2,2,2,2,2,2,2,2", + "startOffsets": "145,314,276,14,54,99,184,229", + "endColumns": "38,39,37,39,44,45,44,46", + "endOffsets": "181,351,311,51,96,142,226,273" + }, + "to": { + "startLines": "49,83,90,114,115,118,121,128", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2845,5293,5736,7221,7263,7463,7658,8108", + "endColumns": "40,41,39,41,46,47,46,48", + "endOffsets": "2881,5330,5771,7258,7305,7506,7700,8152" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/9aa7e09576dc7293e1aad5f17168b77a/res/values/values.xml", + "from": { + "startLines": "30,31,32,33,34,35,36,2", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "1535,1594,1642,1698,1773,1849,1921,55", + "endLines": "30,31,32,33,34,35,36,29", + "endColumns": "58,47,55,74,75,71,65,24", + "endOffsets": "1589,1637,1693,1768,1844,1916,1982,1530" + }, + "to": { + "startLines": "270,271,272,280,281,282,366,4141", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "17612,17671,17719,18386,18461,18537,23529,261982", + "endLines": "270,271,272,280,281,282,366,4168", + "endColumns": "58,47,55,74,75,71,65,24", + "endOffsets": "17666,17714,17770,18456,18532,18604,23590,263457" + } + }, + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values/styles.xml", + "from": { + "startLines": "6,15", + "startColumns": "4,4", + "startOffsets": "186,510", + "endLines": "12,19", + "endColumns": "12,12", + "endOffsets": "472,807" + }, + "to": { + "startLines": "476,483", + "startColumns": "4,4", + "startOffsets": "31395,31686", + "endLines": "482,487", + "endColumns": "12,12", + "endOffsets": "31681,31983" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,35,36,37,38,45,47,50,7", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,107,168,230,292,2179,2238,2295,2349,2763,2827,2953,356", + "endLines": "2,3,4,5,6,35,36,37,44,46,49,52,34", + "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", + "endOffsets": "102,163,225,287,351,2233,2290,2344,2758,2822,2948,3076,2174" + }, + "to": { + "startLines": "6,64,65,66,67,214,215,216,509,1903,1905,1908,3522", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "382,4001,4062,4124,4186,13977,14036,14093,33439,123988,124052,124178,224313", + "endLines": "6,64,65,66,67,214,215,216,515,1904,1907,1910,3549", + "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", + "endOffsets": "429,4057,4119,4181,4245,14031,14088,14142,33848,124047,124173,124301,226131" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/88627de7ec5d8832b22b4a45185bed05/res/values/values.xml", + "from": { + "startLines": "2,102,3,13", + "startColumns": "4,4,4,4", + "startOffsets": "55,5935,116,724", + "endLines": "2,104,12,101", + "endColumns": "60,12,24,24", + "endOffsets": "111,6075,719,5930" + }, + "to": { + "startLines": "11,2817,3636,3646", + "startColumns": "4,4,4,4", + "startOffsets": "642,186016,231932,232540", + "endLines": "11,2819,3645,3734", + "endColumns": "60,12,24,24", + "endOffsets": "698,186156,232535,237746" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1461,1462,1466,1470,1474,1479,1485,1492,1496,1500,1505,1509,1513,1517,1521,1525,1529,1535,1539,1545,1549,1555,1559,1564,1568,1571,1575,1581,1585,1591,1595,1601,1604,1608,1612,1616,1620,1624,1625,1626,1627,1630,1633,1636,1639,1643,1644,1645,1646,1647,1650,1652,1654,1656,1661,1662,1666,1672,1676,1677,1679,1690,1691,1695,1701,1705,1706,1707,1711,1738,1742,1743,1747,1775,1943,1969,2138,2164,2195,2203,2209,2223,2245,2250,2255,2265,2274,2283,2287,2294,2302,2309,2310,2319,2322,2325,2329,2333,2337,2340,2341,2345,2349,2359,2364,2371,2377,2378,2381,2385,2390,2392,2394,2397,2400,2402,2406,2409,2416,2419,2422,2426,2428,2432,2434,2436,2438,2442,2450,2458,2470,2476,2485,2488,2499,2502,2507,2508,2513,2571,2630,2631,2641,2650,2651,2653,2657,2660,2663,2666,2669,2672,2675,2678,2682,2685,2688,2691,2695,2698,2702,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2728,2730,2731,2732,2733,2734,2735,2736,2737,2739,2740,2742,2743,2745,2747,2748,2750,2751,2752,2753,2754,2755,2757,2758,2759,2760,2761,2762,2764,2766,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2782,2783,2784,2785,2786,2787,2789,2793,2797,2798,2799,2800,2801,2802,2803,2804,2806,2808,2810,2812,2814,2815,2816,2817,2819,2821,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2837,2838,2839,2840,2842,2844,2845,2847,2848,2850,2852,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2867,2868,2869,2870,2872,2873,2874,2875,2876,2878,2880,2882,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,69,152,155,158,161,175,186,196,223,230,241,271,298,307,344,725,730,756,774,810,816,822,845,986,1006,1012,1016,1022,1059,1071,1098,1103,1169,1184,1249,1268,1294", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,160,205,254,295,350,409,471,552,613,688,764,841,919,1004,1086,1162,1238,1315,1393,1499,1605,1684,1764,1821,1879,1953,2028,2093,2159,2219,2280,2352,2425,2492,2560,2619,2678,2737,2796,2855,2909,2963,3016,3070,3124,3178,3232,3306,3385,3458,3532,3603,3675,3747,3820,3877,3935,4008,4082,4156,4231,4303,4376,4446,4517,4577,70911,70980,71049,71119,71193,71269,71333,71410,71486,71563,71628,71697,71774,71849,71918,71986,72063,72129,72190,72287,72352,72421,72520,72591,72650,72708,72765,72824,72888,72959,73031,73103,73175,73247,73314,73382,73450,73509,73572,73636,73726,73817,73877,73943,74010,74076,74146,74210,74263,74376,74434,74497,74562,74627,74702,74775,74847,74896,74957,75018,75079,75141,75205,75269,75333,75398,75461,75521,75582,75648,75707,75767,75829,75900,75960,76028,76114,76201,76291,76378,76466,76548,76631,76721,76812,76864,76922,76967,77033,77097,77154,77211,77265,77322,77370,77419,77470,77504,77551,77600,77646,77678,77742,77804,77864,77921,77995,78065,78143,78197,78267,78352,78400,78446,78517,78595,78673,78745,78819,78893,78967,79047,79120,79189,79261,79338,79399,79462,79528,79592,79663,79726,79791,79855,79916,79977,80029,80102,80176,80245,80320,80394,80468,80609,80679,80732,80810,80900,80988,81084,81174,81756,81845,82092,82373,82625,82910,83303,83780,84002,84224,84500,84727,84957,85187,85417,85647,85874,86293,86519,86944,87174,87602,87821,88104,88312,88443,88670,89096,89321,89748,89969,90394,90514,90790,91091,91415,91706,92020,92157,92288,92393,92635,92802,93006,93214,93485,93597,93709,93814,93931,94145,94291,94431,94517,94865,94953,95199,95617,95866,95948,96046,96663,96763,97015,97439,97694,97788,97877,98114,100166,100408,100510,100763,102947,113668,115184,126004,127532,129289,129915,130335,131396,132661,132917,133153,133700,134194,134799,134997,135577,136141,136516,136634,137172,137329,137525,137798,138054,138224,138365,138429,138711,138997,139673,139937,140275,140628,140722,140908,141214,141476,141601,141728,141967,142178,142297,142490,142667,143122,143303,143425,143684,143797,143984,144086,144193,144322,144597,145105,145601,146478,146772,147342,147491,148223,148395,148731,148823,149101,153445,157932,157994,158624,159238,159329,159442,159671,159831,159983,160154,160320,160489,160656,160819,161062,161232,161405,161576,161850,162049,162254,162584,162668,162764,162860,162958,163058,163160,163262,163364,163466,163568,163668,163764,163876,164005,164128,164259,164390,164488,164602,164696,164836,164970,165066,165178,165278,165394,165490,165602,165702,165842,165978,166142,166272,166430,166580,166721,166865,167000,167112,167262,167390,167518,167654,167786,167916,168046,168158,168298,168444,168588,168726,168792,168882,168958,169062,169152,169254,169362,169470,169570,169650,169742,169840,169950,170028,170134,170226,170330,170440,170562,170725,170882,170962,171062,171152,171262,171356,171462,171554,171654,171766,171880,171996,172112,172206,172320,172432,172534,172654,172776,172858,172962,173082,173208,173306,173400,173488,173600,173716,173838,173950,174125,174241,174327,174419,174531,174655,174722,174848,174916,175044,175188,175316,175385,175480,175595,175708,175807,175916,176027,176138,176239,176344,176444,176574,176665,176788,176882,176994,177080,177184,177280,177368,177486,177590,177694,177820,177908,178016,178116,178206,178316,178400,178502,178586,178640,178704,178810,178920,179004,4638,9782,9900,10015,10147,10862,11554,12071,13718,14103,14700,16299,17832,18220,20527,40045,40305,41697,42730,44743,45005,45361,46191,52973,54107,54401,54624,54951,57001,57649,59282,59552,63403,64004,67813,69028,70437", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1460,1461,1465,1469,1473,1478,1484,1491,1495,1499,1504,1508,1512,1516,1520,1524,1528,1534,1538,1544,1548,1554,1558,1563,1567,1570,1574,1580,1584,1590,1594,1600,1603,1607,1611,1615,1619,1623,1624,1625,1626,1629,1632,1635,1638,1642,1643,1644,1645,1646,1649,1651,1653,1655,1660,1661,1665,1671,1675,1676,1678,1689,1690,1694,1700,1704,1705,1706,1710,1737,1741,1742,1746,1774,1942,1968,2137,2163,2194,2202,2208,2222,2244,2249,2254,2264,2273,2282,2286,2293,2301,2308,2309,2318,2321,2324,2328,2332,2336,2339,2340,2344,2348,2358,2363,2370,2376,2377,2380,2384,2389,2391,2393,2396,2399,2401,2405,2408,2415,2418,2421,2425,2427,2431,2433,2435,2437,2441,2449,2457,2469,2475,2484,2487,2498,2501,2506,2507,2512,2570,2629,2630,2640,2649,2650,2652,2656,2659,2662,2665,2668,2671,2674,2677,2681,2684,2687,2690,2694,2697,2701,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2727,2729,2730,2731,2732,2733,2734,2735,2736,2738,2739,2741,2742,2744,2746,2747,2749,2750,2751,2752,2753,2754,2756,2757,2758,2759,2760,2761,2763,2765,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2781,2782,2783,2784,2785,2786,2788,2792,2796,2797,2798,2799,2800,2801,2802,2803,2805,2807,2809,2811,2813,2814,2815,2816,2818,2820,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2836,2837,2838,2839,2841,2843,2844,2846,2847,2849,2851,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2866,2867,2868,2869,2871,2872,2873,2874,2875,2877,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,151,154,157,160,174,185,195,222,229,240,270,297,306,343,724,729,755,773,809,815,821,844,985,1005,1011,1015,1021,1058,1070,1097,1102,1168,1183,1248,1267,1293,1302", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "155,200,249,290,345,404,466,547,608,683,759,836,914,999,1081,1157,1233,1310,1388,1494,1600,1679,1759,1816,1874,1948,2023,2088,2154,2214,2275,2347,2420,2487,2555,2614,2673,2732,2791,2850,2904,2958,3011,3065,3119,3173,3227,3301,3380,3453,3527,3598,3670,3742,3815,3872,3930,4003,4077,4151,4226,4298,4371,4441,4512,4572,4633,70975,71044,71114,71188,71264,71328,71405,71481,71558,71623,71692,71769,71844,71913,71981,72058,72124,72185,72282,72347,72416,72515,72586,72645,72703,72760,72819,72883,72954,73026,73098,73170,73242,73309,73377,73445,73504,73567,73631,73721,73812,73872,73938,74005,74071,74141,74205,74258,74371,74429,74492,74557,74622,74697,74770,74842,74891,74952,75013,75074,75136,75200,75264,75328,75393,75456,75516,75577,75643,75702,75762,75824,75895,75955,76023,76109,76196,76286,76373,76461,76543,76626,76716,76807,76859,76917,76962,77028,77092,77149,77206,77260,77317,77365,77414,77465,77499,77546,77595,77641,77673,77737,77799,77859,77916,77990,78060,78138,78192,78262,78347,78395,78441,78512,78590,78668,78740,78814,78888,78962,79042,79115,79184,79256,79333,79394,79457,79523,79587,79658,79721,79786,79850,79911,79972,80024,80097,80171,80240,80315,80389,80463,80604,80674,80727,80805,80895,80983,81079,81169,81751,81840,82087,82368,82620,82905,83298,83775,83997,84219,84495,84722,84952,85182,85412,85642,85869,86288,86514,86939,87169,87597,87816,88099,88307,88438,88665,89091,89316,89743,89964,90389,90509,90785,91086,91410,91701,92015,92152,92283,92388,92630,92797,93001,93209,93480,93592,93704,93809,93926,94140,94286,94426,94512,94860,94948,95194,95612,95861,95943,96041,96658,96758,97010,97434,97689,97783,97872,98109,100161,100403,100505,100758,102942,113663,115179,125999,127527,129284,129910,130330,131391,132656,132912,133148,133695,134189,134794,134992,135572,136136,136511,136629,137167,137324,137520,137793,138049,138219,138360,138424,138706,138992,139668,139932,140270,140623,140717,140903,141209,141471,141596,141723,141962,142173,142292,142485,142662,143117,143298,143420,143679,143792,143979,144081,144188,144317,144592,145100,145596,146473,146767,147337,147486,148218,148390,148726,148818,149096,153440,157927,157989,158619,159233,159324,159437,159666,159826,159978,160149,160315,160484,160651,160814,161057,161227,161400,161571,161845,162044,162249,162579,162663,162759,162855,162953,163053,163155,163257,163359,163461,163563,163663,163759,163871,164000,164123,164254,164385,164483,164597,164691,164831,164965,165061,165173,165273,165389,165485,165597,165697,165837,165973,166137,166267,166425,166575,166716,166860,166995,167107,167257,167385,167513,167649,167781,167911,168041,168153,168293,168439,168583,168721,168787,168877,168953,169057,169147,169249,169357,169465,169565,169645,169737,169835,169945,170023,170129,170221,170325,170435,170557,170720,170877,170957,171057,171147,171257,171351,171457,171549,171649,171761,171875,171991,172107,172201,172315,172427,172529,172649,172771,172853,172957,173077,173203,173301,173395,173483,173595,173711,173833,173945,174120,174236,174322,174414,174526,174650,174717,174843,174911,175039,175183,175311,175380,175475,175590,175703,175802,175911,176022,176133,176234,176339,176439,176569,176660,176783,176877,176989,177075,177179,177275,177363,177481,177585,177689,177815,177903,178011,178111,178201,178311,178395,178497,178581,178635,178699,178805,178915,178999,179119,9777,9895,10010,10142,10857,11549,12066,13713,14098,14695,16294,17827,18215,20522,40040,40300,41692,42725,44738,45000,45356,46186,52968,54102,54396,54619,54946,56996,57644,59277,59547,63398,63999,67808,69023,70432,70906" + }, + "to": { + "startLines": "12,14,16,40,41,42,43,45,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,79,80,81,82,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,116,117,119,120,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,268,269,273,274,275,276,277,278,279,350,351,352,353,354,355,356,357,360,361,362,363,365,372,373,379,394,396,397,400,401,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,465,467,468,469,470,471,488,496,497,501,505,516,521,527,534,538,542,547,551,555,559,563,567,571,577,581,587,591,597,601,606,610,613,617,623,627,633,637,643,646,650,654,658,662,666,667,668,669,672,675,678,681,685,686,687,688,689,692,694,696,698,703,704,708,714,718,719,721,732,733,737,743,747,801,802,806,833,837,838,842,1092,1260,1286,1455,1481,1512,1520,1526,1540,1562,1567,1572,1582,1591,1600,1604,1611,1619,1626,1627,1636,1639,1642,1646,1650,1654,1657,1658,1662,1666,1676,1681,1688,1694,1695,1698,1702,1707,1709,1711,1714,1717,1719,1723,1726,1733,1736,1739,1743,1745,1749,1751,1753,1755,1759,1767,1775,1787,1793,1802,1805,1816,1819,1824,1825,1911,1969,2032,2033,2043,2052,2053,2055,2059,2062,2065,2068,2071,2074,2077,2080,2084,2087,2090,2093,2097,2100,2104,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2130,2132,2133,2134,2135,2136,2137,2138,2139,2141,2142,2144,2145,2147,2149,2150,2152,2153,2154,2155,2156,2157,2159,2160,2161,2162,2163,2318,2320,2322,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2338,2339,2340,2341,2342,2343,2345,2349,2418,2419,2420,2421,2422,2423,2424,2447,2449,2451,2453,2455,2457,2458,2459,2460,2462,2464,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2480,2481,2482,2483,2485,2487,2488,2490,2491,2493,2495,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2510,2511,2512,2513,2515,2516,2517,2518,2519,2521,2523,2525,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2820,2903,2906,2909,2912,2926,2937,2947,2974,2981,3013,3043,3070,3079,3116,3517,3610,3736,3884,3920,3926,3940,3963,4104,4125,4131,4135,4171,4210,4222,4249,4254,4344,4379,4444,4463,4489", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "703,803,901,2273,2314,2369,2428,2552,2633,2694,2769,2886,2963,3041,3126,3208,3284,3360,3437,3515,3621,3727,3806,3886,3943,5013,5087,5162,5227,5335,5395,5456,5528,5601,5668,5776,5835,5894,5953,6012,6071,6125,6179,6232,6286,6340,6394,7310,7384,7511,7584,7705,7776,7848,7920,7993,8050,8157,8230,8304,8378,8453,8525,8598,8668,8739,8799,8860,8929,8998,9068,9142,9218,9282,9359,9435,9512,9577,9646,9723,9798,9867,9935,10012,10078,10139,10236,10301,10370,10469,10540,10599,10657,10714,10773,10837,10908,10980,11052,11124,11196,11263,11331,11399,11458,11521,11585,11675,11766,11826,11892,11959,12025,12095,12159,12212,12325,12383,12446,12511,12576,12651,12724,12796,12845,12906,12967,13028,13090,13154,13218,13282,13347,13410,13470,13531,13597,13656,13716,13778,13849,13909,17439,17525,17775,17865,17952,18040,18122,18205,18295,22649,22701,22759,22804,22870,22934,22991,23048,23250,23307,23355,23404,23495,23828,23875,24159,24886,24966,25030,25220,25280,25901,25975,26045,26123,26177,26247,26332,26380,26426,26497,26575,26653,26725,26799,26873,26947,27027,27100,27169,27241,27318,27379,27442,27508,27572,27643,27706,27771,27835,27896,27957,28009,28082,28156,28225,28300,28374,28448,28589,30552,30676,30754,30844,30932,31028,31988,32570,32659,32906,33187,33853,34138,34531,35008,35230,35452,35728,35955,36185,36415,36645,36875,37102,37521,37747,38172,38402,38830,39049,39332,39540,39671,39898,40324,40549,40976,41197,41622,41742,42018,42319,42643,42934,43248,43385,43516,43621,43863,44030,44234,44442,44713,44825,44937,45042,45159,45373,45519,45659,45745,46093,46181,46427,46845,47094,47176,47274,47891,47991,48243,48667,48922,52749,52838,53075,55127,55369,55471,55724,74105,84826,86342,97162,98690,100447,101073,101493,102554,103819,104075,104311,104858,105352,105957,106155,106735,107299,107674,107792,108330,108487,108683,108956,109212,109382,109523,109587,109869,110155,110831,111095,111433,111786,111880,112066,112372,112634,112759,112886,113125,113336,113455,113648,113825,114280,114461,114583,114842,114955,115142,115244,115351,115480,115755,116263,116759,117636,117930,118500,118649,119381,119553,119889,119981,124306,128650,133481,133543,134173,134787,134878,134991,135220,135380,135532,135703,135869,136038,136205,136368,136611,136781,136954,137125,137399,137598,137803,138133,138217,138313,138409,138507,138607,138709,138811,138913,139015,139117,139217,139313,139425,139554,139677,139808,139939,140037,140151,140245,140385,140519,140615,140727,140827,140943,141039,141151,141251,141391,141527,141691,141821,141979,142129,142270,142414,142549,142661,142811,142939,143067,143203,143335,143465,143595,143707,152433,152579,152723,152861,152927,153017,153093,153197,153287,153389,153497,153605,153705,153785,153877,153975,154085,154163,154269,154361,154465,154575,154697,154860,159345,159425,159525,159615,159725,159819,159925,161623,161723,161835,161949,162065,162181,162275,162389,162501,162603,162723,162845,162927,163031,163151,163277,163375,163469,163557,163669,163785,163907,164019,164194,164310,164396,164488,164600,164724,164791,164917,164985,165113,165257,165385,165454,165549,165664,165777,165876,165985,166096,166207,166308,166413,166513,166643,166734,166857,166951,167063,167149,167253,167349,167437,167555,167659,167763,167889,167977,168085,168185,168275,168385,168469,168571,168655,168709,168773,168879,168989,169073,186161,191305,191423,191538,191670,192385,193077,193594,195241,195626,197274,198873,200406,200794,203101,224053,230540,237882,247220,249233,249495,251825,252655,259437,261138,261432,261655,263724,266109,266757,268390,268660,274440,277089,280898,282113,283522", + "endLines": "12,14,16,40,41,42,43,45,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,79,80,81,82,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,116,117,119,120,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,268,269,273,274,275,276,277,278,279,350,351,352,353,354,355,356,357,360,361,362,363,365,372,373,379,394,396,397,400,401,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,465,467,468,469,470,471,495,496,500,504,508,520,526,533,537,541,546,550,554,558,562,566,570,576,580,586,590,596,600,605,609,612,616,622,626,632,636,642,645,649,653,657,661,665,666,667,668,671,674,677,680,684,685,686,687,688,691,693,695,697,702,703,707,713,717,718,720,731,732,736,742,746,747,801,805,832,836,837,841,869,1259,1285,1454,1480,1511,1519,1525,1539,1561,1566,1571,1581,1590,1599,1603,1610,1618,1625,1626,1635,1638,1641,1645,1649,1653,1656,1657,1661,1665,1675,1680,1687,1693,1694,1697,1701,1706,1708,1710,1713,1716,1718,1722,1725,1732,1735,1738,1742,1744,1748,1750,1752,1754,1758,1766,1774,1786,1792,1801,1804,1815,1818,1823,1824,1829,1968,2027,2032,2042,2051,2052,2054,2058,2061,2064,2067,2070,2073,2076,2079,2083,2086,2089,2092,2096,2099,2103,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2129,2131,2132,2133,2134,2135,2136,2137,2138,2140,2141,2143,2144,2146,2148,2149,2151,2152,2153,2154,2155,2156,2158,2159,2160,2161,2162,2163,2319,2321,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2337,2338,2339,2340,2341,2342,2344,2348,2352,2418,2419,2420,2421,2422,2423,2424,2448,2450,2452,2454,2456,2457,2458,2459,2461,2463,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2479,2480,2481,2482,2484,2486,2487,2489,2490,2492,2494,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2509,2510,2511,2512,2514,2515,2516,2517,2518,2520,2522,2524,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2902,2905,2908,2911,2925,2936,2946,2973,2980,2991,3042,3069,3078,3115,3496,3521,3635,3753,3919,3925,3931,3962,4103,4123,4130,4134,4140,4207,4221,4248,4253,4319,4358,4443,4462,4488,4497", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "753,843,945,2309,2364,2423,2485,2628,2689,2764,2840,2958,3036,3121,3203,3279,3355,3432,3510,3616,3722,3801,3881,3938,3996,5082,5157,5222,5288,5390,5451,5523,5596,5663,5731,5830,5889,5948,6007,6066,6120,6174,6227,6281,6335,6389,6443,7379,7458,7579,7653,7771,7843,7915,7988,8045,8103,8225,8299,8373,8448,8520,8593,8663,8734,8794,8855,8924,8993,9063,9137,9213,9277,9354,9430,9507,9572,9641,9718,9793,9862,9930,10007,10073,10134,10231,10296,10365,10464,10535,10594,10652,10709,10768,10832,10903,10975,11047,11119,11191,11258,11326,11394,11453,11516,11580,11670,11761,11821,11887,11954,12020,12090,12154,12207,12320,12378,12441,12506,12571,12646,12719,12791,12840,12901,12962,13023,13085,13149,13213,13277,13342,13405,13465,13526,13592,13651,13711,13773,13844,13904,13972,17520,17607,17860,17947,18035,18117,18200,18290,18381,22696,22754,22799,22865,22929,22986,23043,23097,23302,23350,23399,23450,23524,23870,23919,24200,24913,25025,25087,25275,25332,25970,26040,26118,26172,26242,26327,26375,26421,26492,26570,26648,26720,26794,26868,26942,27022,27095,27164,27236,27313,27374,27437,27503,27567,27638,27701,27766,27830,27891,27952,28004,28077,28151,28220,28295,28369,28443,28584,28654,30600,30749,30839,30927,31023,31113,32565,32654,32901,33182,33434,34133,34526,35003,35225,35447,35723,35950,36180,36410,36640,36870,37097,37516,37742,38167,38397,38825,39044,39327,39535,39666,39893,40319,40544,40971,41192,41617,41737,42013,42314,42638,42929,43243,43380,43511,43616,43858,44025,44229,44437,44708,44820,44932,45037,45154,45368,45514,45654,45740,46088,46176,46422,46840,47089,47171,47269,47886,47986,48238,48662,48917,49011,52833,53070,55122,55364,55466,55719,57903,84821,86337,97157,98685,100442,101068,101488,102549,103814,104070,104306,104853,105347,105952,106150,106730,107294,107669,107787,108325,108482,108678,108951,109207,109377,109518,109582,109864,110150,110826,111090,111428,111781,111875,112061,112367,112629,112754,112881,113120,113331,113450,113643,113820,114275,114456,114578,114837,114950,115137,115239,115346,115475,115750,116258,116754,117631,117925,118495,118644,119376,119548,119884,119976,120254,128645,133132,133538,134168,134782,134873,134986,135215,135375,135527,135698,135864,136033,136200,136363,136606,136776,136949,137120,137394,137593,137798,138128,138212,138308,138404,138502,138602,138704,138806,138908,139010,139112,139212,139308,139420,139549,139672,139803,139934,140032,140146,140240,140380,140514,140610,140722,140822,140938,141034,141146,141246,141386,141522,141686,141816,141974,142124,142265,142409,142544,142656,142806,142934,143062,143198,143330,143460,143590,143702,143842,152574,152718,152856,152922,153012,153088,153192,153282,153384,153492,153600,153700,153780,153872,153970,154080,154158,154264,154356,154460,154570,154692,154855,155012,159420,159520,159610,159720,159814,159920,160012,161718,161830,161944,162060,162176,162270,162384,162496,162598,162718,162840,162922,163026,163146,163272,163370,163464,163552,163664,163780,163902,164014,164189,164305,164391,164483,164595,164719,164786,164912,164980,165108,165252,165380,165449,165544,165659,165772,165871,165980,166091,166202,166303,166408,166508,166638,166729,166852,166946,167058,167144,167248,167344,167432,167550,167654,167758,167884,167972,168080,168180,168270,168380,168464,168566,168650,168704,168768,168874,168984,169068,169188,191300,191418,191533,191665,192380,193072,193589,195236,195621,196218,198868,200401,200789,203096,222614,224308,231927,238910,249228,249490,249846,252650,259432,260566,261427,261650,261977,265769,266752,268385,268655,272506,275036,280893,282108,283517,283991" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/values/values.xml", + "from": { + "startLines": "2,5,6,7,8,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,288,341,394,447,560,626,748,809,875", + "endColumns": "88,52,52,52,52,65,121,60,65,66", + "endOffsets": "139,336,389,442,495,621,743,804,870,937" + }, + "to": { + "startLines": "113,346,347,348,349,2169,2171,2172,2177,2179", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "7132,22437,22490,22543,22596,144165,144341,144463,144725,144920", + "endColumns": "88,52,52,52,52,65,121,60,65,66", + "endOffsets": "7216,22485,22538,22591,22644,144226,144458,144519,144786,144982" + } + }, + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values/strings.xml", + "from": { + "startLines": "2,3", + "startColumns": "2,2", + "startOffsets": "53,99", + "endColumns": "45,50", + "endOffsets": "96,147" + }, + "to": { + "startLines": "450,457", + "startColumns": "4,4", + "startOffsets": "28659,29468", + "endColumns": "47,52", + "endOffsets": "28702,29516" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,345,346,347,352,353,357,363,367,368,369,370,381,382,383,387,393,397,398,399,400,430,450,496,526,546,566,612,616,620,634,675,683,693,694,695,696,697,700,701,704,707,708,711,715,720,728,736,745,753,757,765,773,781,789,797,806,815,823,832,835,837,842,844,849,853,857,858,863,864,865,866,867,868,870,871,876,877,878,879,880,881,882,884,888,892,896,900,901,902,903,904,905,906,907,908,911,915,918,922,930,937,946,950,965,973,976,985,990,1001,1009,1012,1021,1028,1029,1048,1051,1057,1060,1069,1072,1075,1078,1081,1084,1088,1091,1100,1103,1111,1116,1124,1129,1133,1134,1145,1152,1156,1160,1161,1165,1173,1177,1182,1187,55,56,57,76,82,92,96,97,98,141,149,150,158,159,160,161,167,168,169,170,171,172,173,174,175,198,217", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "100,156,216,277,332,385,443,491,540,585,638,696,756,814,860,920,973,1019,1069,1116,1174,1232,1291,1351,1413,1475,1537,1599,1661,1723,1784,1846,1908,1961,2023,2097,2160,2228,2309,2373,2439,2509,2579,2649,2719,2786,2849,2914,2980,3033,3109,3175,3262,18372,18426,18505,18583,18656,18721,18784,18850,18921,18992,19054,19123,19189,19256,19323,19379,19430,19483,19535,19589,19660,19723,19782,19844,19903,19976,20043,20103,20166,20241,20313,20384,20440,20511,20568,20625,20691,20755,20826,20883,20936,20999,21051,21109,21176,21242,21308,21389,21464,21520,21573,21634,21692,21742,21791,21840,21889,21951,22003,22048,22129,22183,22236,22290,22341,22390,22441,22502,22563,22625,22675,22716,22766,22814,22876,22927,22976,23045,23106,23162,23233,23298,23367,23418,23481,23551,23620,23690,23752,23822,23892,23967,24026,24084,24146,24191,24234,24281,24326,24377,24425,24491,24553,24616,24688,24745,24802,24862,24920,24990,25047,25192,25313,25417,25504,25656,25808,25956,26037,26115,26416,26582,26737,26839,27116,27209,27316,27659,27766,27995,28404,28636,28736,28841,28960,29583,29730,29849,30084,30499,30737,30849,30970,31103,33241,34757,38048,40182,41710,43254,46541,46787,47046,47850,49610,50060,50775,50848,50935,51020,51119,51314,51406,51579,51741,51836,52005,52248,52541,52950,53364,53824,54242,54483,54913,55348,55758,56180,56590,57047,57501,57917,58383,58565,58633,58977,59057,59413,59563,59707,59791,60156,60254,60362,60460,60570,60686,60812,60908,61285,61395,61519,61657,61767,61889,62017,62155,62317,62533,62689,62893,62977,63081,63175,63289,63401,63525,63621,63701,63890,64096,64289,64499,64931,65352,65777,65974,66922,67443,67566,68203,68424,69239,69708,69891,70487,70947,71052,72313,72463,72880,73045,73725,73884,74046,74201,74397,74564,74786,74946,75323,75482,75810,76027,76602,76952,77201,77298,78004,78442,78683,78872,79006,79197,79834,80084,80387,80602,3338,3636,3892,4389,4823,5480,5823,7362,7710,9607,9929,10060,10766,10903,11055,11257,11962,12082,13231,13798,13927,14060,14220,14395,14537,16324,18162", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,344,345,346,351,352,356,362,366,367,368,369,380,381,382,386,392,396,397,398,399,429,449,495,525,545,565,611,615,619,633,674,682,692,693,694,695,696,699,700,703,706,707,710,714,719,727,735,744,752,756,764,772,780,788,796,805,814,822,831,834,836,841,843,848,852,856,857,862,863,864,865,866,867,869,870,875,876,877,878,879,880,881,883,887,891,895,899,900,901,902,903,904,905,906,907,910,914,917,921,929,936,945,949,964,972,975,984,989,1000,1008,1011,1020,1027,1028,1047,1050,1056,1059,1068,1071,1074,1077,1080,1083,1087,1090,1099,1102,1110,1115,1123,1128,1132,1133,1144,1151,1155,1159,1160,1164,1172,1176,1181,1186,1195,55,56,75,81,91,95,96,97,140,148,149,157,158,159,160,166,167,168,169,170,171,172,173,174,197,216,217", + "endColumns": "55,59,60,54,52,57,47,48,44,52,57,59,57,45,59,52,45,49,46,57,57,58,59,61,61,61,61,61,61,60,61,61,52,61,73,62,67,80,63,65,69,69,69,69,66,62,64,65,52,75,65,86,75,53,78,77,72,64,62,65,70,70,61,68,65,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,70,55,70,56,56,65,63,70,56,52,62,51,57,66,65,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,53,52,53,50,48,50,60,60,61,49,40,49,47,61,50,48,68,60,55,70,64,68,50,62,69,68,69,61,69,69,74,58,57,61,44,42,46,44,50,47,65,61,62,71,56,56,59,57,69,56,144,120,103,86,151,151,147,80,77,300,165,154,101,10,92,106,10,106,10,10,10,99,104,118,10,146,118,10,10,10,111,120,132,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,91,10,10,94,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,83,10,97,107,97,109,115,10,95,10,109,123,137,109,121,127,10,10,10,10,10,83,103,93,113,111,123,95,79,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,96,10,10,10,10,133,10,10,10,10,10,10,297,255,90,243,367,188,1538,347,95,94,130,412,136,151,201,220,119,1148,566,128,132,159,174,141,125,457,209", + "endOffsets": "151,211,272,327,380,438,486,535,580,633,691,751,809,855,915,968,1014,1064,1111,1169,1227,1286,1346,1408,1470,1532,1594,1656,1718,1779,1841,1903,1956,2018,2092,2155,2223,2304,2368,2434,2504,2574,2644,2714,2781,2844,2909,2975,3028,3104,3170,3257,3333,18421,18500,18578,18651,18716,18779,18845,18916,18987,19049,19118,19184,19251,19318,19374,19425,19478,19530,19584,19655,19718,19777,19839,19898,19971,20038,20098,20161,20236,20308,20379,20435,20506,20563,20620,20686,20750,20821,20878,20931,20994,21046,21104,21171,21237,21303,21384,21459,21515,21568,21629,21687,21737,21786,21835,21884,21946,21998,22043,22124,22178,22231,22285,22336,22385,22436,22497,22558,22620,22670,22711,22761,22809,22871,22922,22971,23040,23101,23157,23228,23293,23362,23413,23476,23546,23615,23685,23747,23817,23887,23962,24021,24079,24141,24186,24229,24276,24321,24372,24420,24486,24548,24611,24683,24740,24797,24857,24915,24985,25042,25187,25308,25412,25499,25651,25803,25951,26032,26110,26411,26577,26732,26834,27111,27204,27311,27654,27761,27990,28399,28631,28731,28836,28955,29578,29725,29844,30079,30494,30732,30844,30965,31098,33236,34752,38043,40177,41705,43249,46536,46782,47041,47845,49605,50055,50770,50843,50930,51015,51114,51309,51401,51574,51736,51831,52000,52243,52536,52945,53359,53819,54237,54478,54908,55343,55753,56175,56585,57042,57496,57912,58378,58560,58628,58972,59052,59408,59558,59702,59786,60151,60249,60357,60455,60565,60681,60807,60903,61280,61390,61514,61652,61762,61884,62012,62150,62312,62528,62684,62888,62972,63076,63170,63284,63396,63520,63616,63696,63885,64091,64284,64494,64926,65347,65772,65969,66917,67438,67561,68198,68419,69234,69703,69886,70482,70942,71047,72308,72458,72875,73040,73720,73879,74041,74196,74392,74559,74781,74941,75318,75477,75805,76022,76597,76947,77196,77293,77999,78437,78678,78867,79001,79192,79829,80079,80382,80597,81178,3631,3887,4384,4818,5475,5818,7357,7705,9602,9924,10055,10761,10898,11050,11252,11957,12077,13226,13793,13922,14055,14215,14390,14532,16319,18157,18367" + }, + "to": { + "startLines": "2,3,4,5,7,8,9,10,13,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,68,69,70,71,72,73,74,75,76,77,78,103,104,105,106,107,108,109,110,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,369,370,377,378,385,386,387,395,398,399,402,403,404,405,406,407,408,409,451,452,453,454,455,456,458,459,460,461,462,463,464,472,748,749,750,755,756,760,766,770,771,772,773,784,785,786,790,796,800,870,871,872,902,922,968,998,1018,1038,1084,1088,1830,1844,1885,1893,2028,2029,2030,2031,2180,2183,2184,2187,2190,2191,2194,2198,2203,2211,2219,2228,2236,2240,2248,2256,2264,2272,2280,2289,2298,2306,2315,2353,2355,2360,2362,2367,2371,2375,2376,2381,2382,2383,2384,2385,2386,2388,2389,2394,2395,2396,2397,2398,2399,2400,2402,2406,2410,2414,2425,2426,2427,2428,2429,2430,2431,2432,2433,2436,2440,2443,2543,2551,2558,2567,2571,2586,2594,2597,2606,2611,2622,2630,2633,2642,2649,2650,2669,2672,2678,2681,2690,2693,2696,2699,2702,2705,2709,2712,2721,2724,2732,2737,2745,2750,2754,2755,2766,2773,2777,2781,2782,2786,2794,2798,2803,2808,2992,2993,2994,3497,3503,3513,3550,3551,3552,3595,3735,3754,3762,3763,3839,3932,3938,3939,4124,4169,4170,4208,4209,4320,4321,4359,4378", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "150,206,266,327,434,487,545,593,758,848,950,1008,1068,1126,1172,1232,1285,1331,1381,1428,1486,1544,1603,1663,1725,1787,1849,1911,1973,2035,2096,2158,2220,2490,4250,4324,4387,4455,4536,4600,4666,4736,4806,4876,4946,6448,6511,6576,6642,6695,6771,6837,6924,14635,14689,14768,14846,14919,14984,15047,15113,15184,15255,15317,15386,15452,15519,15586,15642,15693,15746,15798,15852,15923,15986,16045,16107,16166,16239,16306,16366,16429,16504,16576,16647,16703,16774,16831,16888,16954,17018,17089,17146,17199,17262,17314,17372,18609,18675,18741,18822,18897,18953,19006,19067,19125,19175,19224,19273,19322,19384,19436,19481,19562,19616,19669,19723,19774,19823,19874,19935,19996,20058,20108,20149,20199,20247,20309,20360,20409,20478,20539,20595,20666,20731,20800,20851,20914,20984,21053,21123,21185,21255,21325,21400,23665,23723,24071,24116,24442,24489,24534,24918,25092,25158,25337,25400,25472,25529,25586,25646,25704,25774,28707,28852,28973,29077,29164,29316,29521,29669,29750,29828,30129,30295,30450,31118,49016,49109,49216,49559,49666,49895,50304,50536,50636,50741,50860,51483,51630,51749,51984,52399,52637,57908,58029,58162,60300,61816,65107,67241,68769,70313,73600,73846,120259,121063,122823,123273,133137,133210,133297,133382,144987,145182,145274,145447,145609,145704,145873,146116,146409,146818,147232,147692,148110,148351,148781,149216,149626,150048,150458,150915,151369,151785,152251,155017,155085,155429,155509,155865,156015,156159,156243,156608,156706,156814,156912,157022,157138,157264,157360,157737,157847,157971,158109,158219,158341,158469,158607,158769,158985,159141,160017,160101,160205,160299,160413,160525,160649,160745,160825,161014,161220,161413,169332,169764,170185,170610,170807,171755,172276,172399,173036,173257,174072,174541,174724,175320,175780,175885,177146,177296,177713,177878,178558,178717,178879,179034,179230,179397,179619,179779,180156,180315,180643,180860,181435,181785,182034,182131,182837,183275,183516,183705,183839,184030,184667,184917,185220,185435,196223,196521,196777,222619,223053,223710,226136,227675,228023,229920,237751,238915,239621,239758,244881,249851,250556,250676,260571,263462,263591,265774,265934,272511,272653,275041,276879", + "endLines": "2,3,4,5,7,8,9,10,13,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,68,69,70,71,72,73,74,75,76,77,78,103,104,105,106,107,108,109,110,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,369,370,377,378,385,386,387,395,398,399,402,403,404,405,406,407,408,409,451,452,453,454,455,456,458,459,460,461,462,463,464,475,748,749,754,755,759,765,769,770,771,772,783,784,785,789,795,799,800,870,871,901,921,967,997,1017,1037,1083,1087,1091,1843,1884,1892,1902,2028,2029,2030,2031,2182,2183,2186,2189,2190,2193,2197,2202,2210,2218,2227,2235,2239,2247,2255,2263,2271,2279,2288,2297,2305,2314,2317,2354,2359,2361,2366,2370,2374,2375,2380,2381,2382,2383,2384,2385,2387,2388,2393,2394,2395,2396,2397,2398,2399,2401,2405,2409,2413,2417,2425,2426,2427,2428,2429,2430,2431,2432,2435,2439,2442,2446,2550,2557,2566,2570,2585,2593,2596,2605,2610,2621,2629,2632,2641,2648,2649,2668,2671,2677,2680,2689,2692,2695,2698,2701,2704,2708,2711,2720,2723,2731,2736,2744,2749,2753,2754,2765,2772,2776,2780,2781,2785,2793,2797,2802,2807,2816,2992,2993,3012,3502,3512,3516,3550,3551,3594,3602,3735,3761,3762,3763,3839,3937,3938,3939,4124,4169,4170,4208,4209,4320,4343,4377,4378", + "endColumns": "55,59,60,54,52,57,47,48,44,52,57,59,57,45,59,52,45,49,46,57,57,58,59,61,61,61,61,61,61,60,61,61,52,61,73,62,67,80,63,65,69,69,69,69,66,62,64,65,52,75,65,86,75,53,78,77,72,64,62,65,70,70,61,68,65,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,70,55,70,56,56,65,63,70,56,52,62,51,57,66,65,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,53,52,53,50,48,50,60,60,61,49,40,49,47,61,50,48,68,60,55,70,64,68,50,62,69,68,69,61,69,69,74,58,57,61,44,42,46,44,50,47,65,61,62,71,56,56,59,57,69,56,144,120,103,86,151,151,147,80,77,300,165,154,101,10,92,106,10,106,10,10,10,99,104,118,10,146,118,10,10,10,111,120,132,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,91,10,10,94,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,83,10,97,107,97,109,115,10,95,10,109,123,137,109,121,127,10,10,10,10,10,83,103,93,113,111,123,95,79,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,96,10,10,10,10,133,10,10,10,10,10,10,297,255,90,243,367,188,1538,347,95,94,130,412,136,151,201,220,119,1148,566,128,132,159,174,141,125,457,209", + "endOffsets": "201,261,322,377,482,540,588,637,798,896,1003,1063,1121,1167,1227,1280,1326,1376,1423,1481,1539,1598,1658,1720,1782,1844,1906,1968,2030,2091,2153,2215,2268,2547,4319,4382,4450,4531,4595,4661,4731,4801,4871,4941,5008,6506,6571,6637,6690,6766,6832,6919,6995,14684,14763,14841,14914,14979,15042,15108,15179,15250,15312,15381,15447,15514,15581,15637,15688,15741,15793,15847,15918,15981,16040,16102,16161,16234,16301,16361,16424,16499,16571,16642,16698,16769,16826,16883,16949,17013,17084,17141,17194,17257,17309,17367,17434,18670,18736,18817,18892,18948,19001,19062,19120,19170,19219,19268,19317,19379,19431,19476,19557,19611,19664,19718,19769,19818,19869,19930,19991,20053,20103,20144,20194,20242,20304,20355,20404,20473,20534,20590,20661,20726,20795,20846,20909,20979,21048,21118,21180,21250,21320,21395,21454,23718,23780,24111,24154,24484,24529,24580,24961,25153,25215,25395,25467,25524,25581,25641,25699,25769,25826,28847,28968,29072,29159,29311,29463,29664,29745,29823,30124,30290,30445,30547,31390,49104,49211,49554,49661,49890,50299,50531,50631,50736,50855,51478,51625,51744,51979,52394,52632,52744,58024,58157,60295,61811,65102,67236,68764,70308,73595,73841,74100,121058,122818,123268,123983,133205,133292,133377,133476,145177,145269,145442,145604,145699,145868,146111,146404,146813,147227,147687,148105,148346,148776,149211,149621,150043,150453,150910,151364,151780,152246,152428,155080,155424,155504,155860,156010,156154,156238,156603,156701,156809,156907,157017,157133,157259,157355,157732,157842,157966,158104,158214,158336,158464,158602,158764,158980,159136,159340,160096,160200,160294,160408,160520,160644,160740,160820,161009,161215,161408,161618,169759,170180,170605,170802,171750,172271,172394,173031,173252,174067,174536,174719,175315,175775,175880,177141,177291,177708,177873,178553,178712,178874,179029,179225,179392,179614,179774,180151,180310,180638,180855,181430,181780,182029,182126,182832,183270,183511,183700,183834,184025,184662,184912,185215,185430,186011,196516,196772,197269,223048,223705,224048,227670,228018,229915,230237,237877,239616,239753,239905,245078,250551,250671,251820,261133,263586,263719,265929,266104,272648,274435,276874,277084" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-fr_values-fr.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fr/values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,2859", + "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", + "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,2940" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fr/values-fr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-v24_values-v24.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/values-v24/values-v24.xml", + "from": { + "startLines": "2,3,4,5", + "startColumns": "4,4,4,4", + "startOffsets": "55,121,182,248", + "endColumns": "65,60,65,66", + "endOffsets": "116,177,243,310" + }, + "to": { + "startLines": "4,5,6,7", + "startColumns": "4,4,4,4", + "startOffsets": "347,413,474,540", + "endColumns": "65,60,65,66", + "endOffsets": "408,469,535,602" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v24/values-v24.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,212", + "endColumns": "156,134", + "endOffsets": "207,342" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-fi_values-fi.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fi/values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,2792", + "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", + "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,2867" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fi/values-fi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2872", + "endColumns": "100", + "endOffsets": "2968" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-uz_values-uz.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-uz/values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,428,514,614,730,810,889,980,1073,1169,1263,1358,1451,1546,1641,1732,1824,1908,2017,2124,2225,2333,2438,2545,2706,2805", + "endColumns": "104,103,113,85,99,115,79,78,90,92,95,93,94,92,94,94,90,91,83,108,106,100,107,104,106,160,98,83", + "endOffsets": "205,309,423,509,609,725,805,884,975,1068,1164,1258,1353,1446,1541,1636,1727,1819,1903,2012,2119,2220,2328,2433,2540,2701,2800,2884" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-uz/values-uz.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2889", + "endColumns": "100", + "endOffsets": "2985" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-v21_values-v21.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,5,8,11", + "startColumns": "4,4,4,4", + "startOffsets": "55,223,386,554", + "endLines": "4,7,10,13", + "endColumns": "12,12,12,12", + "endOffsets": "218,381,549,716" + }, + "to": { + "startLines": "265,268,272,276", + "startColumns": "4,4,4,4", + "startOffsets": "19504,19672,19961,20257", + "endLines": "267,270,274,278", + "endColumns": "12,12,12,12", + "endOffsets": "19667,19830,20124,20419" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,13", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,354,470,596,722,850,1022", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" + }, + "to": { + "startLines": "2,3,4,5,263,264,271,275,311,314", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,19262,19378,19835,20129,22137,22309", + "endLines": "2,3,4,5,263,264,271,275,313,318", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,19373,19499,19956,20252,22304,22642" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8799,11879,12076,12275,12398,12521,12634,12817,12948,13149,13238,13349,13582,13683,13778,13901,14030,14147,14324,14423,14558,14701,14836,14955,15156,15275,15368,15479,15535,15642,15837,15948,16081,16176,16267,16358,16475,16614,16685,16768,17448,17505,17563,18257", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8794,11874,12071,12270,12393,12516,12629,12812,12943,13144,13233,13344,13577,13678,13773,13896,14025,14142,14319,14418,14553,14696,14831,14950,15151,15270,15363,15474,15530,15637,15832,15943,16076,16171,16262,16353,16470,16609,16680,16763,17443,17500,17558,18252,18958" + }, + "to": { + "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9098,12178,12375,12574,12697,12820,12933,13116,13247,13448,13537,13648,13881,13982,14077,14200,14329,14446,14623,14722,14857,15000,15135,15254,15455,15574,15667,15778,15834,15941,16136,16247,16380,16475,16566,16657,16774,16913,16984,17067,17747,17804,17862,18556", + "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9093,12173,12370,12569,12692,12815,12928,13111,13242,13443,13532,13643,13876,13977,14072,14195,14324,14441,14618,14717,14852,14995,15130,15249,15450,15569,15662,15773,15829,15936,16131,16242,16375,16470,16561,16652,16769,16908,16979,17062,17742,17799,17857,18551,19257" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,10,18,26", + "startColumns": "4,4,4,4", + "startOffsets": "55,484,910,1333", + "endLines": "9,17,25,33", + "endColumns": "10,10,10,10", + "endOffsets": "479,905,1328,1763" + }, + "to": { + "startLines": "279,287,295,303", + "startColumns": "4,4,4,4", + "startOffsets": "20424,20853,21279,21702", + "endLines": "286,294,302,310", + "endColumns": "10,10,10,10", + "endOffsets": "20848,21274,21697,22132" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ldltr-v21_values-ldltr-v21.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ldltr-v21/values-ldltr-v21.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "112", + "endOffsets": "163" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-hi_values-hi.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hi/values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,308,418,504,606,728,805,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1912,2021,2124,2226,2336,2437,2549,2711,2812", + "endColumns": "105,96,109,85,101,121,76,77,90,92,95,93,100,92,94,93,90,90,89,108,102,101,109,100,111,161,100,79", + "endOffsets": "206,303,413,499,601,723,800,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1907,2016,2119,2221,2331,2432,2544,2706,2807,2887" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hi/values-hi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2892", + "endColumns": "100", + "endOffsets": "2988" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-sk_values-sk.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sk/values-sk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2918", + "endColumns": "100", + "endOffsets": "3014" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sk/values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,312,423,509,617,735,816,897,988,1081,1180,1274,1375,1468,1563,1661,1752,1843,1927,2032,2141,2240,2346,2457,2566,2732,2830", + "endColumns": "106,99,110,85,107,117,80,80,90,92,98,93,100,92,94,97,90,90,83,104,108,98,105,110,108,165,97,87", + "endOffsets": "207,307,418,504,612,730,811,892,983,1076,1175,1269,1370,1463,1558,1656,1747,1838,1922,2027,2136,2235,2341,2452,2561,2727,2825,2913" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-pt_values-pt.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pt/values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pt/values-pt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-b+sr+Latn_values-b+sr+Latn.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2912", + "endColumns": "100", + "endOffsets": "3008" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,424,510,614,732,814,895,986,1079,1175,1269,1370,1463,1558,1663,1754,1845,1933,2039,2147,2248,2353,2461,2562,2731,2828", + "endColumns": "108,103,105,85,103,117,81,80,90,92,95,93,100,92,94,104,90,90,87,105,107,100,104,107,100,168,96,83", + "endOffsets": "209,313,419,505,609,727,809,890,981,1074,1170,1264,1365,1458,1553,1658,1749,1840,1928,2034,2142,2243,2348,2456,2557,2726,2823,2907" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-in_values-in.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-in/values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,2803", + "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", + "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,2882" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-in/values-in.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-kk_values-kk.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-kk/values-kk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2893", + "endColumns": "100", + "endOffsets": "2989" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-kk/values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,320,430,515,621,740,821,901,992,1085,1181,1275,1376,1469,1564,1661,1752,1844,1925,2028,2133,2231,2338,2447,2547,2713,2812", + "endColumns": "111,102,109,84,105,118,80,79,90,92,95,93,100,92,94,96,90,91,80,102,104,97,106,108,99,165,98,80", + "endOffsets": "212,315,425,510,616,735,816,896,987,1080,1176,1270,1371,1464,1559,1656,1747,1839,1920,2023,2128,2226,2333,2442,2542,2708,2807,2888" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-am_values-am.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-am/values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,207,306,412,498,601,714,792,870,961,1054,1147,1241,1342,1435,1530,1624,1715,1805,1884,1984,2084,2180,2283,2382,2489,2642,2738", + "endColumns": "101,98,105,85,102,112,77,77,90,92,92,93,100,92,94,93,90,89,78,99,99,95,102,98,106,152,95,78", + "endOffsets": "202,301,407,493,596,709,787,865,956,1049,1142,1236,1337,1430,1525,1619,1710,1800,1879,1979,2079,2175,2278,2377,2484,2637,2733,2812" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-am/values-am.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2817", + "endColumns": "100", + "endOffsets": "2913" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-zh-rCN_values-zh-rCN.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2744", + "endColumns": "100", + "endOffsets": "2840" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,2666", + "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", + "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,2739" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-zu_values-zu.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zu/values-zu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2898", + "endColumns": "100", + "endOffsets": "2994" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zu/values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,320,434,522,625,752,832,912,1003,1096,1190,1284,1385,1478,1573,1667,1758,1851,1937,2041,2147,2245,2352,2458,2564,2721,2817", + "endColumns": "107,106,113,87,102,126,79,79,90,92,93,93,100,92,94,93,90,92,85,103,105,97,106,105,105,156,95,80", + "endOffsets": "208,315,429,517,620,747,827,907,998,1091,1185,1279,1380,1473,1568,1662,1753,1846,1932,2036,2142,2240,2347,2453,2559,2716,2812,2893" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-en-rGB_values-en-rGB.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ne_values-ne.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ne/values-ne.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2988", + "endColumns": "100", + "endOffsets": "3084" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ne/values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,422,513,620,747,841,931,1022,1115,1211,1305,1406,1499,1594,1688,1779,1870,1958,2068,2184,2287,2402,2504,2619,2790,2902", + "endColumns": "104,103,107,90,106,126,93,89,90,92,95,93,100,92,94,93,90,90,87,109,115,102,114,101,114,170,111,85", + "endOffsets": "205,309,417,508,615,742,836,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1953,2063,2179,2282,2397,2499,2614,2785,2897,2983" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ur_values-ur.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ur/values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,321,430,516,620,740,816,892,984,1078,1174,1268,1370,1464,1560,1654,1746,1838,1923,2031,2140,2242,2353,2453,2561,2726,2824", + "endColumns": "109,105,108,85,103,119,75,75,91,93,95,93,101,93,95,93,91,91,84,107,108,101,110,99,107,164,97,79", + "endOffsets": "210,316,425,511,615,735,811,887,979,1073,1169,1263,1365,1459,1555,1649,1741,1833,1918,2026,2135,2237,2348,2448,2556,2721,2819,2899" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ur/values-ur.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2904", + "endColumns": "100", + "endOffsets": "3000" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-my_values-my.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-my/values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,319,436,529,641,769,847,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1951,2074,2186,2288,2414,2525,2635,2795,2895", + "endColumns": "108,104,116,92,111,127,77,78,90,92,95,93,100,92,94,93,90,90,85,122,111,101,125,110,109,159,99,83", + "endOffsets": "209,314,431,524,636,764,842,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1946,2069,2181,2283,2409,2520,2630,2790,2890,2974" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-my/values-my.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2979", + "endColumns": "100", + "endOffsets": "3075" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-pt-rPT_values-pt-rPT.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,2864", + "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", + "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,2944" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-en-rAU_values-en-rAU.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ko_values-ko.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ko/values-ko.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2756", + "endColumns": "100", + "endOffsets": "2852" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ko/values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,2678", + "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", + "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,2751" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ro_values-ro.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ro/values-ro.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2953", + "endColumns": "100", + "endOffsets": "3049" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ro/values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,2870", + "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", + "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,2948" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ar_values-ar.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ar/values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,326,435,517,618,732,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1832,1911,2016,2117,2213,2321,2424,2527,2682,2779", + "endColumns": "116,103,108,81,100,113,78,78,90,92,95,93,100,92,94,93,90,93,78,104,100,95,107,102,102,154,96,80", + "endOffsets": "217,321,430,512,613,727,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1827,1906,2011,2112,2208,2316,2419,2522,2677,2774,2855" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ar/values-ar.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2860", + "endColumns": "100", + "endOffsets": "2956" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-hdpi-v4_values-hdpi-v4.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hdpi-v4/values-hdpi-v4.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "6", + "endColumns": "13", + "endOffsets": "327" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-h720dp-v13_values-h720dp-v13.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-h720dp-v13/values-h720dp-v13.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "66", + "endOffsets": "117" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ky_values-ky.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ky/values-ky.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ky/values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,304,423,507,614,731,809,888,979,1072,1168,1262,1363,1456,1551,1646,1737,1828,1909,2019,2126,2224,2330,2437,2538,2699,2802", + "endColumns": "103,94,118,83,106,116,77,78,90,92,95,93,100,92,94,94,90,90,80,109,106,97,105,106,100,160,102,80", + "endOffsets": "204,299,418,502,609,726,804,883,974,1067,1163,1257,1358,1451,1546,1641,1732,1823,1904,2014,2121,2219,2325,2432,2533,2694,2797,2878" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-bg_values-bg.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-bg/values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,327,432,518,623,744,823,901,992,1085,1181,1275,1376,1469,1564,1672,1763,1854,1937,2051,2160,2260,2374,2480,2588,2748,2847", + "endColumns": "114,106,104,85,104,120,78,77,90,92,95,93,100,92,94,107,90,90,82,113,108,99,113,105,107,159,98,82", + "endOffsets": "215,322,427,513,618,739,818,896,987,1080,1176,1270,1371,1464,1559,1667,1758,1849,1932,2046,2155,2255,2369,2475,2583,2743,2842,2925" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-bg/values-bg.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2930", + "endColumns": "100", + "endOffsets": "3026" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-es_values-es.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-es/values-es.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2924", + "endColumns": "100", + "endOffsets": "3020" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-es/values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,2842", + "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", + "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,2919" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-sl_values-sl.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sl/values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,319,427,514,617,736,821,905,997,1091,1187,1281,1377,1471,1567,1667,1759,1851,1935,2043,2152,2252,2365,2472,2576,2756,2853", + "endColumns": "106,106,107,86,102,118,84,83,91,93,95,93,95,93,95,99,91,91,83,107,108,99,112,106,103,179,96,82", + "endOffsets": "207,314,422,509,612,731,816,900,992,1086,1182,1276,1372,1466,1562,1662,1754,1846,1930,2038,2147,2247,2360,2467,2571,2751,2848,2931" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sl/values-sl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-sq_values-sq.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sq/values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,319,431,518,628,751,832,911,1002,1095,1191,1285,1387,1480,1575,1672,1763,1856,1939,2045,2150,2248,2354,2457,2573,2727,2826", + "endColumns": "113,99,111,86,109,122,80,78,90,92,95,93,101,92,94,96,90,92,82,105,104,97,105,102,115,153,98,80", + "endOffsets": "214,314,426,513,623,746,827,906,997,1090,1186,1280,1382,1475,1570,1667,1758,1851,1934,2040,2145,2243,2349,2452,2568,2722,2821,2902" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sq/values-sq.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2907", + "endColumns": "100", + "endOffsets": "3003" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-sv_values-sv.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sv/values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,2784", + "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", + "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,2858" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sv/values-sv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2863", + "endColumns": "100", + "endOffsets": "2959" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-te_values-te.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-te/values-te.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2946", + "endColumns": "100", + "endOffsets": "3042" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-te/values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,328,439,529,634,759,841,923,1014,1107,1203,1297,1398,1491,1586,1681,1772,1863,1947,2060,2168,2267,2378,2480,2597,2763,2864", + "endColumns": "113,108,110,89,104,124,81,81,90,92,95,93,100,92,94,94,90,90,83,112,107,98,110,101,116,165,100,81", + "endOffsets": "214,323,434,524,629,754,836,918,1009,1102,1198,1292,1393,1486,1581,1676,1767,1858,1942,2055,2163,2262,2373,2475,2592,2758,2859,2941" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-cs_values-cs.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-cs/values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,2809", + "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", + "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,2886" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-cs/values-cs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2891", + "endColumns": "100", + "endOffsets": "2987" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-mk_values-mk.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-mk/values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,317,425,511,616,735,818,900,997,1096,1193,1293,1400,1499,1600,1696,1793,1884,1971,2077,2184,2285,2392,2503,2607,2763,2861", + "endColumns": "107,103,107,85,104,118,82,81,96,98,96,99,106,98,100,95,96,90,86,105,106,100,106,110,103,155,97,83", + "endOffsets": "208,312,420,506,611,730,813,895,992,1091,1188,1288,1395,1494,1595,1691,1788,1879,1966,2072,2179,2280,2387,2498,2602,2758,2856,2940" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-mk/values-mk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-it_values-it.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-it/values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,2823", + "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", + "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,2901" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-it/values-it.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2906", + "endColumns": "100", + "endOffsets": "3002" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-v17_values-v17.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v17/values-v17.xml", + "from": { + "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", + "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", + "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", + "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-bs_values-bs.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-bs/values-bs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-bs/values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,333,440,526,630,752,834,915,1006,1099,1195,1289,1390,1483,1578,1677,1768,1859,1945,2048,2153,2251,2356,2469,2572,2745,2842", + "endColumns": "118,108,106,85,103,121,81,80,90,92,95,93,100,92,94,98,90,90,85,102,104,97,104,112,102,172,96,83", + "endOffsets": "219,328,435,521,625,747,829,910,1001,1094,1190,1284,1385,1478,1573,1672,1763,1854,1940,2043,2148,2246,2351,2464,2567,2740,2837,2921" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-hy_values-hy.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hy/values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,309,419,508,614,729,811,892,983,1076,1172,1266,1367,1460,1555,1649,1740,1831,1916,2023,2130,2229,2339,2446,2546,2703,2802", + "endColumns": "102,100,109,88,105,114,81,80,90,92,95,93,100,92,94,93,90,90,84,106,106,98,109,106,99,156,98,81", + "endOffsets": "203,304,414,503,609,724,806,887,978,1071,1167,1261,1362,1455,1550,1644,1735,1826,1911,2018,2125,2224,2334,2441,2541,2698,2797,2879" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hy/values-hy.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2884", + "endColumns": "100", + "endOffsets": "2980" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-as_values-as.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-as/values-as.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2950", + "endColumns": "100", + "endOffsets": "3046" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-as/values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,419,515,617,736,816,896,987,1080,1173,1268,1368,1461,1558,1652,1743,1834,1923,2025,2140,2243,2352,2471,2591,2758,2861", + "endColumns": "107,98,106,95,101,118,79,79,90,92,92,94,99,92,96,93,90,90,88,101,114,102,108,118,119,166,102,88", + "endOffsets": "208,307,414,510,612,731,811,891,982,1075,1168,1263,1363,1456,1553,1647,1738,1829,1918,2020,2135,2238,2347,2466,2586,2753,2856,2945" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-et_values-et.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-et/values-et.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2942", + "endColumns": "100", + "endOffsets": "3038" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-et/values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,329,440,526,628,745,825,903,995,1089,1194,1296,1406,1500,1601,1695,1787,1880,1963,2074,2179,2278,2388,2489,2592,2758,2860", + "endColumns": "116,106,110,85,101,116,79,77,91,93,104,101,109,93,100,93,91,92,82,110,104,98,109,100,102,165,101,81", + "endOffsets": "217,324,435,521,623,740,820,898,990,1084,1189,1291,1401,1495,1596,1690,1782,1875,1958,2069,2174,2273,2383,2484,2587,2753,2855,2937" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-zh-rHK_values-zh-rHK.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,2668", + "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,2741" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2746", + "endColumns": "100", + "endOffsets": "2842" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ta_values-ta.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ta/values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,317,432,521,628,754,832,909,1009,1114,1210,1305,1412,1514,1618,1713,1815,1913,1995,2097,2201,2298,2408,2510,2617,2774,2874", + "endColumns": "113,97,114,88,106,125,77,76,99,104,95,94,106,101,103,94,101,97,81,101,103,96,109,101,106,156,99,79", + "endOffsets": "214,312,427,516,623,749,827,904,1004,1109,1205,1300,1407,1509,1613,1708,1810,1908,1990,2092,2196,2293,2403,2505,2612,2769,2869,2949" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ta/values-ta.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2954", + "endColumns": "100", + "endOffsets": "3050" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-be_values-be.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-be/values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,328,444,530,638,756,835,913,1005,1099,1195,1289,1385,1479,1575,1670,1762,1854,1937,2043,2149,2247,2355,2460,2565,2734,2834", + "endColumns": "119,102,115,85,107,117,78,77,91,93,95,93,95,93,95,94,91,91,82,105,105,97,107,104,104,168,99,80", + "endOffsets": "220,323,439,525,633,751,830,908,1000,1094,1190,1284,1380,1474,1570,1665,1757,1849,1932,2038,2144,2242,2350,2455,2560,2729,2829,2910" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-be/values-be.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-or_values-or.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-or/values-or.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-or/values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,334,441,527,631,751,828,905,996,1089,1186,1281,1382,1475,1570,1666,1757,1847,1929,2039,2144,2250,2361,2464,2582,2745,2847", + "endColumns": "118,109,106,85,103,119,76,76,90,92,96,94,100,92,94,95,90,89,81,109,104,105,110,102,117,162,101,88", + "endOffsets": "219,329,436,522,626,746,823,900,991,1084,1181,1276,1377,1470,1565,1661,1752,1842,1924,2034,2139,2245,2356,2459,2577,2740,2842,2931" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-v26_values-v26.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v26/values-v26.xml", + "from": { + "startLines": "2,3,4,8,12,16", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,130,217,431,657,896", + "endLines": "2,3,7,11,15,16", + "endColumns": "74,86,12,12,12,92", + "endOffsets": "125,212,426,652,891,984" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-si_values-si.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-si/values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,322,429,517,622,738,827,914,1005,1098,1193,1287,1388,1481,1576,1670,1761,1852,1936,2045,2150,2248,2358,2457,2563,2722,2821", + "endColumns": "109,106,106,87,104,115,88,86,90,92,94,93,100,92,94,93,90,90,83,108,104,97,109,98,105,158,98,81", + "endOffsets": "210,317,424,512,617,733,822,909,1000,1093,1188,1282,1383,1476,1571,1665,1756,1847,1931,2040,2145,2243,2353,2452,2558,2717,2816,2898" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-si/values-si.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-da_values-da.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-da/values-da.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2844", + "endColumns": "100", + "endOffsets": "2940" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-da/values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,2765", + "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", + "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,2839" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-v23_values-v23.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v23/values-v23.xml", + "from": { + "startLines": "2,3,4,5,6,19,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", + "endLines": "2,3,4,5,18,31,32,33,34,35,36", + "endColumns": "134,134,74,86,12,12,126,104,114,106,112", + "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/res/values-v23/values-v23.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "4", + "endColumns": "12", + "endOffsets": "200" + }, + "to": { + "startLines": "37", + "startColumns": "4", + "startOffsets": "2646", + "endLines": "39", + "endColumns": "12", + "endOffsets": "2791" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-night-v8_values-night-v8.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-night-v8/values-night-v8.xml", + "from": { + "startLines": "2,3,4,5,6,7,8", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "55,125,209,293,389,491,593", + "endColumns": "69,83,83,95,101,101,93", + "endOffsets": "120,204,288,384,486,588,682" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-v22_values-v22.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v22/values-v22.xml", + "from": { + "startLines": "2,3,4,9", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,553", + "endLines": "2,3,8,13", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,548,896" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-lv_values-lv.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-lv/values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,333,442,528,632,754,836,918,1028,1136,1243,1352,1464,1567,1679,1786,1891,1991,2076,2185,2297,2396,2507,2616,2721,2895,2994", + "endColumns": "119,107,108,85,103,121,81,81,109,107,106,108,111,102,111,106,104,99,84,108,111,98,110,108,104,173,98,81", + "endOffsets": "220,328,437,523,627,749,831,913,1023,1131,1238,1347,1459,1562,1674,1781,1886,1986,2071,2180,2292,2391,2502,2611,2716,2890,2989,3071" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-lv/values-lv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "3076", + "endColumns": "100", + "endOffsets": "3172" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-tr_values-tr.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-tr/values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,2786", + "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", + "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,2860" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-tr/values-tr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-port_values-port.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-port/values-port.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "55", + "endOffsets": "106" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ml_values-ml.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ml/values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,342,457,550,655,787,864,940,1031,1124,1226,1320,1421,1515,1610,1709,1800,1891,1973,2084,2190,2288,2402,2502,2613,2772,2873", + "endColumns": "118,117,114,92,104,131,76,75,90,92,101,93,100,93,94,98,90,90,81,110,105,97,113,99,110,158,100,81", + "endOffsets": "219,337,452,545,650,782,859,935,1026,1119,1221,1315,1416,1510,1605,1704,1795,1886,1968,2079,2185,2283,2397,2497,2608,2767,2868,2950" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ml/values-ml.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2955", + "endColumns": "100", + "endOffsets": "3051" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ca_values-ca.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ca/values-ca.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ca/values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,329,436,519,627,753,837,918,1009,1102,1196,1291,1390,1483,1576,1670,1761,1852,1935,2046,2155,2253,2363,2467,2575,2735,2834", + "endColumns": "117,105,106,82,107,125,83,80,90,92,93,94,98,92,92,93,90,90,82,110,108,97,109,103,107,159,98,80", + "endOffsets": "218,324,431,514,622,748,832,913,1004,1097,1191,1286,1385,1478,1571,1665,1756,1847,1930,2041,2150,2248,2358,2462,2570,2730,2829,2910" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-sr_values-sr.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sr/values-sr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2905", + "endColumns": "100", + "endOffsets": "3001" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sr/values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,317,423,509,613,731,812,892,983,1076,1172,1266,1367,1460,1555,1660,1751,1842,1930,2035,2143,2244,2348,2456,2557,2724,2821", + "endColumns": "108,102,105,85,103,117,80,79,90,92,95,93,100,92,94,104,90,90,87,104,107,100,103,107,100,166,96,83", + "endOffsets": "209,312,418,504,608,726,807,887,978,1071,1167,1261,1362,1455,1550,1655,1746,1837,1925,2030,2138,2239,2343,2451,2552,2719,2816,2900" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-gu_values-gu.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-gu/values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,425,512,613,736,813,891,982,1075,1174,1268,1369,1462,1557,1654,1745,1836,1916,2022,2124,2221,2330,2429,2539,2699,2802", + "endColumns": "108,103,106,86,100,122,76,77,90,92,98,93,100,92,94,96,90,90,79,105,101,96,108,98,109,159,102,79", + "endOffsets": "209,313,420,507,608,731,808,886,977,1070,1169,1263,1364,1457,1552,1649,1740,1831,1911,2017,2119,2216,2325,2424,2534,2694,2797,2877" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-gu/values-gu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-hu_values-hu.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hu/values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,2878", + "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", + "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,2956" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hu/values-hu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2961", + "endColumns": "100", + "endOffsets": "3057" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-sw_values-sw.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sw/values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,306,414,504,609,726,808,891,982,1075,1169,1263,1364,1457,1552,1647,1738,1830,1912,2013,2122,2221,2328,2437,2542,2704,2801", + "endColumns": "102,97,107,89,104,116,81,82,90,92,93,93,100,92,94,94,90,91,81,100,108,98,106,108,104,161,96,81", + "endOffsets": "203,301,409,499,604,721,803,886,977,1070,1164,1258,1359,1452,1547,1642,1733,1825,1907,2008,2117,2216,2323,2432,2537,2699,2796,2878" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sw/values-sw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-v16_values-v16.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-v16/values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "65", + "endOffsets": "116" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v16/values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "12", + "endOffsets": "223" + }, + "to": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "121", + "endLines": "6", + "endColumns": "12", + "endOffsets": "289" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-vi_values-vi.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-vi/values-vi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2901", + "endColumns": "100", + "endOffsets": "2997" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-vi/values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,2817", + "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", + "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,2896" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-xlarge-v4_values-xlarge-v4.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-xlarge-v4/values-xlarge-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,126,197,267,337,405", + "endColumns": "70,70,69,69,67,67", + "endOffsets": "121,192,262,332,400,468" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-pa_values-pa.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pa/values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,410,496,596,709,786,862,953,1046,1142,1236,1337,1430,1525,1619,1710,1801,1880,1981,2085,2182,2291,2390,2500,2659,2759", + "endColumns": "102,96,104,85,99,112,76,75,90,92,95,93,100,92,94,93,90,90,78,100,103,96,108,98,109,158,99,79", + "endOffsets": "203,300,405,491,591,704,781,857,948,1041,1137,1231,1332,1425,1520,1614,1705,1796,1875,1976,2080,2177,2286,2385,2495,2654,2754,2834" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pa/values-pa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2839", + "endColumns": "100", + "endOffsets": "2935" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-fr-rCA_values-fr-rCA.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,529,645,775,858,938,1029,1122,1221,1316,1417,1510,1603,1698,1789,1880,1976,2086,2198,2301,2412,2519,2621,2780,2879", + "endColumns": "110,114,110,86,115,129,82,79,90,92,98,94,100,92,92,94,90,90,95,109,111,102,110,106,101,158,98,85", + "endOffsets": "211,326,437,524,640,770,853,933,1024,1117,1216,1311,1412,1505,1598,1693,1784,1875,1971,2081,2193,2296,2407,2514,2616,2775,2874,2960" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2965", + "endColumns": "100", + "endOffsets": "3061" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-de_values-de.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-de/values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,2843", + "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", + "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,2920" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-de/values-de.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2925", + "endColumns": "100", + "endOffsets": "3021" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-large-v4_values-large-v4.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-large-v4/values-large-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10", + "startColumns": "4,4,4,4,4,4,4,4,4", + "startOffsets": "55,114,185,256,326,396,464,532,636", + "endColumns": "58,70,70,69,69,67,67,103,115", + "endOffsets": "109,180,251,321,391,459,527,631,747" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-large-v4/values-large-v4.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,177", + "endColumns": "121,133", + "endOffsets": "172,306" + }, + "to": { + "startLines": "11,12", + "startColumns": "4,4", + "startOffsets": "752,874", + "endColumns": "121,133", + "endOffsets": "869,1003" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-pl_values-pl.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pl/values-pl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2909", + "endColumns": "100", + "endOffsets": "3005" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pl/values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,2827", + "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", + "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,2904" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-uk_values-uk.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-uk/values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,423,509,617,735,814,894,985,1078,1174,1268,1369,1462,1557,1652,1743,1834,1915,2021,2128,2226,2334,2440,2549,2719,2819", + "endColumns": "109,101,105,85,107,117,78,79,90,92,95,93,100,92,94,94,90,90,80,105,106,97,107,105,108,169,99,80", + "endOffsets": "210,312,418,504,612,730,809,889,980,1073,1169,1263,1364,1457,1552,1647,1738,1829,1910,2016,2123,2221,2329,2435,2544,2714,2814,2895" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-uk/values-uk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2900", + "endColumns": "100", + "endOffsets": "2996" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-v14_values-v14.arsc.flat", + "map": [ + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values-v14/styles.xml", + "from": { + "startLines": "6", + "startColumns": "4", + "startOffsets": "219", + "endLines": "8", + "endColumns": "12", + "endOffsets": "354" + }, + "to": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "4", + "endColumns": "12", + "endOffsets": "190" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-mr_values-mr.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-mr/values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,322,429,519,620,735,812,890,981,1074,1168,1265,1366,1459,1554,1651,1742,1833,1913,2025,2127,2223,2332,2433,2545,2702,2807", + "endColumns": "110,105,106,89,100,114,76,77,90,92,93,96,100,92,94,96,90,90,79,111,101,95,108,100,111,156,104,79", + "endOffsets": "211,317,424,514,615,730,807,885,976,1069,1163,1260,1361,1454,1549,1646,1737,1828,1908,2020,2122,2218,2327,2428,2540,2697,2802,2882" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-mr/values-mr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-watch-v21_values-watch-v21.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-watch-v21/values-watch-v21.xml", + "from": { + "startLines": "2,6,10", + "startColumns": "4,4,4", + "startOffsets": "55,271,499", + "endLines": "5,9,13", + "endColumns": "12,12,12", + "endOffsets": "266,494,724" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-eu_values-eu.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-eu/values-eu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2938", + "endColumns": "100", + "endOffsets": "3034" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-eu/values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,312,422,508,614,738,825,909,1001,1095,1192,1286,1388,1482,1578,1675,1767,1860,1942,2051,2161,2260,2369,2475,2586,2757,2856", + "endColumns": "108,97,109,85,105,123,86,83,91,93,96,93,101,93,95,96,91,92,81,108,109,98,108,105,110,170,98,81", + "endOffsets": "209,307,417,503,609,733,820,904,996,1090,1187,1281,1383,1477,1573,1670,1762,1855,1937,2046,2156,2255,2364,2470,2581,2752,2851,2933" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-mn_values-mn.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-mn/values-mn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2876", + "endColumns": "100", + "endOffsets": "2972" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-mn/values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,218,318,431,518,624,736,818,900,991,1084,1180,1276,1374,1467,1562,1654,1745,1835,1917,2026,2130,2227,2335,2436,2539,2698,2795", + "endColumns": "112,99,112,86,105,111,81,81,90,92,95,95,97,92,94,91,90,89,81,108,103,96,107,100,102,158,96,80", + "endOffsets": "213,313,426,513,619,731,813,895,986,1079,1175,1271,1369,1462,1557,1649,1740,1830,1912,2021,2125,2222,2330,2431,2534,2693,2790,2871" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-nl_values-nl.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-nl/values-nl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2921", + "endColumns": "100", + "endOffsets": "3017" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-nl/values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,2839", + "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", + "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,2916" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-gl_values-gl.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-gl/values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,329,437,522,624,750,834,915,1007,1101,1199,1293,1394,1488,1584,1679,1771,1863,1945,2052,2161,2260,2368,2472,2579,2738,2838", + "endColumns": "111,111,107,84,101,125,83,80,91,93,97,93,100,93,95,94,91,91,81,106,108,98,107,103,106,158,99,81", + "endOffsets": "212,324,432,517,619,745,829,910,1002,1096,1194,1288,1389,1483,1579,1674,1766,1858,1940,2047,2156,2255,2363,2467,2574,2733,2833,2915" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-gl/values-gl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-fa_values-fa.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fa/values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,318,429,513,616,731,810,888,981,1076,1172,1266,1369,1464,1561,1660,1753,1843,1924,2036,2139,2237,2347,2451,2560,2721,2822", + "endColumns": "109,102,110,83,102,114,78,77,92,94,95,93,102,94,96,98,92,89,80,111,102,97,109,103,108,160,100,80", + "endOffsets": "210,313,424,508,611,726,805,883,976,1071,1167,1261,1364,1459,1556,1655,1748,1838,1919,2031,2134,2232,2342,2446,2555,2716,2817,2898" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fa/values-fa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-sw600dp-v13_values-sw600dp-v13.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,10,11,12", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,185,256,328,386,444,553,617,680", + "endLines": "2,3,4,5,6,7,9,10,11,15", + "endColumns": "59,69,70,71,57,57,10,63,62,10", + "endOffsets": "110,180,251,323,381,439,548,612,675,847" + }, + "to": { + "startLines": "10,11,12,13,14,15,16,18,19,20", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "611,671,741,812,884,942,1000,1109,1173,1236", + "endLines": "10,11,12,13,14,15,17,18,19,23", + "endColumns": "59,69,70,71,57,57,10,63,62,10", + "endOffsets": "666,736,807,879,937,995,1104,1168,1231,1403" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,124,193,263,337,413,472,543", + "endColumns": "68,68,69,73,75,58,70,67", + "endOffsets": "119,188,258,332,408,467,538,606" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-lt_values-lt.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-lt/values-lt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2978", + "endColumns": "100", + "endOffsets": "3074" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-lt/values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,322,435,522,631,752,834,915,1009,1105,1203,1299,1403,1499,1597,1700,1794,1888,1973,2082,2191,2291,2401,2505,2618,2794,2895", + "endColumns": "115,100,112,86,108,120,81,80,93,95,97,95,103,95,97,102,93,93,84,108,108,99,109,103,112,175,100,82", + "endOffsets": "216,317,430,517,626,747,829,910,1004,1100,1198,1294,1398,1494,1592,1695,1789,1883,1968,2077,2186,2286,2396,2500,2613,2789,2890,2973" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ru_values-ru.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ru/values-ru.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2913", + "endColumns": "100", + "endOffsets": "3009" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ru/values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,2832", + "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", + "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,2908" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-pt-rBR_values-pt-rBR.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-af_values-af.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-af/values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,415,500,603,721,797,874,965,1058,1154,1248,1348,1441,1536,1635,1730,1824,1905,2012,2115,2212,2320,2422,2524,2678,2776", + "endColumns": "103,99,105,84,102,117,75,76,90,92,95,93,99,92,94,98,94,93,80,106,102,96,107,101,101,153,97,79", + "endOffsets": "204,304,410,495,598,716,792,869,960,1053,1149,1243,1343,1436,1531,1630,1725,1819,1900,2007,2110,2207,2315,2417,2519,2673,2771,2851" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-af/values-af.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2856", + "endColumns": "100", + "endOffsets": "2952" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-az_values-az.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-az/values-az.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-az/values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,424,512,619,733,814,893,984,1077,1172,1271,1372,1465,1560,1655,1746,1838,1923,2030,2137,2237,2346,2450,2560,2718,2820", + "endColumns": "107,98,111,87,106,113,80,78,90,92,94,98,100,92,94,94,90,91,84,106,106,99,108,103,109,157,101,82", + "endOffsets": "208,307,419,507,614,728,809,888,979,1072,1167,1266,1367,1460,1555,1650,1741,1833,1918,2025,2132,2232,2341,2445,2555,2713,2815,2898" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-th_values-th.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-th/values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,2764", + "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", + "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,2840" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-th/values-th.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2845", + "endColumns": "100", + "endOffsets": "2941" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-es-rUS_values-es-rUS.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,334,442,527,628,751,836,918,1009,1102,1198,1292,1392,1485,1584,1680,1771,1862,1944,2056,2156,2257,2365,2472,2579,2738,2838", + "endColumns": "119,108,107,84,100,122,84,81,90,92,95,93,99,92,98,95,90,90,81,111,99,100,107,106,106,158,99,81", + "endOffsets": "220,329,437,522,623,746,831,913,1004,1097,1193,1287,1387,1480,1579,1675,1766,1857,1939,2051,2151,2252,2360,2467,2574,2733,2833,2915" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-nb_values-nb.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-nb/values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,2747", + "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", + "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,2821" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-nb/values-nb.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2826", + "endColumns": "100", + "endOffsets": "2922" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-el_values-el.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-el/values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,2879", + "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", + "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,2959" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-el/values-el.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2964", + "endColumns": "100", + "endOffsets": "3060" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-en-rIN_values-en-rIN.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-watch-v20_values-watch-v20.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-watch-v20/values-watch-v20.xml", + "from": { + "startLines": "2,5,8", + "startColumns": "4,4,4", + "startOffsets": "55,214,385", + "endLines": "4,7,10", + "endColumns": "12,12,12", + "endOffsets": "209,380,553" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-km_values-km.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-km/values-km.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-km/values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,308,420,507,611,729,806,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1905,2009,2114,2214,2324,2431,2539,2701,2799", + "endColumns": "102,99,111,86,103,117,76,76,90,92,95,93,100,92,94,93,90,90,82,103,104,99,109,106,107,161,97,82", + "endOffsets": "203,303,415,502,606,724,801,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1900,2004,2109,2209,2319,2426,2534,2696,2794,2877" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-bn_values-bn.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-bn/values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,326,432,526,631,760,838,916,1007,1100,1195,1289,1390,1483,1578,1672,1763,1854,1941,2051,2159,2258,2368,2474,2587,2752,2857", + "endColumns": "108,111,105,93,104,128,77,77,90,92,94,93,100,92,94,93,90,90,86,109,107,98,109,105,112,164,104,81", + "endOffsets": "209,321,427,521,626,755,833,911,1002,1095,1190,1284,1385,1478,1573,1667,1758,1849,1936,2046,2154,2253,2363,2469,2582,2747,2852,2934" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-bn/values-bn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2939", + "endColumns": "100", + "endOffsets": "3035" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-v18_values-v18.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v18/values-v18.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "48", + "endOffsets": "99" + } + } + ] + }, + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/values-ja_values-ja.arsc.flat", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ja/values-ja.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2771", + "endColumns": "100", + "endOffsets": "2867" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ja/values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,2693", + "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", + "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,2766" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-af.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-af.json new file mode 100644 index 0000000000000000000000000000000000000000..b0fe4bb7732f0ce50f0a4f717054686fb3866b0c --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-af.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af/values-af.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-af/values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,415,500,603,721,797,874,965,1058,1154,1248,1348,1441,1536,1635,1730,1824,1905,2012,2115,2212,2320,2422,2524,2678,2776", + "endColumns": "103,99,105,84,102,117,75,76,90,92,95,93,99,92,94,98,94,93,80,106,102,96,107,101,101,153,97,79", + "endOffsets": "204,304,410,495,598,716,792,869,960,1053,1149,1243,1343,1436,1531,1630,1725,1819,1900,2007,2110,2207,2315,2417,2519,2673,2771,2851" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-af/values-af.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2856", + "endColumns": "100", + "endOffsets": "2952" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-am.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-am.json new file mode 100644 index 0000000000000000000000000000000000000000..ee7081515db27a2323f2d08208043be7b108f83c --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-am.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am/values-am.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-am/values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,207,306,412,498,601,714,792,870,961,1054,1147,1241,1342,1435,1530,1624,1715,1805,1884,1984,2084,2180,2283,2382,2489,2642,2738", + "endColumns": "101,98,105,85,102,112,77,77,90,92,92,93,100,92,94,93,90,89,78,99,99,95,102,98,106,152,95,78", + "endOffsets": "202,301,407,493,596,709,787,865,956,1049,1142,1236,1337,1430,1525,1619,1710,1800,1879,1979,2079,2175,2278,2377,2484,2637,2733,2812" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-am/values-am.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2817", + "endColumns": "100", + "endOffsets": "2913" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ar.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ar.json new file mode 100644 index 0000000000000000000000000000000000000000..8d1efa404850d727a44537f2660b72069f2f4c21 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ar.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ar/values-ar.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ar/values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,326,435,517,618,732,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1832,1911,2016,2117,2213,2321,2424,2527,2682,2779", + "endColumns": "116,103,108,81,100,113,78,78,90,92,95,93,100,92,94,93,90,93,78,104,100,95,107,102,102,154,96,80", + "endOffsets": "217,321,430,512,613,727,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1827,1906,2011,2112,2208,2316,2419,2522,2677,2774,2855" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ar/values-ar.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2860", + "endColumns": "100", + "endOffsets": "2956" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-as.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-as.json new file mode 100644 index 0000000000000000000000000000000000000000..4ad96df3ea7f58f0bf82090c2efe56d3c82d8bcf --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-as.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-as/values-as.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-as/values-as.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2950", + "endColumns": "100", + "endOffsets": "3046" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-as/values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,419,515,617,736,816,896,987,1080,1173,1268,1368,1461,1558,1652,1743,1834,1923,2025,2140,2243,2352,2471,2591,2758,2861", + "endColumns": "107,98,106,95,101,118,79,79,90,92,92,94,99,92,96,93,90,90,88,101,114,102,108,118,119,166,102,88", + "endOffsets": "208,307,414,510,612,731,811,891,982,1075,1168,1263,1363,1456,1553,1647,1738,1829,1918,2020,2135,2238,2347,2466,2586,2753,2856,2945" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-az.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-az.json new file mode 100644 index 0000000000000000000000000000000000000000..fc3e06013324a6969c54da1ddaa7f0ade83edd4b --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-az.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-az/values-az.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-az/values-az.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-az/values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,312,424,512,619,733,814,893,984,1077,1172,1271,1372,1465,1560,1655,1746,1838,1923,2030,2137,2237,2346,2450,2560,2718,2820", + "endColumns": "107,98,111,87,106,113,80,78,90,92,94,98,100,92,94,94,90,91,84,106,106,99,108,103,109,157,101,82", + "endOffsets": "208,307,419,507,614,728,809,888,979,1072,1167,1266,1367,1460,1555,1650,1741,1833,1918,2025,2132,2232,2341,2445,2555,2713,2815,2898" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-b+sr+Latn.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-b+sr+Latn.json new file mode 100644 index 0000000000000000000000000000000000000000..eabce260f5e4dc727a03a975d4e94b972ea2f2d5 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-b+sr+Latn.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2912", + "endColumns": "100", + "endOffsets": "3008" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-b+sr+Latn/values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,424,510,614,732,814,895,986,1079,1175,1269,1370,1463,1558,1663,1754,1845,1933,2039,2147,2248,2353,2461,2562,2731,2828", + "endColumns": "108,103,105,85,103,117,81,80,90,92,95,93,100,92,94,104,90,90,87,105,107,100,104,107,100,168,96,83", + "endOffsets": "209,313,419,505,609,727,809,890,981,1074,1170,1264,1365,1458,1553,1658,1749,1840,1928,2034,2142,2243,2348,2456,2557,2726,2823,2907" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-be.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-be.json new file mode 100644 index 0000000000000000000000000000000000000000..1fa09d7c71e40b5a17a7bae8a376723c51b6807e --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-be.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-be/values-be.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-be/values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,328,444,530,638,756,835,913,1005,1099,1195,1289,1385,1479,1575,1670,1762,1854,1937,2043,2149,2247,2355,2460,2565,2734,2834", + "endColumns": "119,102,115,85,107,117,78,77,91,93,95,93,95,93,95,94,91,91,82,105,105,97,107,104,104,168,99,80", + "endOffsets": "220,323,439,525,633,751,830,908,1000,1094,1190,1284,1380,1474,1570,1665,1757,1849,1932,2038,2144,2242,2350,2455,2560,2729,2829,2910" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-be/values-be.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-bg.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-bg.json new file mode 100644 index 0000000000000000000000000000000000000000..d2866cc4074e9a033ca7ca3f2c66403487851ad9 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-bg.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bg/values-bg.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-bg/values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,327,432,518,623,744,823,901,992,1085,1181,1275,1376,1469,1564,1672,1763,1854,1937,2051,2160,2260,2374,2480,2588,2748,2847", + "endColumns": "114,106,104,85,104,120,78,77,90,92,95,93,100,92,94,107,90,90,82,113,108,99,113,105,107,159,98,82", + "endOffsets": "215,322,427,513,618,739,818,896,987,1080,1176,1270,1371,1464,1559,1667,1758,1849,1932,2046,2155,2255,2369,2475,2583,2743,2842,2925" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-bg/values-bg.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2930", + "endColumns": "100", + "endOffsets": "3026" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-bn.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-bn.json new file mode 100644 index 0000000000000000000000000000000000000000..410a26e068ea723a3ce5f1dca8dcd6bd9faa956b --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-bn.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bn/values-bn.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-bn/values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,326,432,526,631,760,838,916,1007,1100,1195,1289,1390,1483,1578,1672,1763,1854,1941,2051,2159,2258,2368,2474,2587,2752,2857", + "endColumns": "108,111,105,93,104,128,77,77,90,92,94,93,100,92,94,93,90,90,86,109,107,98,109,105,112,164,104,81", + "endOffsets": "209,321,427,521,626,755,833,911,1002,1095,1190,1284,1385,1478,1573,1667,1758,1849,1936,2046,2154,2253,2363,2469,2582,2747,2852,2934" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-bn/values-bn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2939", + "endColumns": "100", + "endOffsets": "3035" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-bs.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-bs.json new file mode 100644 index 0000000000000000000000000000000000000000..dad130e8746b48ee12c4847f9e27add86ad47b62 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-bs.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bs/values-bs.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-bs/values-bs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-bs/values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,333,440,526,630,752,834,915,1006,1099,1195,1289,1390,1483,1578,1677,1768,1859,1945,2048,2153,2251,2356,2469,2572,2745,2842", + "endColumns": "118,108,106,85,103,121,81,80,90,92,95,93,100,92,94,98,90,90,85,102,104,97,104,112,102,172,96,83", + "endOffsets": "219,328,435,521,625,747,829,910,1001,1094,1190,1284,1385,1478,1573,1672,1763,1854,1940,2043,2148,2246,2351,2464,2567,2740,2837,2921" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ca.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ca.json new file mode 100644 index 0000000000000000000000000000000000000000..51aed1bc7f46090c1241029046ae4d8dfe7001f8 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ca.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ca/values-ca.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ca/values-ca.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2915", + "endColumns": "100", + "endOffsets": "3011" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ca/values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,329,436,519,627,753,837,918,1009,1102,1196,1291,1390,1483,1576,1670,1761,1852,1935,2046,2155,2253,2363,2467,2575,2735,2834", + "endColumns": "117,105,106,82,107,125,83,80,90,92,93,94,98,92,92,93,90,90,82,110,108,97,109,103,107,159,98,80", + "endOffsets": "218,324,431,514,622,748,832,913,1004,1097,1191,1286,1385,1478,1571,1665,1756,1847,1930,2041,2150,2248,2358,2462,2570,2730,2829,2910" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-cs.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-cs.json new file mode 100644 index 0000000000000000000000000000000000000000..e9d326301cacc0cd4a0beb2af39cd5286707cdfa --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-cs.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-cs/values-cs.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-cs/values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,314,423,509,614,731,812,893,984,1077,1173,1267,1362,1455,1550,1647,1738,1829,1913,2017,2126,2225,2331,2441,2548,2711,2809", + "endColumns": "106,101,108,85,104,116,80,80,90,92,95,93,94,92,94,96,90,90,83,103,108,98,105,109,106,162,97,81", + "endOffsets": "207,309,418,504,609,726,807,888,979,1072,1168,1262,1357,1450,1545,1642,1733,1824,1908,2012,2121,2220,2326,2436,2543,2706,2804,2886" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-cs/values-cs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2891", + "endColumns": "100", + "endOffsets": "2987" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-da.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-da.json new file mode 100644 index 0000000000000000000000000000000000000000..c75964ac5ef8165e4a13a25c2b8cf686431dadf7 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-da.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-da/values-da.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-da/values-da.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2844", + "endColumns": "100", + "endOffsets": "2940" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-da/values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,307,419,502,602,715,792,869,960,1053,1149,1243,1338,1431,1526,1624,1715,1806,1885,1994,2102,2198,2312,2414,2515,2668,2765", + "endColumns": "102,98,111,82,99,112,76,76,90,92,95,93,94,92,94,97,90,90,78,108,107,95,113,101,100,152,96,78", + "endOffsets": "203,302,414,497,597,710,787,864,955,1048,1144,1238,1333,1426,1521,1619,1710,1801,1880,1989,2097,2193,2307,2409,2510,2663,2760,2839" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-de.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-de.json new file mode 100644 index 0000000000000000000000000000000000000000..eebbe2b2e1ff0d286334ec27e8e0b4241b007f9f --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-de.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-de/values-de.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-de/values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,420,506,611,726,803,879,971,1065,1162,1263,1371,1471,1575,1675,1773,1870,1952,2063,2166,2265,2376,2478,2585,2741,2843", + "endColumns": "104,97,111,85,104,114,76,75,91,93,96,100,107,99,103,99,97,96,81,110,102,98,110,101,106,155,101,81", + "endOffsets": "205,303,415,501,606,721,798,874,966,1060,1157,1258,1366,1466,1570,1670,1768,1865,1947,2058,2161,2260,2371,2473,2580,2736,2838,2920" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-de/values-de.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2925", + "endColumns": "100", + "endOffsets": "3021" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-el.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-el.json new file mode 100644 index 0000000000000000000000000000000000000000..b7908f09e9d152ad0c239e4dfde6a7f3c758b277 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-el.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-el/values-el.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-el/values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,334,451,536,641,767,855,941,1032,1125,1221,1315,1416,1509,1604,1701,1792,1883,1968,2079,2189,2291,2402,2511,2619,2779,2879", + "endColumns": "117,110,116,84,104,125,87,85,90,92,95,93,100,92,94,96,90,90,84,110,109,101,110,108,107,159,99,84", + "endOffsets": "218,329,446,531,636,762,850,936,1027,1120,1216,1310,1411,1504,1599,1696,1787,1878,1963,2074,2184,2286,2397,2506,2614,2774,2874,2959" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-el/values-el.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2964", + "endColumns": "100", + "endOffsets": "3060" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rAU.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rAU.json new file mode 100644 index 0000000000000000000000000000000000000000..ec164954f68b8cc834606a0ec3446b7a43c5f78f --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rAU.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rAU/values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rCA.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rCA.json new file mode 100644 index 0000000000000000000000000000000000000000..32d8ce8572f1951351394fa34146e5d4c90b1210 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rCA.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rCA/values-en-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rGB.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rGB.json new file mode 100644 index 0000000000000000000000000000000000000000..1c09338cfaf6fea3cdc04dc732989e65f69f9a47 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rGB.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rGB/values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rIN.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rIN.json new file mode 100644 index 0000000000000000000000000000000000000000..5dce3ca2221e492b2658b345f77e9a571a56524f --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rIN.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2846", + "endColumns": "100", + "endOffsets": "2942" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rIN/values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,309,417,501,601,716,793,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1890,1993,2097,2196,2301,2404,2508,2664,2764", + "endColumns": "103,99,107,83,99,114,76,75,90,92,95,93,100,92,94,93,90,90,81,102,103,98,104,102,103,155,99,81", + "endOffsets": "204,304,412,496,596,711,788,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1885,1988,2092,2191,2296,2399,2503,2659,2759,2841" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rXC.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rXC.json new file mode 100644 index 0000000000000000000000000000000000000000..0976a0bfe697af8dfdd14e2b2409691637356795 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-en-rXC.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,310,510,719,904,1106,1321,1494,1671,1862,2055,2253,2449,2652,2847,3044,3239,3432,3623,3807,4011,4216,4417,4624,4826,5031,5303,5503", + "endColumns": "204,199,208,184,201,214,172,176,190,192,197,195,202,194,196,194,192,190,183,203,204,200,206,201,204,271,199,178", + "endOffsets": "305,505,714,899,1101,1316,1489,1666,1857,2050,2248,2444,2647,2842,3039,3234,3427,3618,3802,4006,4211,4412,4619,4821,5026,5298,5498,5677" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-en-rXC/values-en-rXC.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "202", + "endOffsets": "253" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "5682", + "endColumns": "202", + "endOffsets": "5880" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-es-rUS.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-es-rUS.json new file mode 100644 index 0000000000000000000000000000000000000000..c6f4ba47c433b464d97ef3ec263390176190ad7e --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-es-rUS.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-es-rUS/values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,334,442,527,628,751,836,918,1009,1102,1198,1292,1392,1485,1584,1680,1771,1862,1944,2056,2156,2257,2365,2472,2579,2738,2838", + "endColumns": "119,108,107,84,100,122,84,81,90,92,95,93,99,92,98,95,90,90,81,111,99,100,107,106,106,158,99,81", + "endOffsets": "220,329,437,522,623,746,831,913,1004,1097,1193,1287,1387,1480,1579,1675,1766,1857,1939,2051,2151,2252,2360,2467,2574,2733,2833,2915" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-es.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-es.json new file mode 100644 index 0000000000000000000000000000000000000000..b202fc1056965d7c05646a3d604fdf428b856a4d --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-es.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es/values-es.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-es/values-es.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2924", + "endColumns": "100", + "endOffsets": "3020" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-es/values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,335,443,528,629,757,842,924,1016,1110,1208,1302,1403,1497,1593,1689,1781,1873,1955,2062,2162,2261,2369,2476,2583,2742,2842", + "endColumns": "116,112,107,84,100,127,84,81,91,93,97,93,100,93,95,95,91,91,81,106,99,98,107,106,106,158,99,81", + "endOffsets": "217,330,438,523,624,752,837,919,1011,1105,1203,1297,1398,1492,1588,1684,1776,1868,1950,2057,2157,2256,2364,2471,2578,2737,2837,2919" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-et.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-et.json new file mode 100644 index 0000000000000000000000000000000000000000..35e17d88036facd1f2d6c6462b0807a4b8d8f162 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-et.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-et/values-et.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-et/values-et.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2942", + "endColumns": "100", + "endOffsets": "3038" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-et/values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,222,329,440,526,628,745,825,903,995,1089,1194,1296,1406,1500,1601,1695,1787,1880,1963,2074,2179,2278,2388,2489,2592,2758,2860", + "endColumns": "116,106,110,85,101,116,79,77,91,93,104,101,109,93,100,93,91,92,82,110,104,98,109,100,102,165,101,81", + "endOffsets": "217,324,435,521,623,740,820,898,990,1084,1189,1291,1401,1495,1596,1690,1782,1875,1958,2069,2174,2273,2383,2484,2587,2753,2855,2937" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-eu.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-eu.json new file mode 100644 index 0000000000000000000000000000000000000000..ec9a42e4c6a724fdb20c45dd2e912ae7f6ea6e8f --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-eu.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-eu/values-eu.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-eu/values-eu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2938", + "endColumns": "100", + "endOffsets": "3034" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-eu/values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,312,422,508,614,738,825,909,1001,1095,1192,1286,1388,1482,1578,1675,1767,1860,1942,2051,2161,2260,2369,2475,2586,2757,2856", + "endColumns": "108,97,109,85,105,123,86,83,91,93,96,93,101,93,95,96,91,92,81,108,109,98,108,105,110,170,98,81", + "endOffsets": "209,307,417,503,609,733,820,904,996,1090,1187,1281,1383,1477,1573,1670,1762,1855,1937,2046,2156,2255,2364,2470,2581,2752,2851,2933" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-fa.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-fa.json new file mode 100644 index 0000000000000000000000000000000000000000..4c0a0ed1d1e9a031393584aced0e60ee8a293c04 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-fa.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fa/values-fa.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fa/values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,318,429,513,616,731,810,888,981,1076,1172,1266,1369,1464,1561,1660,1753,1843,1924,2036,2139,2237,2347,2451,2560,2721,2822", + "endColumns": "109,102,110,83,102,114,78,77,92,94,95,93,102,94,96,98,92,89,80,111,102,97,109,103,108,160,100,80", + "endOffsets": "210,313,424,508,611,726,805,883,976,1071,1167,1261,1364,1459,1556,1655,1748,1838,1919,2031,2134,2232,2342,2446,2555,2716,2817,2898" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fa/values-fa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-fi.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-fi.json new file mode 100644 index 0000000000000000000000000000000000000000..6a0d1681fe187a08b3c90a864fdbbac56332c228 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-fi.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fi/values-fi.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fi/values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,313,414,500,605,723,810,892,983,1076,1172,1266,1361,1454,1550,1649,1740,1834,1914,2021,2124,2221,2327,2426,2530,2693,2792", + "endColumns": "107,99,100,85,104,117,86,81,90,92,95,93,94,92,95,98,90,93,79,106,102,96,105,98,103,162,98,79", + "endOffsets": "208,308,409,495,600,718,805,887,978,1071,1167,1261,1356,1449,1545,1644,1735,1829,1909,2016,2119,2216,2322,2421,2525,2688,2787,2867" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fi/values-fi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2872", + "endColumns": "100", + "endOffsets": "2968" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-fr-rCA.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-fr-rCA.json new file mode 100644 index 0000000000000000000000000000000000000000..8e516bb818d83ed5c5774257d2cf2250e1253766 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-fr-rCA.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,529,645,775,858,938,1029,1122,1221,1316,1417,1510,1603,1698,1789,1880,1976,2086,2198,2301,2412,2519,2621,2780,2879", + "endColumns": "110,114,110,86,115,129,82,79,90,92,98,94,100,92,92,94,90,90,95,109,111,102,110,106,101,158,98,85", + "endOffsets": "211,326,437,524,640,770,853,933,1024,1117,1216,1311,1412,1505,1598,1693,1784,1875,1971,2081,2193,2296,2407,2514,2616,2775,2874,2960" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fr-rCA/values-fr-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2965", + "endColumns": "100", + "endOffsets": "3061" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-fr.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-fr.json new file mode 100644 index 0000000000000000000000000000000000000000..3ed10af887076ed9295e27f0050e33da35ca91d7 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-fr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr/values-fr.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-fr/values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,331,442,524,630,760,843,923,1014,1107,1206,1301,1402,1495,1588,1683,1774,1865,1951,2061,2173,2276,2387,2494,2601,2760,2859", + "endColumns": "110,114,110,81,105,129,82,79,90,92,98,94,100,92,92,94,90,90,85,109,111,102,110,106,106,158,98,85", + "endOffsets": "211,326,437,519,625,755,838,918,1009,1102,1201,1296,1397,1490,1583,1678,1769,1860,1946,2056,2168,2271,2382,2489,2596,2755,2854,2940" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-fr/values-fr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-gl.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-gl.json new file mode 100644 index 0000000000000000000000000000000000000000..295e588ec6b611c443c5821ed7bc90eac0e01e58 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-gl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gl/values-gl.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-gl/values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,329,437,522,624,750,834,915,1007,1101,1199,1293,1394,1488,1584,1679,1771,1863,1945,2052,2161,2260,2368,2472,2579,2738,2838", + "endColumns": "111,111,107,84,101,125,83,80,91,93,97,93,100,93,95,94,91,91,81,106,108,98,107,103,106,158,99,81", + "endOffsets": "212,324,432,517,619,745,829,910,1002,1096,1194,1288,1389,1483,1579,1674,1766,1858,1940,2047,2156,2255,2363,2467,2574,2733,2833,2915" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-gl/values-gl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2920", + "endColumns": "100", + "endOffsets": "3016" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-gu.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-gu.json new file mode 100644 index 0000000000000000000000000000000000000000..055f7bc2edc7f8a8c2f2c8cbdef6fbffe04d39e4 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-gu.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gu/values-gu.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-gu/values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,425,512,613,736,813,891,982,1075,1174,1268,1369,1462,1557,1654,1745,1836,1916,2022,2124,2221,2330,2429,2539,2699,2802", + "endColumns": "108,103,106,86,100,122,76,77,90,92,98,93,100,92,94,96,90,90,79,105,101,96,108,98,109,159,102,79", + "endOffsets": "209,313,420,507,608,731,808,886,977,1070,1169,1263,1364,1457,1552,1649,1740,1831,1911,2017,2119,2216,2325,2424,2534,2694,2797,2877" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-gu/values-gu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-h720dp-v13.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-h720dp-v13.json new file mode 100644 index 0000000000000000000000000000000000000000..28e57ea19ddd7630a9195314949fa3fe2585db41 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-h720dp-v13.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-h720dp-v13/values-h720dp-v13.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "66", + "endOffsets": "117" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hdpi-v4.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hdpi-v4.json new file mode 100644 index 0000000000000000000000000000000000000000..a1e079c5e33fc5545e4c2a01a1ceb5519a937da4 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hdpi-v4.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hdpi-v4/values-hdpi-v4.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "6", + "endColumns": "13", + "endOffsets": "327" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hi.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hi.json new file mode 100644 index 0000000000000000000000000000000000000000..205c858335fc2bc1b585d53ea4a42bfe449228dc --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hi.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hi/values-hi.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hi/values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,308,418,504,606,728,805,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1912,2021,2124,2226,2336,2437,2549,2711,2812", + "endColumns": "105,96,109,85,101,121,76,77,90,92,95,93,100,92,94,93,90,90,89,108,102,101,109,100,111,161,100,79", + "endOffsets": "206,303,413,499,601,723,800,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1907,2016,2119,2221,2331,2432,2544,2706,2807,2887" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hi/values-hi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2892", + "endColumns": "100", + "endOffsets": "2988" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hr.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hr.json new file mode 100644 index 0000000000000000000000000000000000000000..3baaf2b2e9009ed307498b0f5ccc4cf6fcfc7f62 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hr/values-hr.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hr/values-hr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2926", + "endColumns": "100", + "endOffsets": "3022" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hr/values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,307,417,503,607,726,810,893,984,1077,1173,1267,1368,1461,1556,1655,1746,1837,1923,2027,2140,2246,2351,2464,2571,2740,2837", + "endColumns": "104,96,109,85,103,118,83,82,90,92,95,93,100,92,94,98,90,90,85,103,112,105,104,112,106,168,96,88", + "endOffsets": "205,302,412,498,602,721,805,888,979,1072,1168,1262,1363,1456,1551,1650,1741,1832,1918,2022,2135,2241,2346,2459,2566,2735,2832,2921" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hu.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hu.json new file mode 100644 index 0000000000000000000000000000000000000000..23b82ec88e778e3b6c4db2777f4e0fc589c5d404 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hu.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hu/values-hu.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hu/values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,318,433,517,629,759,835,911,1002,1095,1191,1285,1386,1479,1574,1669,1760,1851,1934,2044,2155,2255,2366,2474,2593,2775,2878", + "endColumns": "107,104,114,83,111,129,75,75,90,92,95,93,100,92,94,94,90,90,82,109,110,99,110,107,118,181,102,82", + "endOffsets": "208,313,428,512,624,754,830,906,997,1090,1186,1280,1381,1474,1569,1664,1755,1846,1929,2039,2150,2250,2361,2469,2588,2770,2873,2956" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hu/values-hu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2961", + "endColumns": "100", + "endOffsets": "3057" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hy.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hy.json new file mode 100644 index 0000000000000000000000000000000000000000..039533404d7206182f49548a4faaf5641a01ad4d --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-hy.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hy/values-hy.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-hy/values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,309,419,508,614,729,811,892,983,1076,1172,1266,1367,1460,1555,1649,1740,1831,1916,2023,2130,2229,2339,2446,2546,2703,2802", + "endColumns": "102,100,109,88,105,114,81,80,90,92,95,93,100,92,94,93,90,90,84,106,106,98,109,106,99,156,98,81", + "endOffsets": "203,304,414,503,609,724,806,887,978,1071,1167,1261,1362,1455,1550,1644,1735,1826,1911,2018,2125,2224,2334,2441,2541,2698,2797,2879" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-hy/values-hy.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2884", + "endColumns": "100", + "endOffsets": "2980" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-in.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-in.json new file mode 100644 index 0000000000000000000000000000000000000000..262cebfd1445b8eb95666591d85242eebd02c58d --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-in.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-in/values-in.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-in/values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,422,509,613,729,811,890,981,1074,1170,1264,1365,1458,1553,1647,1738,1829,1915,2018,2127,2228,2332,2440,2548,2704,2803", + "endColumns": "109,101,104,86,103,115,81,78,90,92,95,93,100,92,94,93,90,90,85,102,108,100,103,107,107,155,98,83", + "endOffsets": "210,312,417,504,608,724,806,885,976,1069,1165,1259,1360,1453,1548,1642,1733,1824,1910,2013,2122,2223,2327,2435,2543,2699,2798,2882" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-in/values-in.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-is.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-is.json new file mode 100644 index 0000000000000000000000000000000000000000..b21dbe9392598876317df920c2bfc0c7845b7586 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-is.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-is/values-is.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-is/values-is.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-is/values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,302,414,499,600,714,794,874,965,1058,1154,1248,1355,1448,1543,1638,1729,1823,1904,2014,2122,2220,2329,2428,2531,2686,2784", + "endColumns": "99,96,111,84,100,113,79,79,90,92,95,93,106,92,94,94,90,93,80,109,107,97,108,98,102,154,97,80", + "endOffsets": "200,297,409,494,595,709,789,869,960,1053,1149,1243,1350,1443,1538,1633,1724,1818,1899,2009,2117,2215,2324,2423,2526,2681,2779,2860" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-it.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-it.json new file mode 100644 index 0000000000000000000000000000000000000000..2eca8f603e16b699f71292883d21fcf7b6ba9fdc --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-it.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-it/values-it.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-it/values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,314,423,507,616,741,818,894,986,1080,1174,1268,1370,1464,1561,1667,1759,1851,1932,2038,2146,2244,2348,2453,2560,2723,2823", + "endColumns": "108,99,108,83,108,124,76,75,91,93,93,93,101,93,96,105,91,91,80,105,107,97,103,104,106,162,99,82", + "endOffsets": "209,309,418,502,611,736,813,889,981,1075,1169,1263,1365,1459,1556,1662,1754,1846,1927,2033,2141,2239,2343,2448,2555,2718,2818,2901" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-it/values-it.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2906", + "endColumns": "100", + "endOffsets": "3002" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-iw.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-iw.json new file mode 100644 index 0000000000000000000000000000000000000000..0b208ce7c8c60f235b4cfa6c0531d869b0207c3d --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-iw.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-iw/values-iw.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-iw/values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,308,416,500,600,714,792,870,961,1055,1151,1245,1346,1439,1534,1631,1722,1814,1895,1997,2101,2199,2302,2403,2503,2655,2751", + "endColumns": "103,98,107,83,99,113,77,77,90,93,95,93,100,92,94,96,90,91,80,101,103,97,102,100,99,151,95,80", + "endOffsets": "204,303,411,495,595,709,787,865,956,1050,1146,1240,1341,1434,1529,1626,1717,1809,1890,1992,2096,2194,2297,2398,2498,2650,2746,2827" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-iw/values-iw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2832", + "endColumns": "100", + "endOffsets": "2928" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ja.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ja.json new file mode 100644 index 0000000000000000000000000000000000000000..2b686f16648552d42551882061bec7d15768c45b --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ja.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ja/values-ja.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ja/values-ja.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2771", + "endColumns": "100", + "endOffsets": "2867" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ja/values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,295,400,482,580,688,765,841,932,1025,1121,1215,1316,1409,1504,1598,1689,1780,1858,1960,2059,2154,2257,2352,2448,2596,2693", + "endColumns": "96,92,104,81,97,107,76,75,90,92,95,93,100,92,94,93,90,90,77,101,98,94,102,94,95,147,96,77", + "endOffsets": "197,290,395,477,575,683,760,836,927,1020,1116,1210,1311,1404,1499,1593,1684,1775,1853,1955,2054,2149,2252,2347,2443,2591,2688,2766" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ka.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ka.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4f9d7f2cb221f0e7995b911c736a5ffecb02f2 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ka.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ka/values-ka.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ka/values-ka.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2899", + "endColumns": "100", + "endOffsets": "2995" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ka/values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,318,429,517,622,735,819,901,992,1085,1180,1276,1377,1470,1565,1659,1750,1841,1924,2037,2144,2242,2355,2459,2563,2720,2818", + "endColumns": "108,103,110,87,104,112,83,81,90,92,94,95,100,92,94,93,90,90,82,112,106,97,112,103,103,156,97,80", + "endOffsets": "209,313,424,512,617,730,814,896,987,1080,1175,1271,1372,1465,1560,1654,1745,1836,1919,2032,2139,2237,2350,2454,2558,2715,2813,2894" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-kk.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-kk.json new file mode 100644 index 0000000000000000000000000000000000000000..dcb1999cadc2069d4a5ae52e908e6b5bcb4372a3 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-kk.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kk/values-kk.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-kk/values-kk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2893", + "endColumns": "100", + "endOffsets": "2989" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-kk/values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,217,320,430,515,621,740,821,901,992,1085,1181,1275,1376,1469,1564,1661,1752,1844,1925,2028,2133,2231,2338,2447,2547,2713,2812", + "endColumns": "111,102,109,84,105,118,80,79,90,92,95,93,100,92,94,96,90,91,80,102,104,97,106,108,99,165,98,80", + "endOffsets": "212,315,425,510,616,735,816,896,987,1080,1176,1270,1371,1464,1559,1656,1747,1839,1920,2023,2128,2226,2333,2442,2542,2708,2807,2888" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-km.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-km.json new file mode 100644 index 0000000000000000000000000000000000000000..8a271b9ead1895d0a00826b1fc49326ae9028aaf --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-km.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-km/values-km.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-km/values-km.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2882", + "endColumns": "100", + "endOffsets": "2978" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-km/values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,308,420,507,611,729,806,883,974,1067,1163,1257,1358,1451,1546,1640,1731,1822,1905,2009,2114,2214,2324,2431,2539,2701,2799", + "endColumns": "102,99,111,86,103,117,76,76,90,92,95,93,100,92,94,93,90,90,82,103,104,99,109,106,107,161,97,82", + "endOffsets": "203,303,415,502,606,724,801,878,969,1062,1158,1252,1353,1446,1541,1635,1726,1817,1900,2004,2109,2209,2319,2426,2534,2696,2794,2877" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-kn.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-kn.json new file mode 100644 index 0000000000000000000000000000000000000000..3e0b13ee754c43d8b4d4d5b3ec361b9c8394c498 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-kn.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kn/values-kn.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-kn/values-kn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2948", + "endColumns": "100", + "endOffsets": "3044" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-kn/values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,335,448,536,643,770,847,924,1015,1108,1204,1298,1399,1492,1587,1681,1772,1863,1945,2061,2172,2271,2384,2488,2602,2766,2866", + "endColumns": "117,111,112,87,106,126,76,76,90,92,95,93,100,92,94,93,90,90,81,115,110,98,112,103,113,163,99,81", + "endOffsets": "218,330,443,531,638,765,842,919,1010,1103,1199,1293,1394,1487,1582,1676,1767,1858,1940,2056,2167,2266,2379,2483,2597,2761,2861,2943" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ko.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ko.json new file mode 100644 index 0000000000000000000000000000000000000000..56c4e7db715bfa9e7975d27cbc87227d8ce1aae7 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ko.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ko/values-ko.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ko/values-ko.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2756", + "endColumns": "100", + "endOffsets": "2852" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ko/values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,294,396,478,576,682,761,837,928,1021,1113,1204,1305,1398,1493,1587,1678,1769,1849,1947,2042,2137,2237,2333,2432,2584,2678", + "endColumns": "94,93,101,81,97,105,78,75,90,92,91,90,100,92,94,93,90,90,79,97,94,94,99,95,98,151,93,77", + "endOffsets": "195,289,391,473,571,677,756,832,923,1016,1108,1199,1300,1393,1488,1582,1673,1764,1844,1942,2037,2132,2232,2328,2427,2579,2673,2751" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ky.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ky.json new file mode 100644 index 0000000000000000000000000000000000000000..be426ad1d1092cb327c8c52983923f23470f8bfc --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ky.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ky/values-ky.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ky/values-ky.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ky/values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,304,423,507,614,731,809,888,979,1072,1168,1262,1363,1456,1551,1646,1737,1828,1909,2019,2126,2224,2330,2437,2538,2699,2802", + "endColumns": "103,94,118,83,106,116,77,78,90,92,95,93,100,92,94,94,90,90,80,109,106,97,105,106,100,160,102,80", + "endOffsets": "204,299,418,502,609,726,804,883,974,1067,1163,1257,1358,1451,1546,1641,1732,1823,1904,2014,2121,2219,2325,2432,2533,2694,2797,2878" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-land.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-land.json new file mode 100644 index 0000000000000000000000000000000000000000..191d35b53b48fd14e3174b34a6bf79a8025137ec --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-land.json @@ -0,0 +1,38 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-land/values-land.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-land/values-land.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "10", + "endOffsets": "222" + }, + "to": { + "startLines": "5", + "startColumns": "4", + "startOffsets": "264", + "endLines": "8", + "endColumns": "10", + "endOffsets": "431" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-land/values-land.xml", + "from": { + "startLines": "2,3,4", + "startColumns": "4,4,4", + "startOffsets": "55,125,196", + "endColumns": "69,70,67", + "endOffsets": "120,191,259" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-large-v4.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-large-v4.json new file mode 100644 index 0000000000000000000000000000000000000000..c79aa39037448c67cdea4ee24914f242ad59683c --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-large-v4.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-large-v4/values-large-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10", + "startColumns": "4,4,4,4,4,4,4,4,4", + "startOffsets": "55,114,185,256,326,396,464,532,636", + "endColumns": "58,70,70,69,69,67,67,103,115", + "endOffsets": "109,180,251,321,391,459,527,631,747" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-large-v4/values-large-v4.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,177", + "endColumns": "121,133", + "endOffsets": "172,306" + }, + "to": { + "startLines": "11,12", + "startColumns": "4,4", + "startOffsets": "752,874", + "endColumns": "121,133", + "endOffsets": "869,1003" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ldltr-v21.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ldltr-v21.json new file mode 100644 index 0000000000000000000000000000000000000000..11ed10fedaf7e437187141c872708cfa0728c5f1 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ldltr-v21.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ldltr-v21/values-ldltr-v21.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "112", + "endOffsets": "163" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-lo.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-lo.json new file mode 100644 index 0000000000000000000000000000000000000000..2b3534d371610812f691e1d220523cb1567049c4 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-lo.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lo/values-lo.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-lo/values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,412,497,602,714,791,869,960,1053,1149,1243,1344,1437,1532,1626,1717,1808,1888,1995,2092,2190,2295,2398,2502,2659,2755", + "endColumns": "102,96,106,84,104,111,76,77,90,92,95,93,100,92,94,93,90,90,79,106,96,97,104,102,103,156,95,80", + "endOffsets": "203,300,407,492,597,709,786,864,955,1048,1144,1238,1339,1432,1527,1621,1712,1803,1883,1990,2087,2185,2290,2393,2497,2654,2750,2831" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-lo/values-lo.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2836", + "endColumns": "100", + "endOffsets": "2932" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-lt.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-lt.json new file mode 100644 index 0000000000000000000000000000000000000000..1250d747a6dbed887b7447f49cf379b019a6ea16 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-lt.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lt/values-lt.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-lt/values-lt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2978", + "endColumns": "100", + "endOffsets": "3074" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-lt/values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,322,435,522,631,752,834,915,1009,1105,1203,1299,1403,1499,1597,1700,1794,1888,1973,2082,2191,2291,2401,2505,2618,2794,2895", + "endColumns": "115,100,112,86,108,120,81,80,93,95,97,95,103,95,97,102,93,93,84,108,108,99,109,103,112,175,100,82", + "endOffsets": "216,317,430,517,626,747,829,910,1004,1100,1198,1294,1398,1494,1592,1695,1789,1883,1968,2077,2186,2286,2396,2500,2613,2789,2890,2973" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-lv.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-lv.json new file mode 100644 index 0000000000000000000000000000000000000000..75c7dbbb0f5573c273f9d6fa9fbf1d0bcdcb8865 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-lv.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-lv/values-lv.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-lv/values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,333,442,528,632,754,836,918,1028,1136,1243,1352,1464,1567,1679,1786,1891,1991,2076,2185,2297,2396,2507,2616,2721,2895,2994", + "endColumns": "119,107,108,85,103,121,81,81,109,107,106,108,111,102,111,106,104,99,84,108,111,98,110,108,104,173,98,81", + "endOffsets": "220,328,437,523,627,749,831,913,1023,1131,1238,1347,1459,1562,1674,1781,1886,1986,2071,2180,2292,2391,2502,2611,2716,2890,2989,3071" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-lv/values-lv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "3076", + "endColumns": "100", + "endOffsets": "3172" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-mk.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-mk.json new file mode 100644 index 0000000000000000000000000000000000000000..ed5eea42d9ab315c8ccb2ce8ae10043d2c8fd299 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-mk.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mk/values-mk.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-mk/values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,317,425,511,616,735,818,900,997,1096,1193,1293,1400,1499,1600,1696,1793,1884,1971,2077,2184,2285,2392,2503,2607,2763,2861", + "endColumns": "107,103,107,85,104,118,82,81,96,98,96,99,106,98,100,95,96,90,86,105,106,100,106,110,103,155,97,83", + "endOffsets": "208,312,420,506,611,730,813,895,992,1091,1188,1288,1395,1494,1595,1691,1788,1879,1966,2072,2179,2280,2387,2498,2602,2758,2856,2940" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-mk/values-mk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2945", + "endColumns": "100", + "endOffsets": "3041" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ml.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ml.json new file mode 100644 index 0000000000000000000000000000000000000000..70124909b6ad8b923cb8e9e5955c665ae2721680 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ml.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ml/values-ml.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ml/values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,342,457,550,655,787,864,940,1031,1124,1226,1320,1421,1515,1610,1709,1800,1891,1973,2084,2190,2288,2402,2502,2613,2772,2873", + "endColumns": "118,117,114,92,104,131,76,75,90,92,101,93,100,93,94,98,90,90,81,110,105,97,113,99,110,158,100,81", + "endOffsets": "219,337,452,545,650,782,859,935,1026,1119,1221,1315,1416,1510,1605,1704,1795,1886,1968,2079,2185,2283,2397,2497,2608,2767,2868,2950" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ml/values-ml.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2955", + "endColumns": "100", + "endOffsets": "3051" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-mn.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-mn.json new file mode 100644 index 0000000000000000000000000000000000000000..4ef112c4f6f924c1c3ab6dbc4473769c7fa44c25 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-mn.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mn/values-mn.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-mn/values-mn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2876", + "endColumns": "100", + "endOffsets": "2972" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-mn/values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,218,318,431,518,624,736,818,900,991,1084,1180,1276,1374,1467,1562,1654,1745,1835,1917,2026,2130,2227,2335,2436,2539,2698,2795", + "endColumns": "112,99,112,86,105,111,81,81,90,92,95,95,97,92,94,91,90,89,81,108,103,96,107,100,102,158,96,80", + "endOffsets": "213,313,426,513,619,731,813,895,986,1079,1175,1271,1369,1462,1557,1649,1740,1830,1912,2021,2125,2222,2330,2431,2534,2693,2790,2871" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-mr.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-mr.json new file mode 100644 index 0000000000000000000000000000000000000000..10a2061f24253d3141185d4b51fbb6314ba2cc56 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-mr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-mr/values-mr.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-mr/values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,322,429,519,620,735,812,890,981,1074,1168,1265,1366,1459,1554,1651,1742,1833,1913,2025,2127,2223,2332,2433,2545,2702,2807", + "endColumns": "110,105,106,89,100,114,76,77,90,92,93,96,100,92,94,96,90,90,79,111,101,95,108,100,111,156,104,79", + "endOffsets": "211,317,424,514,615,730,807,885,976,1069,1163,1260,1361,1454,1549,1646,1737,1828,1908,2020,2122,2218,2327,2428,2540,2697,2802,2882" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-mr/values-mr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2887", + "endColumns": "100", + "endOffsets": "2983" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ms.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ms.json new file mode 100644 index 0000000000000000000000000000000000000000..e6c1022278360f562b73168b8565e13fcf6c0baa --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ms.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ms/values-ms.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ms/values-ms.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2881", + "endColumns": "100", + "endOffsets": "2977" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ms/values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,216,321,429,516,620,731,809,888,979,1072,1167,1261,1360,1453,1548,1642,1733,1824,1904,2016,2125,2222,2331,2434,2541,2700,2801", + "endColumns": "110,104,107,86,103,110,77,78,90,92,94,93,98,92,94,93,90,90,79,111,108,96,108,102,106,158,100,79", + "endOffsets": "211,316,424,511,615,726,804,883,974,1067,1162,1256,1355,1448,1543,1637,1728,1819,1899,2011,2120,2217,2326,2429,2536,2695,2796,2876" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-my.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-my.json new file mode 100644 index 0000000000000000000000000000000000000000..5db034d4c081f7135aa32567aa9ffd3b3953e2dd --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-my.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-my/values-my.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-my/values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,319,436,529,641,769,847,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1951,2074,2186,2288,2414,2525,2635,2795,2895", + "endColumns": "108,104,116,92,111,127,77,78,90,92,95,93,100,92,94,93,90,90,85,122,111,101,125,110,109,159,99,83", + "endOffsets": "209,314,431,524,636,764,842,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1946,2069,2181,2283,2409,2520,2630,2790,2890,2974" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-my/values-my.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2979", + "endColumns": "100", + "endOffsets": "3075" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-nb.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-nb.json new file mode 100644 index 0000000000000000000000000000000000000000..12a915de54cbfc62c12ac4d01d71510adf801775 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-nb.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nb/values-nb.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-nb/values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,308,422,508,608,721,797,873,964,1057,1153,1247,1348,1441,1536,1634,1725,1816,1896,1999,2098,2194,2298,2396,2497,2650,2747", + "endColumns": "107,94,113,85,99,112,75,75,90,92,95,93,100,92,94,97,90,90,79,102,98,95,103,97,100,152,96,78", + "endOffsets": "208,303,417,503,603,716,792,868,959,1052,1148,1242,1343,1436,1531,1629,1720,1811,1891,1994,2093,2189,2293,2391,2492,2645,2742,2821" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-nb/values-nb.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2826", + "endColumns": "100", + "endOffsets": "2922" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ne.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ne.json new file mode 100644 index 0000000000000000000000000000000000000000..7ab16ea3327d1ce688b37ba9e1935152ea581639 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ne.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ne/values-ne.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ne/values-ne.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2988", + "endColumns": "100", + "endOffsets": "3084" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ne/values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,422,513,620,747,841,931,1022,1115,1211,1305,1406,1499,1594,1688,1779,1870,1958,2068,2184,2287,2402,2504,2619,2790,2902", + "endColumns": "104,103,107,90,106,126,93,89,90,92,95,93,100,92,94,93,90,90,87,109,115,102,114,101,114,170,111,85", + "endOffsets": "205,309,417,508,615,742,836,926,1017,1110,1206,1300,1401,1494,1589,1683,1774,1865,1953,2063,2179,2282,2397,2499,2614,2785,2897,2983" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-night-v8.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-night-v8.json new file mode 100644 index 0000000000000000000000000000000000000000..65d5155c539c097e16fbce0c43b869b62d288c93 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-night-v8.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-night-v8/values-night-v8.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-night-v8/values-night-v8.xml", + "from": { + "startLines": "2,3,4,5,6,7,8", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "55,125,209,293,389,491,593", + "endColumns": "69,83,83,95,101,101,93", + "endOffsets": "120,204,288,384,486,588,682" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-nl.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-nl.json new file mode 100644 index 0000000000000000000000000000000000000000..b73bedd74070941f3483496faa5ec8da2187c3bd --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-nl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-nl/values-nl.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-nl/values-nl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2921", + "endColumns": "100", + "endOffsets": "3017" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-nl/values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,223,328,435,521,629,749,826,903,995,1089,1190,1284,1385,1479,1575,1670,1762,1854,1936,2047,2151,2250,2365,2478,2581,2736,2839", + "endColumns": "117,104,106,85,107,119,76,76,91,93,100,93,100,93,95,94,91,91,81,110,103,98,114,112,102,154,102,81", + "endOffsets": "218,323,430,516,624,744,821,898,990,1084,1185,1279,1380,1474,1570,1665,1757,1849,1931,2042,2146,2245,2360,2473,2576,2731,2834,2916" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-or.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-or.json new file mode 100644 index 0000000000000000000000000000000000000000..4ee98e166671f28caf8c09975a8c45426bc114c1 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-or.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-or/values-or.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-or/values-or.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-or/values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,334,441,527,631,751,828,905,996,1089,1186,1281,1382,1475,1570,1666,1757,1847,1929,2039,2144,2250,2361,2464,2582,2745,2847", + "endColumns": "118,109,106,85,103,119,76,76,90,92,96,94,100,92,94,95,90,89,81,109,104,105,110,102,117,162,101,88", + "endOffsets": "219,329,436,522,626,746,823,900,991,1084,1181,1276,1377,1470,1565,1661,1752,1842,1924,2034,2139,2245,2356,2459,2577,2740,2842,2931" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pa.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pa.json new file mode 100644 index 0000000000000000000000000000000000000000..9224eeae507bc1c84f07709147c0eb4b992a87ec --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pa.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pa/values-pa.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pa/values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,305,410,496,596,709,786,862,953,1046,1142,1236,1337,1430,1525,1619,1710,1801,1880,1981,2085,2182,2291,2390,2500,2659,2759", + "endColumns": "102,96,104,85,99,112,76,75,90,92,95,93,100,92,94,93,90,90,78,100,103,96,108,98,109,158,99,79", + "endOffsets": "203,300,405,491,591,704,781,857,948,1041,1137,1231,1332,1425,1520,1614,1705,1796,1875,1976,2080,2177,2286,2385,2495,2654,2754,2834" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pa/values-pa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2839", + "endColumns": "100", + "endOffsets": "2935" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pl.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pl.json new file mode 100644 index 0000000000000000000000000000000000000000..a24da9328f9bf37397f9ce54ead485d4cbd89eca --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pl/values-pl.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pl/values-pl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2909", + "endColumns": "100", + "endOffsets": "3005" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pl/values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,221,323,431,517,626,745,823,900,991,1084,1180,1274,1376,1469,1564,1659,1750,1841,1923,2032,2141,2240,2349,2460,2568,2731,2827", + "endColumns": "115,101,107,85,108,118,77,76,90,92,95,93,101,92,94,94,90,90,81,108,108,98,108,110,107,162,95,81", + "endOffsets": "216,318,426,512,621,740,818,895,986,1079,1175,1269,1371,1464,1559,1654,1745,1836,1918,2027,2136,2235,2344,2455,2563,2726,2822,2904" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-port.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-port.json new file mode 100644 index 0000000000000000000000000000000000000000..c073c49cd8bc0f65f3c6aee671181d1fb884b02e --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-port.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-port/values-port.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-port/values-port.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "55", + "endOffsets": "106" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pt-rBR.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pt-rBR.json new file mode 100644 index 0000000000000000000000000000000000000000..f120dc632d7813482c0fdd42c8312c4e3bec1c5a --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pt-rBR.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt-rBR/values-pt-rBR.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pt-rBR/values-pt-rBR.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pt-rPT.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pt-rPT.json new file mode 100644 index 0000000000000000000000000000000000000000..2f1eb9b2d18a385d238b93dc2f6c735a9b5ca3d7 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pt-rPT.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt-rPT/values-pt-rPT.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pt-rPT/values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,752,836,917,1009,1103,1201,1295,1395,1489,1585,1680,1772,1864,1951,2058,2170,2272,2380,2487,2594,2765,2864", + "endColumns": "119,105,106,88,100,123,83,80,91,93,97,93,99,93,95,94,91,91,86,106,111,101,107,106,106,170,98,84", + "endOffsets": "220,326,433,522,623,747,831,912,1004,1098,1196,1290,1390,1484,1580,1675,1767,1859,1946,2053,2165,2267,2375,2482,2589,2760,2859,2944" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pt.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pt.json new file mode 100644 index 0000000000000000000000000000000000000000..e0b91ba6c7106bf5a5997c2f2a5683bd0c74f869 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-pt.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-pt/values-pt.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-pt/values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,225,331,438,527,628,746,829,909,1000,1093,1189,1283,1384,1477,1572,1667,1758,1849,1936,2043,2155,2257,2365,2472,2582,2744,2844", + "endColumns": "119,105,106,88,100,117,82,79,90,92,95,93,100,92,94,94,90,90,86,106,111,101,107,106,109,161,99,84", + "endOffsets": "220,326,433,522,623,741,824,904,995,1088,1184,1278,1379,1472,1567,1662,1753,1844,1931,2038,2150,2252,2360,2467,2577,2739,2839,2924" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-pt/values-pt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2929", + "endColumns": "100", + "endOffsets": "3025" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ro.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ro.json new file mode 100644 index 0000000000000000000000000000000000000000..b76391ca3c4ffac76fe667b5d046c6b571f50d62 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ro.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ro/values-ro.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ro/values-ro.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2953", + "endColumns": "100", + "endOffsets": "3049" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ro/values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,226,330,443,531,643,764,849,930,1021,1114,1210,1304,1404,1497,1592,1687,1778,1870,1953,2065,2178,2278,2392,2497,2603,2767,2870", + "endColumns": "120,103,112,87,111,120,84,80,90,92,95,93,99,92,94,94,90,91,82,111,112,99,113,104,105,163,102,82", + "endOffsets": "221,325,438,526,638,759,844,925,1016,1109,1205,1299,1399,1492,1587,1682,1773,1865,1948,2060,2173,2273,2387,2492,2598,2762,2865,2948" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ru.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ru.json new file mode 100644 index 0000000000000000000000000000000000000000..a91040ff0bb9ed6ba4478e6a155d562c884ac8cc --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ru.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ru/values-ru.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ru/values-ru.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2913", + "endColumns": "100", + "endOffsets": "3009" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ru/values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,220,322,434,520,625,745,824,902,994,1088,1184,1277,1373,1467,1563,1658,1750,1842,1922,2028,2136,2234,2343,2449,2557,2732,2832", + "endColumns": "114,101,111,85,104,119,78,77,91,93,95,92,95,93,95,94,91,91,79,105,107,97,108,105,107,174,99,80", + "endOffsets": "215,317,429,515,620,740,819,897,989,1083,1179,1272,1368,1462,1558,1653,1745,1837,1917,2023,2131,2229,2338,2444,2552,2727,2827,2908" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-si.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-si.json new file mode 100644 index 0000000000000000000000000000000000000000..8a4ab2037baaf8dca434aaf4d1caa71ccda143f0 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-si.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-si/values-si.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-si/values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,322,429,517,622,738,827,914,1005,1098,1193,1287,1388,1481,1576,1670,1761,1852,1936,2045,2150,2248,2358,2457,2563,2722,2821", + "endColumns": "109,106,106,87,104,115,88,86,90,92,94,93,100,92,94,93,90,90,83,108,104,97,109,98,105,158,98,81", + "endOffsets": "210,317,424,512,617,733,822,909,1000,1093,1188,1282,1383,1476,1571,1665,1756,1847,1931,2040,2145,2243,2353,2452,2558,2717,2816,2898" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-si/values-si.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2903", + "endColumns": "100", + "endOffsets": "2999" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sk.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sk.json new file mode 100644 index 0000000000000000000000000000000000000000..1960d3196215d1b079ca842cb66e1a2e936055e0 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sk.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sk/values-sk.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sk/values-sk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2918", + "endColumns": "100", + "endOffsets": "3014" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sk/values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,312,423,509,617,735,816,897,988,1081,1180,1274,1375,1468,1563,1661,1752,1843,1927,2032,2141,2240,2346,2457,2566,2732,2830", + "endColumns": "106,99,110,85,107,117,80,80,90,92,98,93,100,92,94,97,90,90,83,104,108,98,105,110,108,165,97,87", + "endOffsets": "207,307,418,504,612,730,811,892,983,1076,1175,1269,1370,1463,1558,1656,1747,1838,1922,2027,2136,2235,2341,2452,2561,2727,2825,2913" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sl.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sl.json new file mode 100644 index 0000000000000000000000000000000000000000..e502a94954eafaafc78062a8899ad55070b3d0fa --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sl/values-sl.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sl/values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,212,319,427,514,617,736,821,905,997,1091,1187,1281,1377,1471,1567,1667,1759,1851,1935,2043,2152,2252,2365,2472,2576,2756,2853", + "endColumns": "106,106,107,86,102,118,84,83,91,93,95,93,95,93,95,99,91,91,83,107,108,99,112,106,103,179,96,82", + "endOffsets": "207,314,422,509,612,731,816,900,992,1086,1182,1276,1372,1466,1562,1662,1754,1846,1930,2038,2147,2247,2360,2467,2571,2751,2848,2931" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sl/values-sl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2936", + "endColumns": "100", + "endOffsets": "3032" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sq.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sq.json new file mode 100644 index 0000000000000000000000000000000000000000..e532b0ba987c04720a685e6dd1a5ebf56e4dcfb4 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sq.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sq/values-sq.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sq/values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,319,431,518,628,751,832,911,1002,1095,1191,1285,1387,1480,1575,1672,1763,1856,1939,2045,2150,2248,2354,2457,2573,2727,2826", + "endColumns": "113,99,111,86,109,122,80,78,90,92,95,93,101,92,94,96,90,92,82,105,104,97,105,102,115,153,98,80", + "endOffsets": "214,314,426,513,623,746,827,906,997,1090,1186,1280,1382,1475,1570,1667,1758,1851,1934,2040,2145,2243,2349,2452,2568,2722,2821,2902" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sq/values-sq.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2907", + "endColumns": "100", + "endOffsets": "3003" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sr.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sr.json new file mode 100644 index 0000000000000000000000000000000000000000..63fcba5c686cf8d78fe6a4c6c259d2687a9fd62d --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sr/values-sr.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sr/values-sr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2905", + "endColumns": "100", + "endOffsets": "3001" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sr/values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,214,317,423,509,613,731,812,892,983,1076,1172,1266,1367,1460,1555,1660,1751,1842,1930,2035,2143,2244,2348,2456,2557,2724,2821", + "endColumns": "108,102,105,85,103,117,80,79,90,92,95,93,100,92,94,104,90,90,87,104,107,100,103,107,100,166,96,83", + "endOffsets": "209,312,418,504,608,726,807,887,978,1071,1167,1261,1362,1455,1550,1655,1746,1837,1925,2030,2138,2239,2343,2451,2552,2719,2816,2900" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sv.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sv.json new file mode 100644 index 0000000000000000000000000000000000000000..5c0f8e6bb3a33310335b2e8ed63459c39408b95e --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sv.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sv/values-sv.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sv/values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,211,314,425,510,612,725,801,877,970,1065,1161,1255,1358,1453,1550,1648,1744,1837,1917,2023,2123,2219,2324,2426,2528,2682,2784", + "endColumns": "105,102,110,84,101,112,75,75,92,94,95,93,102,94,96,97,95,92,79,105,99,95,104,101,101,153,101,78", + "endOffsets": "206,309,420,505,607,720,796,872,965,1060,1156,1250,1353,1448,1545,1643,1739,1832,1912,2018,2118,2214,2319,2421,2523,2677,2779,2858" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sv/values-sv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2863", + "endColumns": "100", + "endOffsets": "2959" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sw.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sw.json new file mode 100644 index 0000000000000000000000000000000000000000..4fc5044b7555a8d80917de67b704ca5653c737e6 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sw.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw/values-sw.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sw/values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,306,414,504,609,726,808,891,982,1075,1169,1263,1364,1457,1552,1647,1738,1830,1912,2013,2122,2221,2328,2437,2542,2704,2801", + "endColumns": "102,97,107,89,104,116,81,82,90,92,93,93,100,92,94,94,90,91,81,100,108,98,106,108,104,161,96,81", + "endOffsets": "203,301,409,499,604,721,803,886,977,1070,1164,1258,1359,1452,1547,1642,1733,1825,1907,2008,2117,2216,2323,2432,2537,2699,2796,2878" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-sw/values-sw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2883", + "endColumns": "100", + "endOffsets": "2979" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sw600dp-v13.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sw600dp-v13.json new file mode 100644 index 0000000000000000000000000000000000000000..ac4d3e6490dc0f64722fc055045f6affe9a09aaf --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-sw600dp-v13.json @@ -0,0 +1,38 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,10,11,12", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,115,185,256,328,386,444,553,617,680", + "endLines": "2,3,4,5,6,7,9,10,11,15", + "endColumns": "59,69,70,71,57,57,10,63,62,10", + "endOffsets": "110,180,251,323,381,439,548,612,675,847" + }, + "to": { + "startLines": "10,11,12,13,14,15,16,18,19,20", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "611,671,741,812,884,942,1000,1109,1173,1236", + "endLines": "10,11,12,13,14,15,17,18,19,23", + "endColumns": "59,69,70,71,57,57,10,63,62,10", + "endOffsets": "666,736,807,879,937,995,1104,1168,1231,1403" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-sw600dp-v13/values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,124,193,263,337,413,472,543", + "endColumns": "68,68,69,73,75,58,70,67", + "endOffsets": "119,188,258,332,408,467,538,606" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ta.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ta.json new file mode 100644 index 0000000000000000000000000000000000000000..5ce29a71d5a05e8abef682982cb0448375c0a345 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ta.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ta/values-ta.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ta/values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,317,432,521,628,754,832,909,1009,1114,1210,1305,1412,1514,1618,1713,1815,1913,1995,2097,2201,2298,2408,2510,2617,2774,2874", + "endColumns": "113,97,114,88,106,125,77,76,99,104,95,94,106,101,103,94,101,97,81,101,103,96,109,101,106,156,99,79", + "endOffsets": "214,312,427,516,623,749,827,904,1004,1109,1205,1300,1407,1509,1613,1708,1810,1908,1990,2092,2196,2293,2403,2505,2612,2769,2869,2949" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ta/values-ta.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2954", + "endColumns": "100", + "endOffsets": "3050" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-te.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-te.json new file mode 100644 index 0000000000000000000000000000000000000000..35fffe99b51f4139c66a99487741c75f9cfc6398 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-te.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-te/values-te.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-te/values-te.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2946", + "endColumns": "100", + "endOffsets": "3042" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-te/values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,328,439,529,634,759,841,923,1014,1107,1203,1297,1398,1491,1586,1681,1772,1863,1947,2060,2168,2267,2378,2480,2597,2763,2864", + "endColumns": "113,108,110,89,104,124,81,81,90,92,95,93,100,92,94,94,90,90,83,112,107,98,110,101,116,165,100,81", + "endOffsets": "214,323,434,524,629,754,836,918,1009,1102,1198,1292,1393,1486,1581,1676,1767,1858,1942,2055,2163,2262,2373,2475,2592,2758,2859,2941" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-th.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-th.json new file mode 100644 index 0000000000000000000000000000000000000000..97c125e7f94c76feb25249093f1d59b5dbea881a --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-th.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-th/values-th.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-th/values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,308,416,505,607,717,794,872,963,1056,1152,1246,1347,1440,1535,1629,1720,1811,1892,2000,2104,2202,2310,2415,2516,2669,2764", + "endColumns": "104,97,107,88,101,109,76,77,90,92,95,93,100,92,94,93,90,90,80,107,103,97,107,104,100,152,94,80", + "endOffsets": "205,303,411,500,602,712,789,867,958,1051,1147,1241,1342,1435,1530,1624,1715,1806,1887,1995,2099,2197,2305,2410,2511,2664,2759,2840" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-th/values-th.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2845", + "endColumns": "100", + "endOffsets": "2941" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-tl.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-tl.json new file mode 100644 index 0000000000000000000000000000000000000000..195b13504d386dc172f5fe74884e6d155125f4fe --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-tl.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tl/values-tl.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-tl/values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,224,332,449,537,643,764,843,921,1012,1105,1201,1295,1396,1489,1584,1678,1769,1860,1944,2053,2164,2265,2375,2492,2600,2763,2865", + "endColumns": "118,107,116,87,105,120,78,77,90,92,95,93,100,92,94,93,90,90,83,108,110,100,109,116,107,162,101,83", + "endOffsets": "219,327,444,532,638,759,838,916,1007,1100,1196,1290,1391,1484,1579,1673,1764,1855,1939,2048,2159,2260,2370,2487,2595,2758,2860,2944" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-tl/values-tl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2949", + "endColumns": "100", + "endOffsets": "3045" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-tr.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-tr.json new file mode 100644 index 0000000000000000000000000000000000000000..79d08d1c383b16390538aea191fc2aa0e21552de --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-tr.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tr/values-tr.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-tr/values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,309,421,506,612,732,811,887,978,1071,1164,1258,1356,1449,1551,1646,1737,1828,1907,2014,2119,2215,2322,2424,2532,2688,2786", + "endColumns": "104,98,111,84,105,119,78,75,90,92,92,93,97,92,101,94,90,90,78,106,104,95,106,101,107,155,97,78", + "endOffsets": "205,304,416,501,607,727,806,882,973,1066,1159,1253,1351,1444,1546,1641,1732,1823,1902,2009,2114,2210,2317,2419,2527,2683,2781,2860" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-tr/values-tr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2865", + "endColumns": "100", + "endOffsets": "2961" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-uk.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-uk.json new file mode 100644 index 0000000000000000000000000000000000000000..68af1af07edbe720bcdaffb022ce038a1bc2f695 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-uk.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uk/values-uk.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-uk/values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,317,423,509,617,735,814,894,985,1078,1174,1268,1369,1462,1557,1652,1743,1834,1915,2021,2128,2226,2334,2440,2549,2719,2819", + "endColumns": "109,101,105,85,107,117,78,79,90,92,95,93,100,92,94,94,90,90,80,105,106,97,107,105,108,169,99,80", + "endOffsets": "210,312,418,504,612,730,809,889,980,1073,1169,1263,1364,1457,1552,1647,1738,1829,1910,2016,2123,2221,2329,2435,2544,2714,2814,2895" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-uk/values-uk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2900", + "endColumns": "100", + "endOffsets": "2996" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ur.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ur.json new file mode 100644 index 0000000000000000000000000000000000000000..93788c7759e84dd9ce939fdfa3c4662218083091 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-ur.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ur/values-ur.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-ur/values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,215,321,430,516,620,740,816,892,984,1078,1174,1268,1370,1464,1560,1654,1746,1838,1923,2031,2140,2242,2353,2453,2561,2726,2824", + "endColumns": "109,105,108,85,103,119,75,75,91,93,95,93,101,93,95,93,91,91,84,107,108,101,110,99,107,164,97,79", + "endOffsets": "210,316,425,511,615,735,811,887,979,1073,1169,1263,1365,1459,1555,1649,1741,1833,1918,2026,2135,2237,2348,2448,2556,2721,2819,2899" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-ur/values-ur.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2904", + "endColumns": "100", + "endOffsets": "3000" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-uz.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-uz.json new file mode 100644 index 0000000000000000000000000000000000000000..63b6093c7960cb6f781f9f7c35a67f87e7f71ac7 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-uz.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uz/values-uz.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-uz/values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,314,428,514,614,730,810,889,980,1073,1169,1263,1358,1451,1546,1641,1732,1824,1908,2017,2124,2225,2333,2438,2545,2706,2805", + "endColumns": "104,103,113,85,99,115,79,78,90,92,95,93,94,92,94,94,90,91,83,108,106,100,107,104,106,160,98,83", + "endOffsets": "205,309,423,509,609,725,805,884,975,1068,1164,1258,1353,1446,1541,1636,1727,1819,1903,2012,2119,2220,2328,2433,2540,2701,2800,2884" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-uz/values-uz.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2889", + "endColumns": "100", + "endOffsets": "2985" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v14.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v14.json new file mode 100644 index 0000000000000000000000000000000000000000..bdc28ff44b68a2cc14bbcf1878939aafdb328303 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v14.json @@ -0,0 +1,28 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v14/values-v14.xml", + "map": [ + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values-v14/styles.xml", + "from": { + "startLines": "6", + "startColumns": "4", + "startOffsets": "219", + "endLines": "8", + "endColumns": "12", + "endOffsets": "354" + }, + "to": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "4", + "endColumns": "12", + "endOffsets": "190" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v16.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v16.json new file mode 100644 index 0000000000000000000000000000000000000000..c3d97a9cc5673d7da2df57039b12659a89126777 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v16.json @@ -0,0 +1,38 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v16/values-v16.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-v16/values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "65", + "endOffsets": "116" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v16/values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "5", + "endColumns": "12", + "endOffsets": "223" + }, + "to": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "121", + "endLines": "6", + "endColumns": "12", + "endOffsets": "289" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v17.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v17.json new file mode 100644 index 0000000000000000000000000000000000000000..0247e952e213975cf6c0ff59d2fa1b5fe58f377a --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v17.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v17/values-v17.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v17/values-v17.xml", + "from": { + "startLines": "2,5,9,12,15,18,22,25,29,33,37,40,43,46,50,53,57", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,228,456,614,764,936,1161,1331,1559,1783,2025,2196,2370,2539,2812,3012,3216", + "endLines": "4,8,11,14,17,21,24,28,32,36,39,42,45,49,52,56,60", + "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12", + "endOffsets": "223,451,609,759,931,1156,1326,1554,1778,2020,2191,2365,2534,2807,3007,3211,3540" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v18.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v18.json new file mode 100644 index 0000000000000000000000000000000000000000..336a7e7341f25b7cea61def2974a7eb1e834b195 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v18.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v18/values-v18.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v18/values-v18.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "48", + "endOffsets": "99" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v21.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v21.json new file mode 100644 index 0000000000000000000000000000000000000000..d8ba196291265d1cf42b6d5fd19d2caa4c2e705f --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v21.json @@ -0,0 +1,85 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v21/values-v21.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,5,8,11", + "startColumns": "4,4,4,4", + "startOffsets": "55,223,386,554", + "endLines": "4,7,10,13", + "endColumns": "12,12,12,12", + "endOffsets": "218,381,549,716" + }, + "to": { + "startLines": "265,268,272,276", + "startColumns": "4,4,4,4", + "startOffsets": "19504,19672,19961,20257", + "endLines": "267,270,274,278", + "endColumns": "12,12,12,12", + "endOffsets": "19667,19830,20124,20419" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,13", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,354,470,596,722,850,1022", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,465,591,717,845,1017,1355" + }, + "to": { + "startLines": "2,3,4,5,263,264,271,275,311,314", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,19262,19378,19835,20129,22137,22309", + "endLines": "2,3,4,5,263,264,271,275,313,318", + "endColumns": "103,63,66,63,115,125,125,127,12,12", + "endOffsets": "154,218,285,349,19373,19499,19956,20252,22304,22642" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,43,48,50,52,53,54,56,58,59,60,61,62,63,107,110,154,157,160,162,164,166,169,171,174,175,176,179,180,181,182,183,184,187,188,190,192,194,196,200,202,203,204,205,207,211,213,215,216,217,218,219,221,222,223,233,234,235,247", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2950,3121,3270,3435,3592,3743,3862,4234,4383,4532,4644,4791,4944,5091,5166,5255,5342,5443,5546,8614,8799,11879,12076,12275,12398,12521,12634,12817,12948,13149,13238,13349,13582,13683,13778,13901,14030,14147,14324,14423,14558,14701,14836,14955,15156,15275,15368,15479,15535,15642,15837,15948,16081,16176,16267,16358,16475,16614,16685,16768,17448,17505,17563,18257", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,42,47,49,51,52,53,55,57,58,59,60,61,62,106,109,153,156,159,161,163,165,168,170,173,174,175,178,179,180,181,182,183,186,187,189,191,193,195,199,201,202,203,204,206,210,212,214,215,216,217,218,220,221,222,232,233,234,246,258", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2945,3116,3265,3430,3587,3738,3857,4229,4378,4527,4639,4786,4939,5086,5161,5250,5337,5438,5541,8609,8794,11874,12071,12270,12393,12516,12629,12812,12943,13144,13233,13344,13577,13678,13773,13896,14025,14142,14319,14418,14553,14696,14831,14950,15151,15270,15363,15474,15530,15637,15832,15943,16076,16171,16262,16353,16470,16609,16680,16763,17443,17500,17558,18252,18958" + }, + "to": { + "startLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9098,12178,12375,12574,12697,12820,12933,13116,13247,13448,13537,13648,13881,13982,14077,14200,14329,14446,14623,14722,14857,15000,15135,15254,15455,15574,15667,15778,15834,15941,16136,16247,16380,16475,16566,16657,16774,16913,16984,17067,17747,17804,17862,18556", + "endLines": "6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262", + "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12", + "endOffsets": "440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9093,12173,12370,12569,12692,12815,12928,13111,13242,13443,13532,13643,13876,13977,14072,14195,14324,14441,14618,14717,14852,14995,15130,15249,15450,15569,15662,15773,15829,15936,16131,16242,16375,16470,16561,16652,16769,16908,16979,17062,17742,17799,17857,18551,19257" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values-v21/values-v21.xml", + "from": { + "startLines": "2,10,18,26", + "startColumns": "4,4,4,4", + "startOffsets": "55,484,910,1333", + "endLines": "9,17,25,33", + "endColumns": "10,10,10,10", + "endOffsets": "479,905,1328,1763" + }, + "to": { + "startLines": "279,287,295,303", + "startColumns": "4,4,4,4", + "startOffsets": "20424,20853,21279,21702", + "endLines": "286,294,302,310", + "endColumns": "10,10,10,10", + "endOffsets": "20848,21274,21697,22132" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v22.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v22.json new file mode 100644 index 0000000000000000000000000000000000000000..0b06399c7632c81ee7d867d6e7da4772cbafa7aa --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v22.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v22/values-v22.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v22/values-v22.xml", + "from": { + "startLines": "2,3,4,9", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,553", + "endLines": "2,3,8,13", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,548,896" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v23.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v23.json new file mode 100644 index 0000000000000000000000000000000000000000..69395062350f4dcfcffe1b27207c18135ec0b595 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v23.json @@ -0,0 +1,39 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v23/values-v23.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v23/values-v23.xml", + "from": { + "startLines": "2,3,4,5,6,19,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", + "endLines": "2,3,4,5,18,31,32,33,34,35,36", + "endColumns": "134,134,74,86,12,12,126,104,114,106,112", + "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/res/values-v23/values-v23.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "4", + "endColumns": "12", + "endOffsets": "200" + }, + "to": { + "startLines": "37", + "startColumns": "4", + "startOffsets": "2646", + "endLines": "39", + "endColumns": "12", + "endOffsets": "2791" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v24.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v24.json new file mode 100644 index 0000000000000000000000000000000000000000..1f0225292de8f34886ac118ac01e2a140cd78da1 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v24.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v24/values-v24.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/values-v24/values-v24.xml", + "from": { + "startLines": "2,3,4,5", + "startColumns": "4,4,4,4", + "startOffsets": "55,121,182,248", + "endColumns": "65,60,65,66", + "endOffsets": "116,177,243,310" + }, + "to": { + "startLines": "4,5,6,7", + "startColumns": "4,4,4,4", + "startOffsets": "347,413,474,540", + "endColumns": "65,60,65,66", + "endOffsets": "408,469,535,602" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v24/values-v24.xml", + "from": { + "startLines": "2,3", + "startColumns": "4,4", + "startOffsets": "55,212", + "endColumns": "156,134", + "endOffsets": "207,342" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v25.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v25.json new file mode 100644 index 0000000000000000000000000000000000000000..123105b36a95f738a522e02c7abaca2f4948045a --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v25.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v25/values-v25.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v25/values-v25.xml", + "from": { + "startLines": "2,3,4,6", + "startColumns": "4,4,4,4", + "startOffsets": "55,126,209,308", + "endLines": "2,3,5,7", + "endColumns": "70,82,12,12", + "endOffsets": "121,204,303,414" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v26.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v26.json new file mode 100644 index 0000000000000000000000000000000000000000..62193139686bf3733a05d66502e819d1c50279fc --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v26.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v26/values-v26.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v26/values-v26.xml", + "from": { + "startLines": "2,3,4,8,12,16", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,130,217,431,657,896", + "endLines": "2,3,7,11,15,16", + "endColumns": "74,86,12,12,12,92", + "endOffsets": "125,212,426,652,891,984" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v28.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v28.json new file mode 100644 index 0000000000000000000000000000000000000000..2b197a0bb0dfdd099a4def32c4dae729f8a4582c --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-v28.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v28/values-v28.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-v28/values-v28.xml", + "from": { + "startLines": "2,3,4,8", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,447", + "endLines": "2,3,7,11", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,442,684" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-vi.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-vi.json new file mode 100644 index 0000000000000000000000000000000000000000..8ed3e862d774b081d9d2456fad6ffc79c974083e --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-vi.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-vi/values-vi.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-vi/values-vi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2901", + "endColumns": "100", + "endOffsets": "2997" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-vi/values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,219,327,436,520,623,742,819,896,987,1080,1176,1270,1371,1464,1559,1657,1748,1839,1923,2027,2136,2237,2342,2456,2561,2718,2817", + "endColumns": "113,107,108,83,102,118,76,76,90,92,95,93,100,92,94,97,90,90,83,103,108,100,104,113,104,156,98,83", + "endOffsets": "214,322,431,515,618,737,814,891,982,1075,1171,1265,1366,1459,1554,1652,1743,1834,1918,2022,2131,2232,2337,2451,2556,2713,2812,2896" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-watch-v20.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-watch-v20.json new file mode 100644 index 0000000000000000000000000000000000000000..a6b3f95c65b4386eacb4e54ac20beff08d2c0e8a --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-watch-v20.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-watch-v20/values-watch-v20.xml", + "from": { + "startLines": "2,5,8", + "startColumns": "4,4,4", + "startOffsets": "55,214,385", + "endLines": "4,7,10", + "endColumns": "12,12,12", + "endOffsets": "209,380,553" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-watch-v21.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-watch-v21.json new file mode 100644 index 0000000000000000000000000000000000000000..5e23e7243759c27a034f974913be522fb09e10f5 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-watch-v21.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-watch-v21/values-watch-v21.xml", + "from": { + "startLines": "2,6,10", + "startColumns": "4,4,4", + "startOffsets": "55,271,499", + "endLines": "5,9,13", + "endColumns": "12,12,12", + "endOffsets": "266,494,724" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-xlarge-v4.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-xlarge-v4.json new file mode 100644 index 0000000000000000000000000000000000000000..e8c979bc3664286a9b96109e09894b33489ea5d4 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-xlarge-v4.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-xlarge-v4/values-xlarge-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,126,197,267,337,405", + "endColumns": "70,70,69,69,67,67", + "endOffsets": "121,192,262,332,400,468" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-zh-rCN.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-zh-rCN.json new file mode 100644 index 0000000000000000000000000000000000000000..698782378e4101b8dba59bb0864114d6524080a7 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-zh-rCN.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2744", + "endColumns": "100", + "endOffsets": "2840" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zh-rCN/values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,296,396,478,575,681,757,833,924,1017,1115,1211,1306,1399,1494,1586,1677,1768,1846,1942,2038,2133,2230,2325,2423,2572,2666", + "endColumns": "95,94,99,81,96,105,75,75,90,92,97,95,94,92,94,91,90,90,77,95,95,94,96,94,97,148,93,77", + "endOffsets": "196,291,391,473,570,676,752,828,919,1012,1110,1206,1301,1394,1489,1581,1672,1763,1841,1937,2033,2128,2225,2320,2418,2567,2661,2739" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-zh-rHK.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-zh-rHK.json new file mode 100644 index 0000000000000000000000000000000000000000..aaecdcd9fb61ba11520e3d483be3644c87d0796d --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-zh-rHK.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1110,1206,1302,1396,1492,1584,1676,1768,1846,1942,2038,2133,2230,2325,2423,2574,2668", + "endColumns": "94,92,99,81,96,107,75,75,91,93,91,95,95,93,95,91,91,91,77,95,95,94,96,94,97,150,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1105,1201,1297,1391,1487,1579,1671,1763,1841,1937,2033,2128,2225,2320,2418,2569,2663,2741" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zh-rHK/values-zh-rHK.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2746", + "endColumns": "100", + "endOffsets": "2842" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-zh-rTW.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-zh-rTW.json new file mode 100644 index 0000000000000000000000000000000000000000..153698b37a976bc1bc7e69e735a219438104a019 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-zh-rTW.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2753", + "endColumns": "100", + "endOffsets": "2849" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zh-rTW/values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,293,393,475,572,680,756,832,924,1018,1116,1212,1308,1402,1498,1590,1682,1774,1852,1948,2044,2139,2236,2331,2431,2581,2675", + "endColumns": "94,92,99,81,96,107,75,75,91,93,97,95,95,93,95,91,91,91,77,95,95,94,96,94,99,149,93,77", + "endOffsets": "195,288,388,470,567,675,751,827,919,1013,1111,1207,1303,1397,1493,1585,1677,1769,1847,1943,2039,2134,2231,2326,2426,2576,2670,2748" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-zu.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-zu.json new file mode 100644 index 0000000000000000000000000000000000000000..fc15aa8a72e41a512f8de01ae0a5bd8fd72f7a5c --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values-zu.json @@ -0,0 +1,36 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zu/values-zu.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values-zu/values-zu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "30", + "startColumns": "4", + "startOffsets": "2898", + "endColumns": "100", + "endOffsets": "2994" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values-zu/values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,213,320,434,522,625,752,832,912,1003,1096,1190,1284,1385,1478,1573,1667,1758,1851,1937,2041,2147,2245,2352,2458,2564,2721,2817", + "endColumns": "107,106,113,87,102,126,79,79,90,92,93,93,100,92,94,93,90,92,85,103,105,97,106,105,105,156,95,80", + "endOffsets": "208,315,429,517,620,747,827,907,998,1091,1185,1279,1380,1473,1568,1662,1753,1846,1932,2036,2142,2240,2347,2453,2559,2716,2812,2893" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/multi-v2/values.json b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values.json new file mode 100644 index 0000000000000000000000000000000000000000..99056c843670fdeb838c91c6d91a4b3ca3387a58 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/multi-v2/values.json @@ -0,0 +1,210 @@ +{ + "logs": [ + { + "outputFile": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml", + "map": [ + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/4ffb752cdf66fc470b29b37942163402/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,95,138,185,240,285,339,391,440,501", + "endColumns": "39,42,46,54,44,53,51,48,60,49", + "endOffsets": "90,133,180,235,280,334,386,435,496,546" + }, + "to": { + "startLines": "364,371,374,375,376,389,390,391,392,393", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "23455,23785,23924,23971,24026,24620,24674,24726,24775,24836", + "endColumns": "39,42,46,54,44,53,51,48,60,49", + "endOffsets": "23490,23823,23966,24021,24066,24669,24721,24770,24831,24881" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/values/values.xml", + "from": { + "startLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,171,172,176,177,178,6,13,56,88,125", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,124,7725,7795,7863,7935,8005,8066,8140,8213,8274,8335,8397,8461,8523,8584,8652,8752,8812,8878,8951,9020,9077,9129,9191,9263,9339,9374,9409,9459,9520,9577,9611,9646,9681,9751,9822,9939,10140,10250,10451,10580,10652,319,617,3523,5588,7348", + "endLines": "2,3,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,170,171,175,176,177,178,12,55,87,124,131", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "119,182,7790,7858,7930,8000,8061,8135,8208,8269,8330,8392,8456,8518,8579,8647,8747,8807,8873,8946,9015,9072,9124,9186,9258,9334,9369,9404,9454,9515,9572,9606,9641,9676,9746,9817,9934,10135,10245,10446,10575,10647,10714,612,3518,5583,7343,7720" + }, + "to": { + "startLines": "111,112,217,218,219,220,221,222,223,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,358,359,367,368,380,381,382,383,384,388,410,466,2164,2165,2170,2173,2178,2541,2542,3603,3764,3807,3840,3877", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "7000,7069,14147,14217,14285,14357,14427,14488,14562,21459,21520,21581,21643,21707,21769,21830,21898,21998,22058,22124,22197,22266,22323,22375,23102,23174,23595,23630,24205,24255,24316,24373,24407,24585,25831,30605,143847,143964,144231,144524,144791,169193,169265,230242,239910,242816,245083,246843", + "endLines": "111,112,217,218,219,220,221,222,223,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,358,359,367,368,380,381,382,383,384,388,410,466,2164,2168,2170,2176,2178,2541,2542,3609,3806,3838,3876,3883", + "endColumns": "68,62,69,67,71,69,60,73,72,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,34,34,49,60,56,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24", + "endOffsets": "7064,7127,14212,14280,14352,14422,14483,14557,14630,21515,21576,21638,21702,21764,21825,21893,21993,22053,22119,22192,22261,22318,22370,22432,23169,23245,23625,23660,24250,24311,24368,24402,24437,24615,25896,30671,143959,144160,144336,144720,144915,169260,169327,230535,242811,244876,246838,247215" + } + }, + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values/colors.xml", + "from": { + "startLines": "4,8,7,1,2,3,5,6", + "startColumns": "2,2,2,2,2,2,2,2", + "startOffsets": "145,314,276,14,54,99,184,229", + "endColumns": "38,39,37,39,44,45,44,46", + "endOffsets": "181,351,311,51,96,142,226,273" + }, + "to": { + "startLines": "49,83,90,114,115,118,121,128", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "2845,5293,5736,7221,7263,7463,7658,8108", + "endColumns": "40,41,39,41,46,47,46,48", + "endOffsets": "2881,5330,5771,7258,7305,7506,7700,8152" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/9aa7e09576dc7293e1aad5f17168b77a/res/values/values.xml", + "from": { + "startLines": "30,31,32,33,34,35,36,2", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "1535,1594,1642,1698,1773,1849,1921,55", + "endLines": "30,31,32,33,34,35,36,29", + "endColumns": "58,47,55,74,75,71,65,24", + "endOffsets": "1589,1637,1693,1768,1844,1916,1982,1530" + }, + "to": { + "startLines": "270,271,272,280,281,282,366,4141", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "17612,17671,17719,18386,18461,18537,23529,261982", + "endLines": "270,271,272,280,281,282,366,4168", + "endColumns": "58,47,55,74,75,71,65,24", + "endOffsets": "17666,17714,17770,18456,18532,18604,23590,263457" + } + }, + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values/styles.xml", + "from": { + "startLines": "6,15", + "startColumns": "4,4", + "startOffsets": "186,510", + "endLines": "12,19", + "endColumns": "12,12", + "endOffsets": "472,807" + }, + "to": { + "startLines": "476,483", + "startColumns": "4,4", + "startOffsets": "31395,31686", + "endLines": "482,487", + "endColumns": "12,12", + "endOffsets": "31681,31983" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,35,36,37,38,45,47,50,7", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,107,168,230,292,2179,2238,2295,2349,2763,2827,2953,356", + "endLines": "2,3,4,5,6,35,36,37,44,46,49,52,34", + "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", + "endOffsets": "102,163,225,287,351,2233,2290,2344,2758,2822,2948,3076,2174" + }, + "to": { + "startLines": "6,64,65,66,67,214,215,216,509,1903,1905,1908,3522", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "382,4001,4062,4124,4186,13977,14036,14093,33439,123988,124052,124178,224313", + "endLines": "6,64,65,66,67,214,215,216,515,1904,1907,1910,3549", + "endColumns": "51,60,61,61,63,58,56,53,12,12,12,12,24", + "endOffsets": "429,4057,4119,4181,4245,14031,14088,14142,33848,124047,124173,124301,226131" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/88627de7ec5d8832b22b4a45185bed05/res/values/values.xml", + "from": { + "startLines": "2,102,3,13", + "startColumns": "4,4,4,4", + "startOffsets": "55,5935,116,724", + "endLines": "2,104,12,101", + "endColumns": "60,12,24,24", + "endOffsets": "111,6075,719,5930" + }, + "to": { + "startLines": "11,2817,3636,3646", + "startColumns": "4,4,4,4", + "startOffsets": "642,186016,231932,232540", + "endLines": "11,2819,3645,3734", + "endColumns": "60,12,24,24", + "endOffsets": "698,186156,232535,237746" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1461,1462,1466,1470,1474,1479,1485,1492,1496,1500,1505,1509,1513,1517,1521,1525,1529,1535,1539,1545,1549,1555,1559,1564,1568,1571,1575,1581,1585,1591,1595,1601,1604,1608,1612,1616,1620,1624,1625,1626,1627,1630,1633,1636,1639,1643,1644,1645,1646,1647,1650,1652,1654,1656,1661,1662,1666,1672,1676,1677,1679,1690,1691,1695,1701,1705,1706,1707,1711,1738,1742,1743,1747,1775,1943,1969,2138,2164,2195,2203,2209,2223,2245,2250,2255,2265,2274,2283,2287,2294,2302,2309,2310,2319,2322,2325,2329,2333,2337,2340,2341,2345,2349,2359,2364,2371,2377,2378,2381,2385,2390,2392,2394,2397,2400,2402,2406,2409,2416,2419,2422,2426,2428,2432,2434,2436,2438,2442,2450,2458,2470,2476,2485,2488,2499,2502,2507,2508,2513,2571,2630,2631,2641,2650,2651,2653,2657,2660,2663,2666,2669,2672,2675,2678,2682,2685,2688,2691,2695,2698,2702,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2728,2730,2731,2732,2733,2734,2735,2736,2737,2739,2740,2742,2743,2745,2747,2748,2750,2751,2752,2753,2754,2755,2757,2758,2759,2760,2761,2762,2764,2766,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2782,2783,2784,2785,2786,2787,2789,2793,2797,2798,2799,2800,2801,2802,2803,2804,2806,2808,2810,2812,2814,2815,2816,2817,2819,2821,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2837,2838,2839,2840,2842,2844,2845,2847,2848,2850,2852,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2867,2868,2869,2870,2872,2873,2874,2875,2876,2878,2880,2882,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,69,152,155,158,161,175,186,196,223,230,241,271,298,307,344,725,730,756,774,810,816,822,845,986,1006,1012,1016,1022,1059,1071,1098,1103,1169,1184,1249,1268,1294", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,160,205,254,295,350,409,471,552,613,688,764,841,919,1004,1086,1162,1238,1315,1393,1499,1605,1684,1764,1821,1879,1953,2028,2093,2159,2219,2280,2352,2425,2492,2560,2619,2678,2737,2796,2855,2909,2963,3016,3070,3124,3178,3232,3306,3385,3458,3532,3603,3675,3747,3820,3877,3935,4008,4082,4156,4231,4303,4376,4446,4517,4577,70911,70980,71049,71119,71193,71269,71333,71410,71486,71563,71628,71697,71774,71849,71918,71986,72063,72129,72190,72287,72352,72421,72520,72591,72650,72708,72765,72824,72888,72959,73031,73103,73175,73247,73314,73382,73450,73509,73572,73636,73726,73817,73877,73943,74010,74076,74146,74210,74263,74376,74434,74497,74562,74627,74702,74775,74847,74896,74957,75018,75079,75141,75205,75269,75333,75398,75461,75521,75582,75648,75707,75767,75829,75900,75960,76028,76114,76201,76291,76378,76466,76548,76631,76721,76812,76864,76922,76967,77033,77097,77154,77211,77265,77322,77370,77419,77470,77504,77551,77600,77646,77678,77742,77804,77864,77921,77995,78065,78143,78197,78267,78352,78400,78446,78517,78595,78673,78745,78819,78893,78967,79047,79120,79189,79261,79338,79399,79462,79528,79592,79663,79726,79791,79855,79916,79977,80029,80102,80176,80245,80320,80394,80468,80609,80679,80732,80810,80900,80988,81084,81174,81756,81845,82092,82373,82625,82910,83303,83780,84002,84224,84500,84727,84957,85187,85417,85647,85874,86293,86519,86944,87174,87602,87821,88104,88312,88443,88670,89096,89321,89748,89969,90394,90514,90790,91091,91415,91706,92020,92157,92288,92393,92635,92802,93006,93214,93485,93597,93709,93814,93931,94145,94291,94431,94517,94865,94953,95199,95617,95866,95948,96046,96663,96763,97015,97439,97694,97788,97877,98114,100166,100408,100510,100763,102947,113668,115184,126004,127532,129289,129915,130335,131396,132661,132917,133153,133700,134194,134799,134997,135577,136141,136516,136634,137172,137329,137525,137798,138054,138224,138365,138429,138711,138997,139673,139937,140275,140628,140722,140908,141214,141476,141601,141728,141967,142178,142297,142490,142667,143122,143303,143425,143684,143797,143984,144086,144193,144322,144597,145105,145601,146478,146772,147342,147491,148223,148395,148731,148823,149101,153445,157932,157994,158624,159238,159329,159442,159671,159831,159983,160154,160320,160489,160656,160819,161062,161232,161405,161576,161850,162049,162254,162584,162668,162764,162860,162958,163058,163160,163262,163364,163466,163568,163668,163764,163876,164005,164128,164259,164390,164488,164602,164696,164836,164970,165066,165178,165278,165394,165490,165602,165702,165842,165978,166142,166272,166430,166580,166721,166865,167000,167112,167262,167390,167518,167654,167786,167916,168046,168158,168298,168444,168588,168726,168792,168882,168958,169062,169152,169254,169362,169470,169570,169650,169742,169840,169950,170028,170134,170226,170330,170440,170562,170725,170882,170962,171062,171152,171262,171356,171462,171554,171654,171766,171880,171996,172112,172206,172320,172432,172534,172654,172776,172858,172962,173082,173208,173306,173400,173488,173600,173716,173838,173950,174125,174241,174327,174419,174531,174655,174722,174848,174916,175044,175188,175316,175385,175480,175595,175708,175807,175916,176027,176138,176239,176344,176444,176574,176665,176788,176882,176994,177080,177184,177280,177368,177486,177590,177694,177820,177908,178016,178116,178206,178316,178400,178502,178586,178640,178704,178810,178920,179004,4638,9782,9900,10015,10147,10862,11554,12071,13718,14103,14700,16299,17832,18220,20527,40045,40305,41697,42730,44743,45005,45361,46191,52973,54107,54401,54624,54951,57001,57649,59282,59552,63403,64004,67813,69028,70437", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1460,1461,1465,1469,1473,1478,1484,1491,1495,1499,1504,1508,1512,1516,1520,1524,1528,1534,1538,1544,1548,1554,1558,1563,1567,1570,1574,1580,1584,1590,1594,1600,1603,1607,1611,1615,1619,1623,1624,1625,1626,1629,1632,1635,1638,1642,1643,1644,1645,1646,1649,1651,1653,1655,1660,1661,1665,1671,1675,1676,1678,1689,1690,1694,1700,1704,1705,1706,1710,1737,1741,1742,1746,1774,1942,1968,2137,2163,2194,2202,2208,2222,2244,2249,2254,2264,2273,2282,2286,2293,2301,2308,2309,2318,2321,2324,2328,2332,2336,2339,2340,2344,2348,2358,2363,2370,2376,2377,2380,2384,2389,2391,2393,2396,2399,2401,2405,2408,2415,2418,2421,2425,2427,2431,2433,2435,2437,2441,2449,2457,2469,2475,2484,2487,2498,2501,2506,2507,2512,2570,2629,2630,2640,2649,2650,2652,2656,2659,2662,2665,2668,2671,2674,2677,2681,2684,2687,2690,2694,2697,2701,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2727,2729,2730,2731,2732,2733,2734,2735,2736,2738,2739,2741,2742,2744,2746,2747,2749,2750,2751,2752,2753,2754,2756,2757,2758,2759,2760,2761,2763,2765,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2781,2782,2783,2784,2785,2786,2788,2792,2796,2797,2798,2799,2800,2801,2802,2803,2805,2807,2809,2811,2813,2814,2815,2816,2818,2820,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2836,2837,2838,2839,2841,2843,2844,2846,2847,2849,2851,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2866,2867,2868,2869,2871,2872,2873,2874,2875,2877,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,151,154,157,160,174,185,195,222,229,240,270,297,306,343,724,729,755,773,809,815,821,844,985,1005,1011,1015,1021,1058,1070,1097,1102,1168,1183,1248,1267,1293,1302", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "155,200,249,290,345,404,466,547,608,683,759,836,914,999,1081,1157,1233,1310,1388,1494,1600,1679,1759,1816,1874,1948,2023,2088,2154,2214,2275,2347,2420,2487,2555,2614,2673,2732,2791,2850,2904,2958,3011,3065,3119,3173,3227,3301,3380,3453,3527,3598,3670,3742,3815,3872,3930,4003,4077,4151,4226,4298,4371,4441,4512,4572,4633,70975,71044,71114,71188,71264,71328,71405,71481,71558,71623,71692,71769,71844,71913,71981,72058,72124,72185,72282,72347,72416,72515,72586,72645,72703,72760,72819,72883,72954,73026,73098,73170,73242,73309,73377,73445,73504,73567,73631,73721,73812,73872,73938,74005,74071,74141,74205,74258,74371,74429,74492,74557,74622,74697,74770,74842,74891,74952,75013,75074,75136,75200,75264,75328,75393,75456,75516,75577,75643,75702,75762,75824,75895,75955,76023,76109,76196,76286,76373,76461,76543,76626,76716,76807,76859,76917,76962,77028,77092,77149,77206,77260,77317,77365,77414,77465,77499,77546,77595,77641,77673,77737,77799,77859,77916,77990,78060,78138,78192,78262,78347,78395,78441,78512,78590,78668,78740,78814,78888,78962,79042,79115,79184,79256,79333,79394,79457,79523,79587,79658,79721,79786,79850,79911,79972,80024,80097,80171,80240,80315,80389,80463,80604,80674,80727,80805,80895,80983,81079,81169,81751,81840,82087,82368,82620,82905,83298,83775,83997,84219,84495,84722,84952,85182,85412,85642,85869,86288,86514,86939,87169,87597,87816,88099,88307,88438,88665,89091,89316,89743,89964,90389,90509,90785,91086,91410,91701,92015,92152,92283,92388,92630,92797,93001,93209,93480,93592,93704,93809,93926,94140,94286,94426,94512,94860,94948,95194,95612,95861,95943,96041,96658,96758,97010,97434,97689,97783,97872,98109,100161,100403,100505,100758,102942,113663,115179,125999,127527,129284,129910,130330,131391,132656,132912,133148,133695,134189,134794,134992,135572,136136,136511,136629,137167,137324,137520,137793,138049,138219,138360,138424,138706,138992,139668,139932,140270,140623,140717,140903,141209,141471,141596,141723,141962,142173,142292,142485,142662,143117,143298,143420,143679,143792,143979,144081,144188,144317,144592,145100,145596,146473,146767,147337,147486,148218,148390,148726,148818,149096,153440,157927,157989,158619,159233,159324,159437,159666,159826,159978,160149,160315,160484,160651,160814,161057,161227,161400,161571,161845,162044,162249,162579,162663,162759,162855,162953,163053,163155,163257,163359,163461,163563,163663,163759,163871,164000,164123,164254,164385,164483,164597,164691,164831,164965,165061,165173,165273,165389,165485,165597,165697,165837,165973,166137,166267,166425,166575,166716,166860,166995,167107,167257,167385,167513,167649,167781,167911,168041,168153,168293,168439,168583,168721,168787,168877,168953,169057,169147,169249,169357,169465,169565,169645,169737,169835,169945,170023,170129,170221,170325,170435,170557,170720,170877,170957,171057,171147,171257,171351,171457,171549,171649,171761,171875,171991,172107,172201,172315,172427,172529,172649,172771,172853,172957,173077,173203,173301,173395,173483,173595,173711,173833,173945,174120,174236,174322,174414,174526,174650,174717,174843,174911,175039,175183,175311,175380,175475,175590,175703,175802,175911,176022,176133,176234,176339,176439,176569,176660,176783,176877,176989,177075,177179,177275,177363,177481,177585,177689,177815,177903,178011,178111,178201,178311,178395,178497,178581,178635,178699,178805,178915,178999,179119,9777,9895,10010,10142,10857,11549,12066,13713,14098,14695,16294,17827,18215,20522,40040,40300,41692,42725,44738,45000,45356,46186,52968,54102,54396,54619,54946,56996,57644,59277,59547,63398,63999,67808,69023,70432,70906" + }, + "to": { + "startLines": "12,14,16,40,41,42,43,45,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,79,80,81,82,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,116,117,119,120,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,268,269,273,274,275,276,277,278,279,350,351,352,353,354,355,356,357,360,361,362,363,365,372,373,379,394,396,397,400,401,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,465,467,468,469,470,471,488,496,497,501,505,516,521,527,534,538,542,547,551,555,559,563,567,571,577,581,587,591,597,601,606,610,613,617,623,627,633,637,643,646,650,654,658,662,666,667,668,669,672,675,678,681,685,686,687,688,689,692,694,696,698,703,704,708,714,718,719,721,732,733,737,743,747,801,802,806,833,837,838,842,1092,1260,1286,1455,1481,1512,1520,1526,1540,1562,1567,1572,1582,1591,1600,1604,1611,1619,1626,1627,1636,1639,1642,1646,1650,1654,1657,1658,1662,1666,1676,1681,1688,1694,1695,1698,1702,1707,1709,1711,1714,1717,1719,1723,1726,1733,1736,1739,1743,1745,1749,1751,1753,1755,1759,1767,1775,1787,1793,1802,1805,1816,1819,1824,1825,1911,1969,2032,2033,2043,2052,2053,2055,2059,2062,2065,2068,2071,2074,2077,2080,2084,2087,2090,2093,2097,2100,2104,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2130,2132,2133,2134,2135,2136,2137,2138,2139,2141,2142,2144,2145,2147,2149,2150,2152,2153,2154,2155,2156,2157,2159,2160,2161,2162,2163,2318,2320,2322,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2338,2339,2340,2341,2342,2343,2345,2349,2418,2419,2420,2421,2422,2423,2424,2447,2449,2451,2453,2455,2457,2458,2459,2460,2462,2464,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2480,2481,2482,2483,2485,2487,2488,2490,2491,2493,2495,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2510,2511,2512,2513,2515,2516,2517,2518,2519,2521,2523,2525,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2820,2903,2906,2909,2912,2926,2937,2947,2974,2981,3013,3043,3070,3079,3116,3517,3610,3736,3884,3920,3926,3940,3963,4104,4125,4131,4135,4171,4210,4222,4249,4254,4344,4379,4444,4463,4489", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "703,803,901,2273,2314,2369,2428,2552,2633,2694,2769,2886,2963,3041,3126,3208,3284,3360,3437,3515,3621,3727,3806,3886,3943,5013,5087,5162,5227,5335,5395,5456,5528,5601,5668,5776,5835,5894,5953,6012,6071,6125,6179,6232,6286,6340,6394,7310,7384,7511,7584,7705,7776,7848,7920,7993,8050,8157,8230,8304,8378,8453,8525,8598,8668,8739,8799,8860,8929,8998,9068,9142,9218,9282,9359,9435,9512,9577,9646,9723,9798,9867,9935,10012,10078,10139,10236,10301,10370,10469,10540,10599,10657,10714,10773,10837,10908,10980,11052,11124,11196,11263,11331,11399,11458,11521,11585,11675,11766,11826,11892,11959,12025,12095,12159,12212,12325,12383,12446,12511,12576,12651,12724,12796,12845,12906,12967,13028,13090,13154,13218,13282,13347,13410,13470,13531,13597,13656,13716,13778,13849,13909,17439,17525,17775,17865,17952,18040,18122,18205,18295,22649,22701,22759,22804,22870,22934,22991,23048,23250,23307,23355,23404,23495,23828,23875,24159,24886,24966,25030,25220,25280,25901,25975,26045,26123,26177,26247,26332,26380,26426,26497,26575,26653,26725,26799,26873,26947,27027,27100,27169,27241,27318,27379,27442,27508,27572,27643,27706,27771,27835,27896,27957,28009,28082,28156,28225,28300,28374,28448,28589,30552,30676,30754,30844,30932,31028,31988,32570,32659,32906,33187,33853,34138,34531,35008,35230,35452,35728,35955,36185,36415,36645,36875,37102,37521,37747,38172,38402,38830,39049,39332,39540,39671,39898,40324,40549,40976,41197,41622,41742,42018,42319,42643,42934,43248,43385,43516,43621,43863,44030,44234,44442,44713,44825,44937,45042,45159,45373,45519,45659,45745,46093,46181,46427,46845,47094,47176,47274,47891,47991,48243,48667,48922,52749,52838,53075,55127,55369,55471,55724,74105,84826,86342,97162,98690,100447,101073,101493,102554,103819,104075,104311,104858,105352,105957,106155,106735,107299,107674,107792,108330,108487,108683,108956,109212,109382,109523,109587,109869,110155,110831,111095,111433,111786,111880,112066,112372,112634,112759,112886,113125,113336,113455,113648,113825,114280,114461,114583,114842,114955,115142,115244,115351,115480,115755,116263,116759,117636,117930,118500,118649,119381,119553,119889,119981,124306,128650,133481,133543,134173,134787,134878,134991,135220,135380,135532,135703,135869,136038,136205,136368,136611,136781,136954,137125,137399,137598,137803,138133,138217,138313,138409,138507,138607,138709,138811,138913,139015,139117,139217,139313,139425,139554,139677,139808,139939,140037,140151,140245,140385,140519,140615,140727,140827,140943,141039,141151,141251,141391,141527,141691,141821,141979,142129,142270,142414,142549,142661,142811,142939,143067,143203,143335,143465,143595,143707,152433,152579,152723,152861,152927,153017,153093,153197,153287,153389,153497,153605,153705,153785,153877,153975,154085,154163,154269,154361,154465,154575,154697,154860,159345,159425,159525,159615,159725,159819,159925,161623,161723,161835,161949,162065,162181,162275,162389,162501,162603,162723,162845,162927,163031,163151,163277,163375,163469,163557,163669,163785,163907,164019,164194,164310,164396,164488,164600,164724,164791,164917,164985,165113,165257,165385,165454,165549,165664,165777,165876,165985,166096,166207,166308,166413,166513,166643,166734,166857,166951,167063,167149,167253,167349,167437,167555,167659,167763,167889,167977,168085,168185,168275,168385,168469,168571,168655,168709,168773,168879,168989,169073,186161,191305,191423,191538,191670,192385,193077,193594,195241,195626,197274,198873,200406,200794,203101,224053,230540,237882,247220,249233,249495,251825,252655,259437,261138,261432,261655,263724,266109,266757,268390,268660,274440,277089,280898,282113,283522", + "endLines": "12,14,16,40,41,42,43,45,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,79,80,81,82,84,85,86,87,88,89,91,92,93,94,95,96,97,98,99,100,101,102,116,117,119,120,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,268,269,273,274,275,276,277,278,279,350,351,352,353,354,355,356,357,360,361,362,363,365,372,373,379,394,396,397,400,401,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,465,467,468,469,470,471,495,496,500,504,508,520,526,533,537,541,546,550,554,558,562,566,570,576,580,586,590,596,600,605,609,612,616,622,626,632,636,642,645,649,653,657,661,665,666,667,668,671,674,677,680,684,685,686,687,688,691,693,695,697,702,703,707,713,717,718,720,731,732,736,742,746,747,801,805,832,836,837,841,869,1259,1285,1454,1480,1511,1519,1525,1539,1561,1566,1571,1581,1590,1599,1603,1610,1618,1625,1626,1635,1638,1641,1645,1649,1653,1656,1657,1661,1665,1675,1680,1687,1693,1694,1697,1701,1706,1708,1710,1713,1716,1718,1722,1725,1732,1735,1738,1742,1744,1748,1750,1752,1754,1758,1766,1774,1786,1792,1801,1804,1815,1818,1823,1824,1829,1968,2027,2032,2042,2051,2052,2054,2058,2061,2064,2067,2070,2073,2076,2079,2083,2086,2089,2092,2096,2099,2103,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2129,2131,2132,2133,2134,2135,2136,2137,2138,2140,2141,2143,2144,2146,2148,2149,2151,2152,2153,2154,2155,2156,2158,2159,2160,2161,2162,2163,2319,2321,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2337,2338,2339,2340,2341,2342,2344,2348,2352,2418,2419,2420,2421,2422,2423,2424,2448,2450,2452,2454,2456,2457,2458,2459,2461,2463,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2479,2480,2481,2482,2484,2486,2487,2489,2490,2492,2494,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2509,2510,2511,2512,2514,2515,2516,2517,2518,2520,2522,2524,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2902,2905,2908,2911,2925,2936,2946,2973,2980,2991,3042,3069,3078,3115,3496,3521,3635,3753,3919,3925,3931,3962,4103,4123,4130,4134,4140,4207,4221,4248,4253,4319,4358,4443,4462,4488,4497", + "endColumns": "54,44,48,40,54,58,61,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,59,60,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,59,60,68,68,69,73,75,63,76,75,76,64,68,76,74,68,67,76,65,60,96,64,68,98,70,58,57,56,58,63,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,51,57,44,65,63,56,56,53,56,47,48,50,33,46,48,45,31,63,61,59,56,73,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,60,62,65,63,70,62,64,63,60,60,51,72,73,68,74,73,73,140,69,52,77,89,87,95,89,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,91,12,12,12,61,12,12,90,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,95,111,99,115,95,111,99,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24", + "endOffsets": "753,843,945,2309,2364,2423,2485,2628,2689,2764,2840,2958,3036,3121,3203,3279,3355,3432,3510,3616,3722,3801,3881,3938,3996,5082,5157,5222,5288,5390,5451,5523,5596,5663,5731,5830,5889,5948,6007,6066,6120,6174,6227,6281,6335,6389,6443,7379,7458,7579,7653,7771,7843,7915,7988,8045,8103,8225,8299,8373,8448,8520,8593,8663,8734,8794,8855,8924,8993,9063,9137,9213,9277,9354,9430,9507,9572,9641,9718,9793,9862,9930,10007,10073,10134,10231,10296,10365,10464,10535,10594,10652,10709,10768,10832,10903,10975,11047,11119,11191,11258,11326,11394,11453,11516,11580,11670,11761,11821,11887,11954,12020,12090,12154,12207,12320,12378,12441,12506,12571,12646,12719,12791,12840,12901,12962,13023,13085,13149,13213,13277,13342,13405,13465,13526,13592,13651,13711,13773,13844,13904,13972,17520,17607,17860,17947,18035,18117,18200,18290,18381,22696,22754,22799,22865,22929,22986,23043,23097,23302,23350,23399,23450,23524,23870,23919,24200,24913,25025,25087,25275,25332,25970,26040,26118,26172,26242,26327,26375,26421,26492,26570,26648,26720,26794,26868,26942,27022,27095,27164,27236,27313,27374,27437,27503,27567,27638,27701,27766,27830,27891,27952,28004,28077,28151,28220,28295,28369,28443,28584,28654,30600,30749,30839,30927,31023,31113,32565,32654,32901,33182,33434,34133,34526,35003,35225,35447,35723,35950,36180,36410,36640,36870,37097,37516,37742,38167,38397,38825,39044,39327,39535,39666,39893,40319,40544,40971,41192,41617,41737,42013,42314,42638,42929,43243,43380,43511,43616,43858,44025,44229,44437,44708,44820,44932,45037,45154,45368,45514,45654,45740,46088,46176,46422,46840,47089,47171,47269,47886,47986,48238,48662,48917,49011,52833,53070,55122,55364,55466,55719,57903,84821,86337,97157,98685,100442,101068,101488,102549,103814,104070,104306,104853,105347,105952,106150,106730,107294,107669,107787,108325,108482,108678,108951,109207,109377,109518,109582,109864,110150,110826,111090,111428,111781,111875,112061,112367,112629,112754,112881,113120,113331,113450,113643,113820,114275,114456,114578,114837,114950,115137,115239,115346,115475,115750,116258,116754,117631,117925,118495,118644,119376,119548,119884,119976,120254,128645,133132,133538,134168,134782,134873,134986,135215,135375,135527,135698,135864,136033,136200,136363,136606,136776,136949,137120,137394,137593,137798,138128,138212,138308,138404,138502,138602,138704,138806,138908,139010,139112,139212,139308,139420,139549,139672,139803,139934,140032,140146,140240,140380,140514,140610,140722,140822,140938,141034,141146,141246,141386,141522,141686,141816,141974,142124,142265,142409,142544,142656,142806,142934,143062,143198,143330,143460,143590,143702,143842,152574,152718,152856,152922,153012,153088,153192,153282,153384,153492,153600,153700,153780,153872,153970,154080,154158,154264,154356,154460,154570,154692,154855,155012,159420,159520,159610,159720,159814,159920,160012,161718,161830,161944,162060,162176,162270,162384,162496,162598,162718,162840,162922,163026,163146,163272,163370,163464,163552,163664,163780,163902,164014,164189,164305,164391,164483,164595,164719,164786,164912,164980,165108,165252,165380,165449,165544,165659,165772,165871,165980,166091,166202,166303,166408,166508,166638,166729,166852,166946,167058,167144,167248,167344,167432,167550,167654,167758,167884,167972,168080,168180,168270,168380,168464,168566,168650,168704,168768,168874,168984,169068,169188,191300,191418,191533,191665,192380,193072,193589,195236,195621,196218,198868,200401,200789,203096,222614,224308,231927,238910,249228,249490,249846,252650,259432,260566,261427,261650,261977,265769,266752,268385,268655,272506,275036,280893,282108,283517,283991" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/values/values.xml", + "from": { + "startLines": "2,5,6,7,8,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,288,341,394,447,560,626,748,809,875", + "endColumns": "88,52,52,52,52,65,121,60,65,66", + "endOffsets": "139,336,389,442,495,621,743,804,870,937" + }, + "to": { + "startLines": "113,346,347,348,349,2169,2171,2172,2177,2179", + "startColumns": "4,4,4,4,4,4,4,4,4,4", + "startOffsets": "7132,22437,22490,22543,22596,144165,144341,144463,144725,144920", + "endColumns": "88,52,52,52,52,65,121,60,65,66", + "endOffsets": "7216,22485,22538,22591,22644,144226,144458,144519,144786,144982" + } + }, + { + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/values/strings.xml", + "from": { + "startLines": "2,3", + "startColumns": "2,2", + "startOffsets": "53,99", + "endColumns": "45,50", + "endOffsets": "96,147" + }, + "to": { + "startLines": "450,457", + "startColumns": "4,4", + "startOffsets": "28659,29468", + "endColumns": "47,52", + "endOffsets": "28702,29516" + } + }, + { + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/values/values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,345,346,347,352,353,357,363,367,368,369,370,381,382,383,387,393,397,398,399,400,430,450,496,526,546,566,612,616,620,634,675,683,693,694,695,696,697,700,701,704,707,708,711,715,720,728,736,745,753,757,765,773,781,789,797,806,815,823,832,835,837,842,844,849,853,857,858,863,864,865,866,867,868,870,871,876,877,878,879,880,881,882,884,888,892,896,900,901,902,903,904,905,906,907,908,911,915,918,922,930,937,946,950,965,973,976,985,990,1001,1009,1012,1021,1028,1029,1048,1051,1057,1060,1069,1072,1075,1078,1081,1084,1088,1091,1100,1103,1111,1116,1124,1129,1133,1134,1145,1152,1156,1160,1161,1165,1173,1177,1182,1187,55,56,57,76,82,92,96,97,98,141,149,150,158,159,160,161,167,168,169,170,171,172,173,174,175,198,217", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "100,156,216,277,332,385,443,491,540,585,638,696,756,814,860,920,973,1019,1069,1116,1174,1232,1291,1351,1413,1475,1537,1599,1661,1723,1784,1846,1908,1961,2023,2097,2160,2228,2309,2373,2439,2509,2579,2649,2719,2786,2849,2914,2980,3033,3109,3175,3262,18372,18426,18505,18583,18656,18721,18784,18850,18921,18992,19054,19123,19189,19256,19323,19379,19430,19483,19535,19589,19660,19723,19782,19844,19903,19976,20043,20103,20166,20241,20313,20384,20440,20511,20568,20625,20691,20755,20826,20883,20936,20999,21051,21109,21176,21242,21308,21389,21464,21520,21573,21634,21692,21742,21791,21840,21889,21951,22003,22048,22129,22183,22236,22290,22341,22390,22441,22502,22563,22625,22675,22716,22766,22814,22876,22927,22976,23045,23106,23162,23233,23298,23367,23418,23481,23551,23620,23690,23752,23822,23892,23967,24026,24084,24146,24191,24234,24281,24326,24377,24425,24491,24553,24616,24688,24745,24802,24862,24920,24990,25047,25192,25313,25417,25504,25656,25808,25956,26037,26115,26416,26582,26737,26839,27116,27209,27316,27659,27766,27995,28404,28636,28736,28841,28960,29583,29730,29849,30084,30499,30737,30849,30970,31103,33241,34757,38048,40182,41710,43254,46541,46787,47046,47850,49610,50060,50775,50848,50935,51020,51119,51314,51406,51579,51741,51836,52005,52248,52541,52950,53364,53824,54242,54483,54913,55348,55758,56180,56590,57047,57501,57917,58383,58565,58633,58977,59057,59413,59563,59707,59791,60156,60254,60362,60460,60570,60686,60812,60908,61285,61395,61519,61657,61767,61889,62017,62155,62317,62533,62689,62893,62977,63081,63175,63289,63401,63525,63621,63701,63890,64096,64289,64499,64931,65352,65777,65974,66922,67443,67566,68203,68424,69239,69708,69891,70487,70947,71052,72313,72463,72880,73045,73725,73884,74046,74201,74397,74564,74786,74946,75323,75482,75810,76027,76602,76952,77201,77298,78004,78442,78683,78872,79006,79197,79834,80084,80387,80602,3338,3636,3892,4389,4823,5480,5823,7362,7710,9607,9929,10060,10766,10903,11055,11257,11962,12082,13231,13798,13927,14060,14220,14395,14537,16324,18162", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,344,345,346,351,352,356,362,366,367,368,369,380,381,382,386,392,396,397,398,399,429,449,495,525,545,565,611,615,619,633,674,682,692,693,694,695,696,699,700,703,706,707,710,714,719,727,735,744,752,756,764,772,780,788,796,805,814,822,831,834,836,841,843,848,852,856,857,862,863,864,865,866,867,869,870,875,876,877,878,879,880,881,883,887,891,895,899,900,901,902,903,904,905,906,907,910,914,917,921,929,936,945,949,964,972,975,984,989,1000,1008,1011,1020,1027,1028,1047,1050,1056,1059,1068,1071,1074,1077,1080,1083,1087,1090,1099,1102,1110,1115,1123,1128,1132,1133,1144,1151,1155,1159,1160,1164,1172,1176,1181,1186,1195,55,56,75,81,91,95,96,97,140,148,149,157,158,159,160,166,167,168,169,170,171,172,173,174,197,216,217", + "endColumns": "55,59,60,54,52,57,47,48,44,52,57,59,57,45,59,52,45,49,46,57,57,58,59,61,61,61,61,61,61,60,61,61,52,61,73,62,67,80,63,65,69,69,69,69,66,62,64,65,52,75,65,86,75,53,78,77,72,64,62,65,70,70,61,68,65,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,70,55,70,56,56,65,63,70,56,52,62,51,57,66,65,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,53,52,53,50,48,50,60,60,61,49,40,49,47,61,50,48,68,60,55,70,64,68,50,62,69,68,69,61,69,69,74,58,57,61,44,42,46,44,50,47,65,61,62,71,56,56,59,57,69,56,144,120,103,86,151,151,147,80,77,300,165,154,101,10,92,106,10,106,10,10,10,99,104,118,10,146,118,10,10,10,111,120,132,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,91,10,10,94,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,83,10,97,107,97,109,115,10,95,10,109,123,137,109,121,127,10,10,10,10,10,83,103,93,113,111,123,95,79,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,96,10,10,10,10,133,10,10,10,10,10,10,297,255,90,243,367,188,1538,347,95,94,130,412,136,151,201,220,119,1148,566,128,132,159,174,141,125,457,209", + "endOffsets": "151,211,272,327,380,438,486,535,580,633,691,751,809,855,915,968,1014,1064,1111,1169,1227,1286,1346,1408,1470,1532,1594,1656,1718,1779,1841,1903,1956,2018,2092,2155,2223,2304,2368,2434,2504,2574,2644,2714,2781,2844,2909,2975,3028,3104,3170,3257,3333,18421,18500,18578,18651,18716,18779,18845,18916,18987,19049,19118,19184,19251,19318,19374,19425,19478,19530,19584,19655,19718,19777,19839,19898,19971,20038,20098,20161,20236,20308,20379,20435,20506,20563,20620,20686,20750,20821,20878,20931,20994,21046,21104,21171,21237,21303,21384,21459,21515,21568,21629,21687,21737,21786,21835,21884,21946,21998,22043,22124,22178,22231,22285,22336,22385,22436,22497,22558,22620,22670,22711,22761,22809,22871,22922,22971,23040,23101,23157,23228,23293,23362,23413,23476,23546,23615,23685,23747,23817,23887,23962,24021,24079,24141,24186,24229,24276,24321,24372,24420,24486,24548,24611,24683,24740,24797,24857,24915,24985,25042,25187,25308,25412,25499,25651,25803,25951,26032,26110,26411,26577,26732,26834,27111,27204,27311,27654,27761,27990,28399,28631,28731,28836,28955,29578,29725,29844,30079,30494,30732,30844,30965,31098,33236,34752,38043,40177,41705,43249,46536,46782,47041,47845,49605,50055,50770,50843,50930,51015,51114,51309,51401,51574,51736,51831,52000,52243,52536,52945,53359,53819,54237,54478,54908,55343,55753,56175,56585,57042,57496,57912,58378,58560,58628,58972,59052,59408,59558,59702,59786,60151,60249,60357,60455,60565,60681,60807,60903,61280,61390,61514,61652,61762,61884,62012,62150,62312,62528,62684,62888,62972,63076,63170,63284,63396,63520,63616,63696,63885,64091,64284,64494,64926,65347,65772,65969,66917,67438,67561,68198,68419,69234,69703,69886,70482,70942,71047,72308,72458,72875,73040,73720,73879,74041,74196,74392,74559,74781,74941,75318,75477,75805,76022,76597,76947,77196,77293,77999,78437,78678,78867,79001,79192,79829,80079,80382,80597,81178,3631,3887,4384,4818,5475,5818,7357,7705,9602,9924,10055,10761,10898,11050,11252,11957,12077,13226,13793,13922,14055,14215,14390,14532,16319,18157,18367" + }, + "to": { + "startLines": "2,3,4,5,7,8,9,10,13,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,68,69,70,71,72,73,74,75,76,77,78,103,104,105,106,107,108,109,110,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,369,370,377,378,385,386,387,395,398,399,402,403,404,405,406,407,408,409,451,452,453,454,455,456,458,459,460,461,462,463,464,472,748,749,750,755,756,760,766,770,771,772,773,784,785,786,790,796,800,870,871,872,902,922,968,998,1018,1038,1084,1088,1830,1844,1885,1893,2028,2029,2030,2031,2180,2183,2184,2187,2190,2191,2194,2198,2203,2211,2219,2228,2236,2240,2248,2256,2264,2272,2280,2289,2298,2306,2315,2353,2355,2360,2362,2367,2371,2375,2376,2381,2382,2383,2384,2385,2386,2388,2389,2394,2395,2396,2397,2398,2399,2400,2402,2406,2410,2414,2425,2426,2427,2428,2429,2430,2431,2432,2433,2436,2440,2443,2543,2551,2558,2567,2571,2586,2594,2597,2606,2611,2622,2630,2633,2642,2649,2650,2669,2672,2678,2681,2690,2693,2696,2699,2702,2705,2709,2712,2721,2724,2732,2737,2745,2750,2754,2755,2766,2773,2777,2781,2782,2786,2794,2798,2803,2808,2992,2993,2994,3497,3503,3513,3550,3551,3552,3595,3735,3754,3762,3763,3839,3932,3938,3939,4124,4169,4170,4208,4209,4320,4321,4359,4378", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "150,206,266,327,434,487,545,593,758,848,950,1008,1068,1126,1172,1232,1285,1331,1381,1428,1486,1544,1603,1663,1725,1787,1849,1911,1973,2035,2096,2158,2220,2490,4250,4324,4387,4455,4536,4600,4666,4736,4806,4876,4946,6448,6511,6576,6642,6695,6771,6837,6924,14635,14689,14768,14846,14919,14984,15047,15113,15184,15255,15317,15386,15452,15519,15586,15642,15693,15746,15798,15852,15923,15986,16045,16107,16166,16239,16306,16366,16429,16504,16576,16647,16703,16774,16831,16888,16954,17018,17089,17146,17199,17262,17314,17372,18609,18675,18741,18822,18897,18953,19006,19067,19125,19175,19224,19273,19322,19384,19436,19481,19562,19616,19669,19723,19774,19823,19874,19935,19996,20058,20108,20149,20199,20247,20309,20360,20409,20478,20539,20595,20666,20731,20800,20851,20914,20984,21053,21123,21185,21255,21325,21400,23665,23723,24071,24116,24442,24489,24534,24918,25092,25158,25337,25400,25472,25529,25586,25646,25704,25774,28707,28852,28973,29077,29164,29316,29521,29669,29750,29828,30129,30295,30450,31118,49016,49109,49216,49559,49666,49895,50304,50536,50636,50741,50860,51483,51630,51749,51984,52399,52637,57908,58029,58162,60300,61816,65107,67241,68769,70313,73600,73846,120259,121063,122823,123273,133137,133210,133297,133382,144987,145182,145274,145447,145609,145704,145873,146116,146409,146818,147232,147692,148110,148351,148781,149216,149626,150048,150458,150915,151369,151785,152251,155017,155085,155429,155509,155865,156015,156159,156243,156608,156706,156814,156912,157022,157138,157264,157360,157737,157847,157971,158109,158219,158341,158469,158607,158769,158985,159141,160017,160101,160205,160299,160413,160525,160649,160745,160825,161014,161220,161413,169332,169764,170185,170610,170807,171755,172276,172399,173036,173257,174072,174541,174724,175320,175780,175885,177146,177296,177713,177878,178558,178717,178879,179034,179230,179397,179619,179779,180156,180315,180643,180860,181435,181785,182034,182131,182837,183275,183516,183705,183839,184030,184667,184917,185220,185435,196223,196521,196777,222619,223053,223710,226136,227675,228023,229920,237751,238915,239621,239758,244881,249851,250556,250676,260571,263462,263591,265774,265934,272511,272653,275041,276879", + "endLines": "2,3,4,5,7,8,9,10,13,15,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,44,68,69,70,71,72,73,74,75,76,77,78,103,104,105,106,107,108,109,110,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,369,370,377,378,385,386,387,395,398,399,402,403,404,405,406,407,408,409,451,452,453,454,455,456,458,459,460,461,462,463,464,475,748,749,754,755,759,765,769,770,771,772,783,784,785,789,795,799,800,870,871,901,921,967,997,1017,1037,1083,1087,1091,1843,1884,1892,1902,2028,2029,2030,2031,2182,2183,2186,2189,2190,2193,2197,2202,2210,2218,2227,2235,2239,2247,2255,2263,2271,2279,2288,2297,2305,2314,2317,2354,2359,2361,2366,2370,2374,2375,2380,2381,2382,2383,2384,2385,2387,2388,2393,2394,2395,2396,2397,2398,2399,2401,2405,2409,2413,2417,2425,2426,2427,2428,2429,2430,2431,2432,2435,2439,2442,2446,2550,2557,2566,2570,2585,2593,2596,2605,2610,2621,2629,2632,2641,2648,2649,2668,2671,2677,2680,2689,2692,2695,2698,2701,2704,2708,2711,2720,2723,2731,2736,2744,2749,2753,2754,2765,2772,2776,2780,2781,2785,2793,2797,2802,2807,2816,2992,2993,3012,3502,3512,3516,3550,3551,3594,3602,3735,3761,3762,3763,3839,3937,3938,3939,4124,4169,4170,4208,4209,4320,4343,4377,4378", + "endColumns": "55,59,60,54,52,57,47,48,44,52,57,59,57,45,59,52,45,49,46,57,57,58,59,61,61,61,61,61,61,60,61,61,52,61,73,62,67,80,63,65,69,69,69,69,66,62,64,65,52,75,65,86,75,53,78,77,72,64,62,65,70,70,61,68,65,66,66,55,50,52,51,53,70,62,58,61,58,72,66,59,62,74,71,70,55,70,56,56,65,63,70,56,52,62,51,57,66,65,65,80,74,55,52,60,57,49,48,48,48,61,51,44,80,53,52,53,50,48,50,60,60,61,49,40,49,47,61,50,48,68,60,55,70,64,68,50,62,69,68,69,61,69,69,74,58,57,61,44,42,46,44,50,47,65,61,62,71,56,56,59,57,69,56,144,120,103,86,151,151,147,80,77,300,165,154,101,10,92,106,10,106,10,10,10,99,104,118,10,146,118,10,10,10,111,120,132,10,10,10,10,10,10,10,10,10,10,10,10,10,72,86,84,98,10,91,10,10,94,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,83,10,97,107,97,109,115,10,95,10,109,123,137,109,121,127,10,10,10,10,10,83,103,93,113,111,123,95,79,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,104,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,96,10,10,10,10,133,10,10,10,10,10,10,297,255,90,243,367,188,1538,347,95,94,130,412,136,151,201,220,119,1148,566,128,132,159,174,141,125,457,209", + "endOffsets": "201,261,322,377,482,540,588,637,798,896,1003,1063,1121,1167,1227,1280,1326,1376,1423,1481,1539,1598,1658,1720,1782,1844,1906,1968,2030,2091,2153,2215,2268,2547,4319,4382,4450,4531,4595,4661,4731,4801,4871,4941,5008,6506,6571,6637,6690,6766,6832,6919,6995,14684,14763,14841,14914,14979,15042,15108,15179,15250,15312,15381,15447,15514,15581,15637,15688,15741,15793,15847,15918,15981,16040,16102,16161,16234,16301,16361,16424,16499,16571,16642,16698,16769,16826,16883,16949,17013,17084,17141,17194,17257,17309,17367,17434,18670,18736,18817,18892,18948,19001,19062,19120,19170,19219,19268,19317,19379,19431,19476,19557,19611,19664,19718,19769,19818,19869,19930,19991,20053,20103,20144,20194,20242,20304,20355,20404,20473,20534,20590,20661,20726,20795,20846,20909,20979,21048,21118,21180,21250,21320,21395,21454,23718,23780,24111,24154,24484,24529,24580,24961,25153,25215,25395,25467,25524,25581,25641,25699,25769,25826,28847,28968,29072,29159,29311,29463,29664,29745,29823,30124,30290,30445,30547,31390,49104,49211,49554,49661,49890,50299,50531,50631,50736,50855,51478,51625,51744,51979,52394,52632,52744,58024,58157,60295,61811,65102,67236,68764,70308,73595,73841,74100,121058,122818,123268,123983,133205,133292,133377,133476,145177,145269,145442,145604,145699,145868,146111,146404,146813,147227,147687,148105,148346,148776,149211,149621,150043,150453,150910,151364,151780,152246,152428,155080,155424,155504,155860,156010,156154,156238,156603,156701,156809,156907,157017,157133,157259,157355,157732,157842,157966,158104,158214,158336,158464,158602,158764,158980,159136,159340,160096,160200,160294,160408,160520,160644,160740,160820,161009,161215,161408,161618,169759,170180,170605,170802,171750,172271,172394,173031,173252,174067,174536,174719,175315,175775,175880,177141,177291,177708,177873,178553,178712,178874,179029,179225,179392,179614,179774,180151,180310,180638,180855,181430,181780,182029,182126,182832,183270,183511,183700,183834,184025,184662,184912,185215,185430,186011,196516,196772,197269,223048,223705,224048,227670,228018,229915,230237,237877,239616,239753,239905,245078,250551,250671,251820,261133,263586,263719,265929,266104,272648,274435,276874,277084" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/blame/res/release/single/release.json b/SmartFritz/build/intermediates/blame/res/release/single/release.json new file mode 100644 index 0000000000000000000000000000000000000000..76663febccd13707b4304542f1da8256433d6d32 --- /dev/null +++ b/SmartFritz/build/intermediates/blame/res/release/single/release.json @@ -0,0 +1,2030 @@ +[ + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_seek_thumb.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_seek_thumb.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_notification_icon_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_icon_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_support_simple_spinner_dropdown_item.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/support_simple_spinner_dropdown_item.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_bg_material.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable/bg_material.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_mode_close_item_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_mode_close_item_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_textfield_search_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_textfield_search_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_borderless_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_borderless_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_ripple_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_ripple_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_out_bottom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_out_bottom.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_in_top.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_in_top.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-v16_notification_template_custom_big.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v16/notification_template_custom_big.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_edit_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_edit_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_narrow.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media_narrow.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_switch_track.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_switch_track.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_menu_item_action_area.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_menu_item_action_area.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_btn_unelevated_state_list_anim.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_btn_unelevated_state_list_anim.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_dialog_material_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_dialog_material_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_popup_exit.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_popup_exit.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim-v21_design_bottom_sheet_slide_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim-v21/design_bottom_sheet_slide_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_separator.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item_separator.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-v26_abc_screen_toolbar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout-v26/abc_screen_toolbar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_custom_big.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_custom_big.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_background_transition_holo_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_background_transition_holo_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_background_cache_hint_selector_material_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_background_cache_hint_selector_material_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_snackbar_include.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_snackbar_include.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_btn_colored_borderless_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_btn_colored_borderless_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_colored_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_colored_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_search_url_text.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_search_url_text.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_notification_action_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-v21/notification_action_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_linear_out_slow_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_linear_out_slow_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_popup_enter.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_popup_enter.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_indicator_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ratingbar_indicator_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_search_dropdown_item_icons_2line.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_search_dropdown_item_icons_2line.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_settings_icon.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_settings_icon.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_colored_ripple_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_colored_ripple_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ratingbar_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_ripple_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_ripple_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_state_icon.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_state_icon.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_close_icon_tint.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_close_icon_tint.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_cab_background_top_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_cab_background_top_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-sw600dp-v13_design_layout_snackbar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout-sw600dp-v13/design_layout_snackbar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_design_ic_visibility_off.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-mdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_switch_thumb_material_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/switch_thumb_material_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_icon_color_selector.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_icon_color_selector.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_cervantes.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_cervantes.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi_ic_launcher.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-mdpi/ic_launcher.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_default.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_default.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_bottom_nav_item_tint.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_bottom_nav_item_tint.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_popup_menu_item_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_popup_menu_item_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_fast_out_slow_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_fast_out_slow_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_hint_foreground_material_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_hint_foreground_material_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_chevron_right_black_48dp.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_chevron_right_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_holo_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_holo_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_small_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ratingbar_small_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_lines_media.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_lines_media.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_check_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_check_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxxhdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_item_background_holo_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_item_background_holo_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_template_custom_big.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_template_custom_big.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_btn_colored_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_btn_colored_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_fab_ripple_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_fab_ripple_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_background_transition_holo_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_background_transition_holo_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_button_bar_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_alert_dialog_button_bar_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_hide_motion_spec.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_hide_motion_spec.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_fritzbox.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_fritzbox.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_call_icon.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_call_icon.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_design_snackbar_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_snackbar_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-sw600dp-v13_mtrl_layout_snackbar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout-sw600dp-v13/mtrl_layout_snackbar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_menu_overflow_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_menu_overflow_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_activity_app.xml.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/layout/activity_app.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_activity_chooser_view.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_activity_chooser_view.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_legacy_text_color_selector.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_legacy_text_color_selector.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_design_ic_visibility.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-mdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_default_mtrl_shape.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_default_mtrl_shape.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_cascading_menu_item_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_cascading_menu_item_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_action.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_action.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_bottom_sheet_dialog.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_bottom_sheet_dialog.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_btn_colored_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_btn_colored_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_thumb_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_seekbar_thumb_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_chevron_right_black_48dp.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_chevron_right_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_narrow_custom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media_narrow_custom.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_windmil.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_windmil.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_disable_only_material_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_disable_only_material_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_icon.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_icon.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_focused_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_checked_black.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/ic_mtrl_chip_checked_black.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_menu_item.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_menu_item.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_tooltip_exit.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_tooltip_exit.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_singlechoice_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/select_dialog_singlechoice_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_default.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_default.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_fade_out.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_fade_out.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_edittext.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_edittext.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_popup_menu_header_item_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_popup_menu_header_item_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_search_api_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_search_api_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_design_error.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/design_error.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/raw_my_ca.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/raw/my_ca" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_seek_thumb.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_seek_thumb.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_design_ic_visibility.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxxhdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_fade_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_fade_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_tooltip.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_tooltip.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_color_highlight_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_color_highlight_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_btn_colored_borderless_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_btn_colored_borderless_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_design_bottom_sheet_slide_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_bottom_sheet_slide_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_2.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_scene_2.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_vector_test.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_vector_test.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_ripple_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_ripple_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-watch-v20_abc_alert_dialog_title_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout-watch-v20/abc_alert_dialog_title_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_transformation_sheet_expand_spec.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_transformation_sheet_expand_spec.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_bar_title_item.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_bar_title_item.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_design_ic_visibility.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xhdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_fritzbox_icon.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_fritzbox_icon.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldpi_ic_launcher.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-ldpi/ic_launcher.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_notification_bg_low.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_bg_low.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_in_bottom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_in_bottom.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_tooltip_frame_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/tooltip_frame_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_launcher.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_launcher.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_chevron_left_black_48dp.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_chevron_left_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_normal.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_normal.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_design_fab_show_motion_spec.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/design_fab_show_motion_spec.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_mtrl_layout_snackbar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/mtrl_layout_snackbar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_fast_out_slow_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator-v21/mtrl_fast_out_slow_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_btn_state_list_anim.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_btn_state_list_anim.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_media_cancel_action.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_media_cancel_action.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_checkbox.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_checkbox.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_menu_white_36dp.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_menu_white_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_template_icon_group.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_template_icon_group.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_divider_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_divider_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_text_btn_text_color_selector.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_text_btn_text_color_selector.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_shrink_fade_out_from_bottom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_shrink_fade_out_from_bottom.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_simple.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_simple.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_design_snackbar_out.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_snackbar_out.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_design_password_eye.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/design_password_eye.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_voice_search_api_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_voice_search_api_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_normal.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_normal.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_multichoice_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/select_dialog_multichoice_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_background_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_background_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_design_bottom_navigation_item_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/design_bottom_navigation_item_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_action.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_action.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_mtrl_tabs_default_indicator.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/mtrl_tabs_default_indicator.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_low_normal.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_navigation_empty_icon.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/navigation_empty_icon.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_content_include.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_content_include.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_design_bottom_sheet_slide_out.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_bottom_sheet_slide_out.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_mtrl_layout_snackbar_include.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/mtrl_layout_snackbar_include.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_subheader.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item_subheader.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_search_view.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_search_view.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_select_dialog_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_select_dialog_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_mtrl_snackbar_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/mtrl_snackbar_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_log_icon.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_log_icon.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_switch_track.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_switch_track.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/xml_network_security_config.xml.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/xml/network_security_config.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_action_bar_item_background_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_action_bar_item_background_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_snackbar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_snackbar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_alert_dialog_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_item_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/select_dialog_item_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-anydpi-v21_design_ic_visibility_off.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-anydpi-v21/design_ic_visibility_off.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_disable_only_material_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_disable_only_material_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_simple_overlay_action_mode.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_simple_overlay_action_mode.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_icon_group.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_icon_group.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_material_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_material_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_custom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media_custom.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_spinner.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_spinner.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_radio.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_radio.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_hint_foreground_material_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_hint_foreground_material_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_clear_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_clear_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_holo_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_holo_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_cab_background_internal_bg.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_cab_background_internal_bg.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_linear_out_slow_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator-v21/mtrl_linear_out_slow_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_design_fab_hide_motion_spec.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/design_fab_hide_motion_spec.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_design_ic_visibility_off.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xhdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_radio_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_radio_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_ab_back_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_ab_back_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_secondary_text_material_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_secondary_text_material_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_fast_out_linear_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator-v21/mtrl_fast_out_linear_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_track_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_seekbar_track_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_tick_mark_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_seekbar_tick_mark_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_spinner.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_spinner.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_text_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_text_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_go_search_api_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_go_search_api_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_chevron_left_black_48dp.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_chevron_left_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_bottom_nav_colored_item_tint.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_bottom_nav_colored_item_tint.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_low_normal.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_header.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item_header.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_bg_color_selector.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_bg_color_selector.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_bottom_navigation_item.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_bottom_navigation_item.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_out_top.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_out_top.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_secondary_text_material_dark.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_secondary_text_material_dark.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_tab_text.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_tab_text.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_launcher.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_launcher.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim-v21_design_bottom_sheet_slide_out.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim-v21/design_bottom_sheet_slide_out.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_text_input_password_icon.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_text_input_password_icon.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v23_abc_control_background_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v23/abc_control_background_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_mode_bar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_mode_bar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_menu_white_36dp.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_menu_white_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_action_tombstone.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_action_tombstone.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_tab_icon.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_tab_icon.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_activity_chooser_view_list_item.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_activity_chooser_view_list_item.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_action_tombstone.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_action_tombstone.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi_ic_launcher.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xxhdpi/ic_launcher.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_don_quixote.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_don_quixote.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_btn_checkable.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_btn_checkable.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_switch_thumb_material_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/switch_thumb_material_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_checked_circle.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/ic_mtrl_chip_checked_circle.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_list_divider_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_list_divider_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_design_ic_visibility_off.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-hdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_bar_up_container.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_bar_up_container.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_dialog_title_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_dialog_title_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_design_password_eye.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_password_eye.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_design_bottom_navigation_item_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_bottom_navigation_item_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_show_motion_spec.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_show_motion_spec.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_lance.png.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_lance.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v21_abc_btn_colored_borderless_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v21/abc_btn_colored_borderless_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_tooltip_enter.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_tooltip_enter.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_design_ic_visibility.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxhdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_design_tint_password_toggle.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/design_tint_password_toggle.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_fast_out_linear_in.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_fast_out_linear_in.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_normal.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_normal.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_expanded_menu_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_expanded_menu_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_text_color_selector.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_text_color_selector.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_media_action.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_media_action.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_3.jpg.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_scene_3.jpg" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_material_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_material_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_notification_tile_bg.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_tile_bg.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_stroke_color_selector.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_stroke_color_selector.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_toolbar.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_toolbar.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_btn_checkable.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_btn_checkable.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_close_circle.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/ic_mtrl_chip_close_circle.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_design_ic_visibility.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-hdpi-v4/design_ic_visibility.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_design_ic_visibility_off.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxhdpi-v4/design_ic_visibility_off.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_switch_thumb_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_switch_thumb_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_btn_colored_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_btn_colored_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_part_chronometer.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_part_chronometer.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_item_background_holo_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_item_background_holo_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_text_btn_ripple_color.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_text_btn_ripple_color.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_edit_text_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_edit_text_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_dialog_material_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_dialog_material_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_menu_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_menu_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_text_cursor_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_text_cursor_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_menu_item_layout.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_menu_item_layout.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-anydpi-v21_design_ic_visibility.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-anydpi-v21/design_ic_visibility.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_linear.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_linear.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_spinner_textfield_background_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_spinner_textfield_background_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_chip_state_list_anim.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_chip_state_list_anim.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_avd_show_password.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/avd_show_password.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_icon_color_selector_colored.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_icon_color_selector_colored.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_tab_indicator_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_tab_indicator_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_tooltip_frame_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/tooltip_frame_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_1.jpg.flat", + "source": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_scene_1.jpg" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_media.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_media.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator-v21_design_appbar_state_list_animator.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator-v21/design_appbar_state_list_animator.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_avd_hide_password.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/avd_hide_password.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_edittext.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_edittext.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-watch-v20_abc_dialog_material_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-watch-v20/abc_dialog_material_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_design_snackbar_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_snackbar_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_menu.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_menu.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_grow_fade_in_from_bottom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_grow_fade_in_from_bottom.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_design_tint_password_toggle.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color-v23/design_tint_password_toggle.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_design_fab_background.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_fab_background.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_part_time.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_part_time.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_notification_bg.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_bg.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_title_material.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_alert_dialog_title_material.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_background_cache_hint_selector_material_light.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_background_cache_hint_selector_material_light.xml" + }, + { + "merged": "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_media_custom.xml.flat", + "source": "/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_media_custom.xml" + } +] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/armeabi-v7a/AndroidManifest.xml b/SmartFritz/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/armeabi-v7a/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..92057f6c073be526fe2622d090dbcb616bd4e31d --- /dev/null +++ b/SmartFritz/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/armeabi-v7a/AndroidManifest.xml @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/output.json b/SmartFritz/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/output.json new file mode 100644 index 0000000000000000000000000000000000000000..540b0f6822e90ead6b646dc8aa8fcfbb8c448bfe --- /dev/null +++ b/SmartFritz/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"BUNDLE_MANIFEST"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-debug.apk","fullName":"armeabi-v7aDebug","baseName":"armeabi-v7a-debug"},"path":"armeabi-v7a/AndroidManifest.xml","properties":{"packageId":"org.muctec.smartfritz","split":"","minSdkVersion":"14"}}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/bundle_manifest/release/processReleaseManifest/bundle-manifest/armeabi-v7a/AndroidManifest.xml b/SmartFritz/build/intermediates/bundle_manifest/release/processReleaseManifest/bundle-manifest/armeabi-v7a/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..ec0ff80340e5a557e7f4408d26012a08520b908a --- /dev/null +++ b/SmartFritz/build/intermediates/bundle_manifest/release/processReleaseManifest/bundle-manifest/armeabi-v7a/AndroidManifest.xml @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/bundle_manifest/release/processReleaseManifest/bundle-manifest/output.json b/SmartFritz/build/intermediates/bundle_manifest/release/processReleaseManifest/bundle-manifest/output.json new file mode 100644 index 0000000000000000000000000000000000000000..edb673240225e6ff40490f33bf4debf13ebf79ba --- /dev/null +++ b/SmartFritz/build/intermediates/bundle_manifest/release/processReleaseManifest/bundle-manifest/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"BUNDLE_MANIFEST"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-release-unsigned.apk","fullName":"armeabi-v7aRelease","baseName":"armeabi-v7a-release"},"path":"armeabi-v7a/AndroidManifest.xml","properties":{"packageId":"org.muctec.smartfritz","split":"","minSdkVersion":"14"}}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/out/output.json b/SmartFritz/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/out/output.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SmartFritz/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/out/output.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/compatible_screen_manifest/release/createReleaseCompatibleScreenManifests/out/output.json b/SmartFritz/build/intermediates/compatible_screen_manifest/release/createReleaseCompatibleScreenManifests/out/output.json new file mode 100644 index 0000000000000000000000000000000000000000..0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc --- /dev/null +++ b/SmartFritz/build/intermediates/compatible_screen_manifest/release/createReleaseCompatibleScreenManifests/out/output.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/dex/debug/mergeDexDebug/out/classes.dex b/SmartFritz/build/intermediates/dex/debug/mergeDexDebug/out/classes.dex new file mode 100644 index 0000000000000000000000000000000000000000..528ce6aa140fb132869bf1a91d948a601a9775d5 Binary files /dev/null and b/SmartFritz/build/intermediates/dex/debug/mergeDexDebug/out/classes.dex differ diff --git a/SmartFritz/build/intermediates/dex/release/mergeDexRelease/out/classes.dex b/SmartFritz/build/intermediates/dex/release/mergeDexRelease/out/classes.dex new file mode 100644 index 0000000000000000000000000000000000000000..5f699d0d56ba7119c216ffe2d0c9099a6b0ea58b Binary files /dev/null and b/SmartFritz/build/intermediates/dex/release/mergeDexRelease/out/classes.dex differ diff --git a/SmartFritz/build/intermediates/external_libs_dex/debug/mergeExtDexDebug/out/classes.dex b/SmartFritz/build/intermediates/external_libs_dex/debug/mergeExtDexDebug/out/classes.dex new file mode 100644 index 0000000000000000000000000000000000000000..5e54d541b47b3efa3421534f638189c7afe5d913 Binary files /dev/null and b/SmartFritz/build/intermediates/external_libs_dex/debug/mergeExtDexDebug/out/classes.dex differ diff --git a/SmartFritz/build/intermediates/external_libs_dex/release/mergeExtDexRelease/out/classes.dex b/SmartFritz/build/intermediates/external_libs_dex/release/mergeExtDexRelease/out/classes.dex new file mode 100644 index 0000000000000000000000000000000000000000..8742f816c08d6a1362a4c73ea8596b06e9fad7df Binary files /dev/null and b/SmartFritz/build/intermediates/external_libs_dex/release/mergeExtDexRelease/out/classes.dex differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/merge-state new file mode 100644 index 0000000000000000000000000000000000000000..9873a192caebd853e8b8a55da568df9c60f96c0d Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/28nPXP5azBwyl2ZgsREZh711RGQ= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/28nPXP5azBwyl2ZgsREZh711RGQ= new file mode 100644 index 0000000000000000000000000000000000000000..feebff2e34f1a74e5bedbd37448aea1ce57745e6 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/28nPXP5azBwyl2ZgsREZh711RGQ= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4+G2AcEpuQHVySxBisObncDJaWM= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4+G2AcEpuQHVySxBisObncDJaWM= new file mode 100644 index 0000000000000000000000000000000000000000..4c8e7d1cfef6ea5255a0279329c1e4a93f3be5a8 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4+G2AcEpuQHVySxBisObncDJaWM= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8m4OyOe9jJGWF7LnqbfoaCR9HUI= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8m4OyOe9jJGWF7LnqbfoaCR9HUI= new file mode 100644 index 0000000000000000000000000000000000000000..d0dcd9ca2cc1eb1d5796f960142be6eddd673e4f Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8m4OyOe9jJGWF7LnqbfoaCR9HUI= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/B25qNee8_6vBZNzO799QX19_SVs= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/B25qNee8_6vBZNzO799QX19_SVs= new file mode 100644 index 0000000000000000000000000000000000000000..865488d18f192dbb46ce3f0e15a9b81fdae863ea Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/B25qNee8_6vBZNzO799QX19_SVs= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/BDuRgn+v8CICQa7MzoL5__1NqJs= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/BDuRgn+v8CICQa7MzoL5__1NqJs= new file mode 100644 index 0000000000000000000000000000000000000000..e49acf7983a7c79884a94bd0694a471b28e9c1b1 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/BDuRgn+v8CICQa7MzoL5__1NqJs= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/DiIOxxa_zrAqG54j1Qwma03rXtU= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/DiIOxxa_zrAqG54j1Qwma03rXtU= new file mode 100644 index 0000000000000000000000000000000000000000..e9e760818c198724808ab59592b4f9a0e455d662 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/DiIOxxa_zrAqG54j1Qwma03rXtU= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Hu6J9_P1Gxk2vz3u3VGfEvB7Utk= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Hu6J9_P1Gxk2vz3u3VGfEvB7Utk= new file mode 100644 index 0000000000000000000000000000000000000000..6bb2c4931c54608370e28c790c0b8421d5d17687 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Hu6J9_P1Gxk2vz3u3VGfEvB7Utk= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/PpI17wHXkjeW2NVZQ+LBdtqx2BQ= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/PpI17wHXkjeW2NVZQ+LBdtqx2BQ= new file mode 100644 index 0000000000000000000000000000000000000000..8d3e7638baeb3c849d39db433fa0aeb289da3a72 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/PpI17wHXkjeW2NVZQ+LBdtqx2BQ= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ThGtOKHfY8t4m0c3fPXONN+hwEc= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ThGtOKHfY8t4m0c3fPXONN+hwEc= new file mode 100644 index 0000000000000000000000000000000000000000..25547cc989729eb7342fb50a12d5a4e4e9249857 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ThGtOKHfY8t4m0c3fPXONN+hwEc= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/UYENskPSsCzUGp2EZPQ1saEWC4E= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/UYENskPSsCzUGp2EZPQ1saEWC4E= new file mode 100644 index 0000000000000000000000000000000000000000..2b56acdbf38ac42b3f16808ecca74660a39dd4db Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/UYENskPSsCzUGp2EZPQ1saEWC4E= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Ur2zihNjWXKafsKY_s1yWkXsH4g= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Ur2zihNjWXKafsKY_s1yWkXsH4g= new file mode 100644 index 0000000000000000000000000000000000000000..a19a2a515c241545db10770191aee62d127a7b2c Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Ur2zihNjWXKafsKY_s1yWkXsH4g= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VZd7HZcXiSNqKQD4ChsYI7QVBps= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VZd7HZcXiSNqKQD4ChsYI7QVBps= new file mode 100644 index 0000000000000000000000000000000000000000..c063f2b9a438be31d268d2f78a4fc87684f50143 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VZd7HZcXiSNqKQD4ChsYI7QVBps= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VeUnTgq8KmpeH6p2LKVPsOWGxs8= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VeUnTgq8KmpeH6p2LKVPsOWGxs8= new file mode 100644 index 0000000000000000000000000000000000000000..fc0a247284ab6436e5b22a2a7e8a9ca3d47a73a5 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VeUnTgq8KmpeH6p2LKVPsOWGxs8= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WCbtSpJcj3TMVr4CEF3ReWtbb6g= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WCbtSpJcj3TMVr4CEF3ReWtbb6g= new file mode 100644 index 0000000000000000000000000000000000000000..2dae2f9b2414bec6ba78cd4a2be6ced63dc43b68 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WCbtSpJcj3TMVr4CEF3ReWtbb6g= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XJtESMpD1d26QjAwDtRAP7x28yo= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XJtESMpD1d26QjAwDtRAP7x28yo= new file mode 100644 index 0000000000000000000000000000000000000000..b12b28712defb538d3a4d1a7b2538f26d016ce1d Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XJtESMpD1d26QjAwDtRAP7x28yo= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XRacniRvzIHcPtIa0hJBwo4kf60= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XRacniRvzIHcPtIa0hJBwo4kf60= new file mode 100644 index 0000000000000000000000000000000000000000..5954c1681f64385cae853e15802902b4cd4c42d8 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XRacniRvzIHcPtIa0hJBwo4kf60= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZQuIerbLG_308MV9SPzPA2C_Dbs= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZQuIerbLG_308MV9SPzPA2C_Dbs= new file mode 100644 index 0000000000000000000000000000000000000000..083d96b02d1ac97b392db8a58c3809011fec3fe0 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZQuIerbLG_308MV9SPzPA2C_Dbs= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/aWgUWNvZDTTCbJtEAU+toLC+HrY= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/aWgUWNvZDTTCbJtEAU+toLC+HrY= new file mode 100644 index 0000000000000000000000000000000000000000..b6ac9fe4bc9b945b5e4dad64ee91e1f3ec46519a Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/aWgUWNvZDTTCbJtEAU+toLC+HrY= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/bNdaE6pEvOqpV9nROmjUD0qPKUs= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/bNdaE6pEvOqpV9nROmjUD0qPKUs= new file mode 100644 index 0000000000000000000000000000000000000000..06e914d8c5b0714573d2436a408a8955ba62c96e Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/bNdaE6pEvOqpV9nROmjUD0qPKUs= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/bpSydQ++vsdCAiAGwZD+cBH2qSw= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/bpSydQ++vsdCAiAGwZD+cBH2qSw= new file mode 100644 index 0000000000000000000000000000000000000000..1423435f40f6c20d141890fc00bf07a0843421ed Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/bpSydQ++vsdCAiAGwZD+cBH2qSw= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/by6HqMeBl3AMriejnpW98pCTOmE= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/by6HqMeBl3AMriejnpW98pCTOmE= new file mode 100644 index 0000000000000000000000000000000000000000..b178df1b80427afd9b34186b5c5cb58f8f8bcbb7 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/by6HqMeBl3AMriejnpW98pCTOmE= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/cddMg8LpVSqaZ+AKNyl00gPum5Y= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/cddMg8LpVSqaZ+AKNyl00gPum5Y= new file mode 100644 index 0000000000000000000000000000000000000000..2365cb90f9a8e5ae5c9ba28fc6081e6425c71fb5 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/cddMg8LpVSqaZ+AKNyl00gPum5Y= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/cy8BEcobu7FZ1O1oUd7Z7FpJ_FI= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/cy8BEcobu7FZ1O1oUd7Z7FpJ_FI= new file mode 100644 index 0000000000000000000000000000000000000000..4e97c260f8abcdda1473ee737efda27bbd30f6a2 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/cy8BEcobu7FZ1O1oUd7Z7FpJ_FI= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fI5k8yFixBgxfWM828U+8mzuf3w= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fI5k8yFixBgxfWM828U+8mzuf3w= new file mode 100644 index 0000000000000000000000000000000000000000..e7159a9acf6fb869f9a03cf359ebebf216ac6c80 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fI5k8yFixBgxfWM828U+8mzuf3w= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fn+2So7L6qSWjHFEBrL23LQoUKk= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fn+2So7L6qSWjHFEBrL23LQoUKk= new file mode 100644 index 0000000000000000000000000000000000000000..f61d7629ed6d22376f6761ee25b5c1fee38c2c48 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fn+2So7L6qSWjHFEBrL23LQoUKk= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ipiWRYA8T4UESAKyV_A7BL8a8iE= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ipiWRYA8T4UESAKyV_A7BL8a8iE= new file mode 100644 index 0000000000000000000000000000000000000000..a69b1ec0f3c0ac131fb045379a0c29a68fad54a0 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ipiWRYA8T4UESAKyV_A7BL8a8iE= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kLUEwkJ1jGKKFyADhtbl_7NT0rA= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kLUEwkJ1jGKKFyADhtbl_7NT0rA= new file mode 100644 index 0000000000000000000000000000000000000000..32d47c06c1b5cebcfe71d9fcbc9a8f085d231765 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/kLUEwkJ1jGKKFyADhtbl_7NT0rA= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/m29ktPSKU9Flbdip1B9ElbV6rVo= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/m29ktPSKU9Flbdip1B9ElbV6rVo= new file mode 100644 index 0000000000000000000000000000000000000000..27924dd4b8463d7585b390accdb578974522d32f Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/m29ktPSKU9Flbdip1B9ElbV6rVo= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/mJQ766RMvHBx6Q2zjhHw_5KBleA= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/mJQ766RMvHBx6Q2zjhHw_5KBleA= new file mode 100644 index 0000000000000000000000000000000000000000..87586a52124f49da61b71f1cfd5440882d14982a Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/mJQ766RMvHBx6Q2zjhHw_5KBleA= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/nPCj9JL75bkx1xvZB8FkPeetRmA= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/nPCj9JL75bkx1xvZB8FkPeetRmA= new file mode 100644 index 0000000000000000000000000000000000000000..1c79806c654bad3ecaeb245492ba1602fa9a25fa Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/nPCj9JL75bkx1xvZB8FkPeetRmA= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sH+AMww8667Mr_2bDeZlM_1DHeg= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sH+AMww8667Mr_2bDeZlM_1DHeg= new file mode 100644 index 0000000000000000000000000000000000000000..371b44143fa1f91248a4859d1fdf5079381c4319 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sH+AMww8667Mr_2bDeZlM_1DHeg= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/v8OZlqc0m5XBbhWigcLE5AvotTI= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/v8OZlqc0m5XBbhWigcLE5AvotTI= new file mode 100644 index 0000000000000000000000000000000000000000..483b42ca66ca7a395c691c1db662be4130d7f143 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/v8OZlqc0m5XBbhWigcLE5AvotTI= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wjypeEl8XD+uTpQYSTIJtG7jBfw= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wjypeEl8XD+uTpQYSTIJtG7jBfw= new file mode 100644 index 0000000000000000000000000000000000000000..3c086f36853f76d821f72d27b069f377e3850ab2 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wjypeEl8XD+uTpQYSTIJtG7jBfw= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/y83GoHRTgWt8pdPUNeSJVfLOhtI= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/y83GoHRTgWt8pdPUNeSJVfLOhtI= new file mode 100644 index 0000000000000000000000000000000000000000..c3f7927db3e25886858edde5878a859693459c0c Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/y83GoHRTgWt8pdPUNeSJVfLOhtI= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/yn1egIb_IAfUl99sK0ShUyegH9Q= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/yn1egIb_IAfUl99sK0ShUyegH9Q= new file mode 100644 index 0000000000000000000000000000000000000000..0fb7130e1240a71377f5d6cf906b9517228b773e Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/yn1egIb_IAfUl99sK0ShUyegH9Q= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/z4N2nM5RN8eWAZwqj69ueUUN8Is= b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/z4N2nM5RN8eWAZwqj69ueUUN8Is= new file mode 100644 index 0000000000000000000000000000000000000000..e27d24ae5f0ca276b7d85bf70f9d1cbecd52dc1d Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/z4N2nM5RN8eWAZwqj69ueUUN8Is= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/merge-state b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/merge-state new file mode 100644 index 0000000000000000000000000000000000000000..c4672e049409216f34eab0174f899757eaf886b4 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/merge-state differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/28nPXP5azBwyl2ZgsREZh711RGQ= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/28nPXP5azBwyl2ZgsREZh711RGQ= new file mode 100644 index 0000000000000000000000000000000000000000..feebff2e34f1a74e5bedbd37448aea1ce57745e6 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/28nPXP5azBwyl2ZgsREZh711RGQ= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/4+G2AcEpuQHVySxBisObncDJaWM= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/4+G2AcEpuQHVySxBisObncDJaWM= new file mode 100644 index 0000000000000000000000000000000000000000..4c8e7d1cfef6ea5255a0279329c1e4a93f3be5a8 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/4+G2AcEpuQHVySxBisObncDJaWM= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/8m4OyOe9jJGWF7LnqbfoaCR9HUI= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/8m4OyOe9jJGWF7LnqbfoaCR9HUI= new file mode 100644 index 0000000000000000000000000000000000000000..d0dcd9ca2cc1eb1d5796f960142be6eddd673e4f Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/8m4OyOe9jJGWF7LnqbfoaCR9HUI= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/B25qNee8_6vBZNzO799QX19_SVs= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/B25qNee8_6vBZNzO799QX19_SVs= new file mode 100644 index 0000000000000000000000000000000000000000..865488d18f192dbb46ce3f0e15a9b81fdae863ea Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/B25qNee8_6vBZNzO799QX19_SVs= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/BDuRgn+v8CICQa7MzoL5__1NqJs= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/BDuRgn+v8CICQa7MzoL5__1NqJs= new file mode 100644 index 0000000000000000000000000000000000000000..e49acf7983a7c79884a94bd0694a471b28e9c1b1 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/BDuRgn+v8CICQa7MzoL5__1NqJs= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/DiIOxxa_zrAqG54j1Qwma03rXtU= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/DiIOxxa_zrAqG54j1Qwma03rXtU= new file mode 100644 index 0000000000000000000000000000000000000000..e9e760818c198724808ab59592b4f9a0e455d662 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/DiIOxxa_zrAqG54j1Qwma03rXtU= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/Hu6J9_P1Gxk2vz3u3VGfEvB7Utk= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/Hu6J9_P1Gxk2vz3u3VGfEvB7Utk= new file mode 100644 index 0000000000000000000000000000000000000000..6bb2c4931c54608370e28c790c0b8421d5d17687 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/Hu6J9_P1Gxk2vz3u3VGfEvB7Utk= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/PpI17wHXkjeW2NVZQ+LBdtqx2BQ= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/PpI17wHXkjeW2NVZQ+LBdtqx2BQ= new file mode 100644 index 0000000000000000000000000000000000000000..8d3e7638baeb3c849d39db433fa0aeb289da3a72 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/PpI17wHXkjeW2NVZQ+LBdtqx2BQ= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ThGtOKHfY8t4m0c3fPXONN+hwEc= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ThGtOKHfY8t4m0c3fPXONN+hwEc= new file mode 100644 index 0000000000000000000000000000000000000000..25547cc989729eb7342fb50a12d5a4e4e9249857 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ThGtOKHfY8t4m0c3fPXONN+hwEc= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/UYENskPSsCzUGp2EZPQ1saEWC4E= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/UYENskPSsCzUGp2EZPQ1saEWC4E= new file mode 100644 index 0000000000000000000000000000000000000000..2b56acdbf38ac42b3f16808ecca74660a39dd4db Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/UYENskPSsCzUGp2EZPQ1saEWC4E= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/Ur2zihNjWXKafsKY_s1yWkXsH4g= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/Ur2zihNjWXKafsKY_s1yWkXsH4g= new file mode 100644 index 0000000000000000000000000000000000000000..a19a2a515c241545db10770191aee62d127a7b2c Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/Ur2zihNjWXKafsKY_s1yWkXsH4g= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/VZd7HZcXiSNqKQD4ChsYI7QVBps= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/VZd7HZcXiSNqKQD4ChsYI7QVBps= new file mode 100644 index 0000000000000000000000000000000000000000..c063f2b9a438be31d268d2f78a4fc87684f50143 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/VZd7HZcXiSNqKQD4ChsYI7QVBps= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/VeUnTgq8KmpeH6p2LKVPsOWGxs8= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/VeUnTgq8KmpeH6p2LKVPsOWGxs8= new file mode 100644 index 0000000000000000000000000000000000000000..fc0a247284ab6436e5b22a2a7e8a9ca3d47a73a5 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/VeUnTgq8KmpeH6p2LKVPsOWGxs8= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/WCbtSpJcj3TMVr4CEF3ReWtbb6g= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/WCbtSpJcj3TMVr4CEF3ReWtbb6g= new file mode 100644 index 0000000000000000000000000000000000000000..2dae2f9b2414bec6ba78cd4a2be6ced63dc43b68 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/WCbtSpJcj3TMVr4CEF3ReWtbb6g= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/XJtESMpD1d26QjAwDtRAP7x28yo= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/XJtESMpD1d26QjAwDtRAP7x28yo= new file mode 100644 index 0000000000000000000000000000000000000000..b12b28712defb538d3a4d1a7b2538f26d016ce1d Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/XJtESMpD1d26QjAwDtRAP7x28yo= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/XRacniRvzIHcPtIa0hJBwo4kf60= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/XRacniRvzIHcPtIa0hJBwo4kf60= new file mode 100644 index 0000000000000000000000000000000000000000..5954c1681f64385cae853e15802902b4cd4c42d8 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/XRacniRvzIHcPtIa0hJBwo4kf60= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ZQuIerbLG_308MV9SPzPA2C_Dbs= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ZQuIerbLG_308MV9SPzPA2C_Dbs= new file mode 100644 index 0000000000000000000000000000000000000000..083d96b02d1ac97b392db8a58c3809011fec3fe0 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ZQuIerbLG_308MV9SPzPA2C_Dbs= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/aWgUWNvZDTTCbJtEAU+toLC+HrY= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/aWgUWNvZDTTCbJtEAU+toLC+HrY= new file mode 100644 index 0000000000000000000000000000000000000000..b6ac9fe4bc9b945b5e4dad64ee91e1f3ec46519a Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/aWgUWNvZDTTCbJtEAU+toLC+HrY= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/bNdaE6pEvOqpV9nROmjUD0qPKUs= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/bNdaE6pEvOqpV9nROmjUD0qPKUs= new file mode 100644 index 0000000000000000000000000000000000000000..06e914d8c5b0714573d2436a408a8955ba62c96e Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/bNdaE6pEvOqpV9nROmjUD0qPKUs= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/bpSydQ++vsdCAiAGwZD+cBH2qSw= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/bpSydQ++vsdCAiAGwZD+cBH2qSw= new file mode 100644 index 0000000000000000000000000000000000000000..1423435f40f6c20d141890fc00bf07a0843421ed Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/bpSydQ++vsdCAiAGwZD+cBH2qSw= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/by6HqMeBl3AMriejnpW98pCTOmE= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/by6HqMeBl3AMriejnpW98pCTOmE= new file mode 100644 index 0000000000000000000000000000000000000000..b178df1b80427afd9b34186b5c5cb58f8f8bcbb7 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/by6HqMeBl3AMriejnpW98pCTOmE= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/cddMg8LpVSqaZ+AKNyl00gPum5Y= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/cddMg8LpVSqaZ+AKNyl00gPum5Y= new file mode 100644 index 0000000000000000000000000000000000000000..2365cb90f9a8e5ae5c9ba28fc6081e6425c71fb5 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/cddMg8LpVSqaZ+AKNyl00gPum5Y= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/cy8BEcobu7FZ1O1oUd7Z7FpJ_FI= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/cy8BEcobu7FZ1O1oUd7Z7FpJ_FI= new file mode 100644 index 0000000000000000000000000000000000000000..4e97c260f8abcdda1473ee737efda27bbd30f6a2 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/cy8BEcobu7FZ1O1oUd7Z7FpJ_FI= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/fI5k8yFixBgxfWM828U+8mzuf3w= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/fI5k8yFixBgxfWM828U+8mzuf3w= new file mode 100644 index 0000000000000000000000000000000000000000..e7159a9acf6fb869f9a03cf359ebebf216ac6c80 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/fI5k8yFixBgxfWM828U+8mzuf3w= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/fn+2So7L6qSWjHFEBrL23LQoUKk= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/fn+2So7L6qSWjHFEBrL23LQoUKk= new file mode 100644 index 0000000000000000000000000000000000000000..f61d7629ed6d22376f6761ee25b5c1fee38c2c48 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/fn+2So7L6qSWjHFEBrL23LQoUKk= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ipiWRYA8T4UESAKyV_A7BL8a8iE= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ipiWRYA8T4UESAKyV_A7BL8a8iE= new file mode 100644 index 0000000000000000000000000000000000000000..a69b1ec0f3c0ac131fb045379a0c29a68fad54a0 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ipiWRYA8T4UESAKyV_A7BL8a8iE= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/kLUEwkJ1jGKKFyADhtbl_7NT0rA= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/kLUEwkJ1jGKKFyADhtbl_7NT0rA= new file mode 100644 index 0000000000000000000000000000000000000000..32d47c06c1b5cebcfe71d9fcbc9a8f085d231765 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/kLUEwkJ1jGKKFyADhtbl_7NT0rA= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/m29ktPSKU9Flbdip1B9ElbV6rVo= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/m29ktPSKU9Flbdip1B9ElbV6rVo= new file mode 100644 index 0000000000000000000000000000000000000000..27924dd4b8463d7585b390accdb578974522d32f Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/m29ktPSKU9Flbdip1B9ElbV6rVo= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/mJQ766RMvHBx6Q2zjhHw_5KBleA= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/mJQ766RMvHBx6Q2zjhHw_5KBleA= new file mode 100644 index 0000000000000000000000000000000000000000..87586a52124f49da61b71f1cfd5440882d14982a Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/mJQ766RMvHBx6Q2zjhHw_5KBleA= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/nPCj9JL75bkx1xvZB8FkPeetRmA= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/nPCj9JL75bkx1xvZB8FkPeetRmA= new file mode 100644 index 0000000000000000000000000000000000000000..1c79806c654bad3ecaeb245492ba1602fa9a25fa Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/nPCj9JL75bkx1xvZB8FkPeetRmA= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/sH+AMww8667Mr_2bDeZlM_1DHeg= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/sH+AMww8667Mr_2bDeZlM_1DHeg= new file mode 100644 index 0000000000000000000000000000000000000000..371b44143fa1f91248a4859d1fdf5079381c4319 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/sH+AMww8667Mr_2bDeZlM_1DHeg= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/v8OZlqc0m5XBbhWigcLE5AvotTI= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/v8OZlqc0m5XBbhWigcLE5AvotTI= new file mode 100644 index 0000000000000000000000000000000000000000..483b42ca66ca7a395c691c1db662be4130d7f143 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/v8OZlqc0m5XBbhWigcLE5AvotTI= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/wjypeEl8XD+uTpQYSTIJtG7jBfw= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/wjypeEl8XD+uTpQYSTIJtG7jBfw= new file mode 100644 index 0000000000000000000000000000000000000000..3c086f36853f76d821f72d27b069f377e3850ab2 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/wjypeEl8XD+uTpQYSTIJtG7jBfw= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/y83GoHRTgWt8pdPUNeSJVfLOhtI= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/y83GoHRTgWt8pdPUNeSJVfLOhtI= new file mode 100644 index 0000000000000000000000000000000000000000..c3f7927db3e25886858edde5878a859693459c0c Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/y83GoHRTgWt8pdPUNeSJVfLOhtI= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/yn1egIb_IAfUl99sK0ShUyegH9Q= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/yn1egIb_IAfUl99sK0ShUyegH9Q= new file mode 100644 index 0000000000000000000000000000000000000000..0fb7130e1240a71377f5d6cf906b9517228b773e Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/yn1egIb_IAfUl99sK0ShUyegH9Q= differ diff --git a/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/z4N2nM5RN8eWAZwqj69ueUUN8Is= b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/z4N2nM5RN8eWAZwqj69ueUUN8Is= new file mode 100644 index 0000000000000000000000000000000000000000..e27d24ae5f0ca276b7d85bf70f9d1cbecd52dc1d Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/z4N2nM5RN8eWAZwqj69ueUUN8Is= differ diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugAssets/merger.xml b/SmartFritz/build/intermediates/incremental/mergeDebugAssets/merger.xml new file mode 100644 index 0000000000000000000000000000000000000000..63639b2ea3a88dcb7bbacfb0ef5853f236865077 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/SmartFritz/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000000000000000000000000000000000000..cf45e04b6963116820f43ab93cc1cbe423fb3c52 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties b/SmartFritz/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties new file mode 100644 index 0000000000000000000000000000000000000000..6f35b9d8a41029adac910397f892f10c523d41da --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties @@ -0,0 +1,508 @@ +#Fri Jul 17 03:06:23 CEST 2020 +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_holo_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_icon.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_fab_ripple_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_fab_ripple_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_dialog_material_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_dialog_material_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-hdpi-v4/design_ic_visibility_off.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_design_ic_visibility_off.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_ripple_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_ripple_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_ab_back_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_media_cancel_action.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_media_cancel_action.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_tab_indicator_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_icon_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_icon_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_search_api_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_cab_background_internal_bg.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_cab_background_internal_bg.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_bottom_nav_item_tint.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_bottom_nav_item_tint.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_menu_item.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_menu_item.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_snackbar_out.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_design_snackbar_out.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_template_custom_big.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_template_custom_big.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/mtrl_layout_snackbar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_mtrl_layout_snackbar.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_btn_colored_borderless_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_btn_colored_borderless_text_material.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xxhdpi/ic_launcher.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi_ic_launcher.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_menu.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_menu.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_scene_1.jpg=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_1.jpg.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/design_bottom_navigation_item_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_design_bottom_navigation_item_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_cervantes.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_cervantes.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_content_include.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_icon_color_selector_colored.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_icon_color_selector_colored.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_lance.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_lance.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_alert_dialog_button_bar_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_button_bar_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout-sw600dp-v13/design_layout_snackbar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-sw600dp-v13_design_layout_snackbar.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_fritzbox_icon.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_fritzbox_icon.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_btn_checkable.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_popup_enter.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/design_tint_password_toggle.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_design_tint_password_toggle.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_text_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_text_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_dialog_title_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_btn_colored_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_call_icon.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_call_icon.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_search_view.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_seekbar_thumb_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media_custom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_custom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_bottom_navigation_item.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_bottom_navigation_item.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_menu_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_legacy_text_color_selector.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_legacy_text_color_selector.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_focused_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_hint_foreground_material_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxxhdpi-v4/design_ic_visibility_off.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/ic_mtrl_chip_checked_circle.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_checked_circle.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxhdpi-v4/design_ic_visibility.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_design_ic_visibility.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout-sw600dp-v13/mtrl_layout_snackbar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-sw600dp-v13_mtrl_layout_snackbar.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/switch_thumb_material_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_background_cache_hint_selector_material_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_popup_exit.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_show_motion_spec.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_show_motion_spec.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_hide_motion_spec.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_hide_motion_spec.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_edit_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_divider_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_divider_material.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-mdpi/ic_launcher.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi_ic_launcher.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_material_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_edittext.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_fab_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_design_fab_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_settings_icon.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_settings_icon.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ratingbar_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_shrink_fade_out_from_bottom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_normal.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_chevron_left_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_chevron_left_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_checkbox.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-watch-v20/abc_dialog_material_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-watch-v20_abc_dialog_material_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim-v21/design_bottom_sheet_slide_out.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim-v21_design_bottom_sheet_slide_out.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_action_tombstone.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_action_tombstone.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-v21/notification_action_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_notification_action_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_grow_fade_in_from_bottom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_part_chronometer.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_part_chronometer.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_btn_checkable.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/design_fab_hide_motion_spec.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_design_fab_hide_motion_spec.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_btn_colored_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_text_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_bar_title_item.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_low_normal.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_bg.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_seekbar_track_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_bg_low.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_snackbar_include.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_snackbar_include.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_hint_foreground_material_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_linear.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_linear.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_alert_dialog_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_cab_background_top_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_cab_background_top_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_bottom_navigation_item_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_design_bottom_navigation_item_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_out_bottom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_search_dropdown_item_icons_2line.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_windmil.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_windmil.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-anydpi-v21/design_ic_visibility.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-anydpi-v21_design_ic_visibility.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_text_btn_text_color_selector.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_text_btn_text_color_selector.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_out_top.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color-v23/design_tint_password_toggle.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_design_tint_password_toggle.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_stroke_color_selector.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_stroke_color_selector.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_in_bottom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_menu_item_action_area.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_menu_item_action_area.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_media_action.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_media_action.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_item_background_holo_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_switch_track.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_edit_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/ic_mtrl_chip_close_circle.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_close_circle.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxxhdpi-v4/design_ic_visibility.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_design_ic_visibility.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_spinner_textfield_background_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_spinner_textfield_background_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_icon_group.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_icon_group.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_voice_search_api_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_voice_search_api_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_chip_state_list_anim.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_chip_state_list_anim.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_fritzbox.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_fritzbox.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_background_transition_holo_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_part_time.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_part_time.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_ripple_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_ripple_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_menu_overflow_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_menu_overflow_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_bg_color_selector.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_bg_color_selector.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_clear_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_snackbar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_snackbar.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/tooltip_frame_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_menu_item_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v23/abc_control_background_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v23_abc_control_background_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_mode_bar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-anydpi-v21/design_ic_visibility_off.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-anydpi-v21_design_ic_visibility_off.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_log_icon.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_log_icon.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/xml/network_security_config.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/xml_network_security_config.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_chevron_right_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_chevron_right_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xhdpi-v4/design_ic_visibility.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_design_ic_visibility.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/mtrl_layout_snackbar_include.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_mtrl_layout_snackbar_include.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_scene_2.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_2.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xhdpi-v4/design_ic_visibility_off.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_design_ic_visibility_off.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ratingbar_indicator_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_indicator_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_simple_overlay_action_mode.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator-v21/design_appbar_state_list_animator.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator-v21_design_appbar_state_list_animator.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_seekbar_tick_mark_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_tick_mark_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_fast_out_slow_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_fast_out_slow_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_custom_big.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_custom_big.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_expanded_menu_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_vector_test.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_go_search_api_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_go_search_api_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_low_normal.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_disable_only_material_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout-watch-v20/abc_alert_dialog_title_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_title_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_transformation_sheet_expand_spec.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_transformation_sheet_expand_spec.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_normal.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_check_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/design_password_eye.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_design_password_eye.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_background_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_background_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_activity_chooser_view_list_item.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view_list_item.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_switch_track.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_secondary_text_material_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_secondary_text_material_light.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/raw/my_ca=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/raw_my_ca.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_search_url_text.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/select_dialog_multichoice_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_multichoice_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/design_fab_show_motion_spec.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_design_fab_show_motion_spec.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator-v21/mtrl_fast_out_slow_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_fast_out_slow_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_alert_dialog_title_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_title_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_media_custom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_media_custom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_password_eye.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_design_password_eye.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/mtrl_tabs_default_indicator.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_mtrl_tabs_default_indicator.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item_separator.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_separator.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_launcher.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_launcher.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_cascading_menu_item_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_cascading_menu_item_layout.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_color_highlight_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_template_icon_group.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_template_icon_group.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_ripple_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_ripple_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_in_top.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/avd_hide_password.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_avd_hide_password.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_default.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/tooltip_frame_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_seek_thumb.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_default.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_activity_chooser_view.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim-v21/design_bottom_sheet_slide_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim-v21_design_bottom_sheet_slide_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_textfield_search_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_textfield_search_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_popup_menu_header_item_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_popup_menu_header_item_layout.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_launcher.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_launcher.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_select_dialog_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_bottom_sheet_slide_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_design_bottom_sheet_slide_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/mtrl_snackbar_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_mtrl_snackbar_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_bottom_nav_colored_item_tint.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_bottom_nav_colored_item_tint.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_normal.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_popup_menu_item_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-ldpi/ic_launcher.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldpi_ic_launcher.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v21/abc_btn_colored_borderless_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v21_abc_btn_colored_borderless_text_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_btn_colored_borderless_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_list_divider_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_list_divider_material.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_menu_white_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_menu_white_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_tile_bg.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_text_color_selector.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_text_color_selector.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_icon_color_selector.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_icon_color_selector.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_disable_only_material_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_linear_out_slow_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_linear_out_slow_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/avd_show_password.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_avd_show_password.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_text_cursor_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_switch_thumb_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_action_tombstone.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_action_tombstone.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_tab_icon.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_tab_icon.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/navigation_empty_icon.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_navigation_empty_icon.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_btn_unelevated_state_list_anim.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_btn_unelevated_state_list_anim.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_tooltip_enter.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_tooltip_enter.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item_header.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_header.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator-v21/mtrl_fast_out_linear_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_fast_out_linear_in.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_scene_3.jpg=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_3.jpg.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_fade_out.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_close_icon_tint.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_close_icon_tint.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_default_mtrl_shape.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_focused_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_bar_up_container.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_secondary_text_material_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_snackbar_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_design_snackbar_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_colored_ripple_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_colored_ripple_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_action.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_action.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_holo_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_snackbar_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_design_snackbar_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_lines_media.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_lines_media.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/ic_mtrl_chip_checked_black.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_checked_black.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_item_background_holo_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_toolbar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_menu_white_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_menu_white_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/select_dialog_item_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_action_bar_item_background_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_radio_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/design_error.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_design_error.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_action.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_don_quixote.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_don_quixote.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_chevron_left_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_chevron_left_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_text_input_password_icon.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_text_input_password_icon.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_colored_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_tab_text.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_tab_text.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_edittext.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-mdpi-v4/design_ic_visibility_off.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_design_ic_visibility_off.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_borderless_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_fast_out_linear_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_fast_out_linear_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator-v21/mtrl_linear_out_slow_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_linear_out_slow_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_bottom_sheet_slide_out.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_design_bottom_sheet_slide_out.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_tooltip_exit.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_tooltip_exit.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_text_btn_ripple_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_text_btn_ripple_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-mdpi-v4/design_ic_visibility.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_design_ic_visibility.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v16/notification_template_custom_big.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-v16_notification_template_custom_big.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_mode_close_item_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_mode_close_item_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/switch_thumb_material_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxhdpi-v4/design_ic_visibility_off.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_design_ic_visibility_off.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media_narrow.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_material_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_bottom_sheet_dialog.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_bottom_sheet_dialog.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_simple.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_media.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_media.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_background_cache_hint_selector_material_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_btn_state_list_anim.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_btn_state_list_anim.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_chevron_right_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_chevron_right_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-hdpi-v4/design_ic_visibility.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_design_ic_visibility.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_background_transition_holo_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_radio.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item_subheader.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_subheader.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_seek_thumb.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/support_simple_spinner_dropdown_item.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_support_simple_spinner_dropdown_item.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/select_dialog_singlechoice_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_singlechoice_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout-v26/abc_screen_toolbar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_fade_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable/bg_material.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_bg_material.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ratingbar_small_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_small_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_spinner.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_spinner.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_btn_colored_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_dialog_material_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_dialog_material_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_state_icon.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_state_icon.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media_narrow_custom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow_custom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_tooltip.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_abc_tooltip.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/layout/activity_app.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/debug/layout_activity_app.xml.flat diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml new file mode 100644 index 0000000000000000000000000000000000000000..d8fe69b85c7046cf5f92a53a904ee71cb107ce3e --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml @@ -0,0 +1,32 @@ + + + "Navigeer tuis" + "Navigeer op" + "Nog opsies" + "Klaar" + "Sien alles" + "Kies \'n program" + "AF" + "AAN" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Funksie+" + "Meta+" + "Shift+" + "spasiebalk" + "Simbool+" + "Kieslys+" + "Soek …" + "Vee navraag uit" + "Soeknavraag" + "Soek" + "Dien navraag in" + "Stemsoektog" + "Deel met" + "Deel met %s" + "Vou in" + "Soek" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml new file mode 100644 index 0000000000000000000000000000000000000000..10291357857e63ea5abca119f75be5e2f658d2de --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml @@ -0,0 +1,32 @@ + + + "ወደ መነሻ ይዳስሱ" + "ወደ ላይ ይዳስሱ" + "ተጨማሪ አማራጮች" + "ተከናውኗል" + "ሁሉንም ይመልከቱ" + "መተግበሪያ ይምረጡ" + "ጠፍቷል" + "በርቷል" + "Alt+" + "Ctrl+" + "ሰርዝ" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "ምናሌ+" + "ፈልግ…" + "መጠይቅ አጽዳ" + "የፍለጋ ጥያቄ" + "ፍለጋ" + "መጠይቅ ያስረክቡ" + "የድምፅ ፍለጋ" + "ከሚከተለው ጋር ያጋሩ" + "ከ%s ጋር አጋራ" + "ሰብስብ" + "ፈልግ" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml new file mode 100644 index 0000000000000000000000000000000000000000..e7fb419b6f3fd059a9deca60463cd08a10d979b5 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml @@ -0,0 +1,32 @@ + + + "التنقل إلى الشاشة الرئيسية" + "التنقل إلى أعلى" + "خيارات إضافية" + "تم" + "عرض الكل" + "اختيار تطبيق" + "إيقاف" + "تشغيل" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "القائمة+" + "بحث…" + "محو طلب البحث" + "طلب البحث" + "بحث" + "إرسال طلب البحث" + "البحث الصوتي" + "مشاركة مع" + "مشاركة مع %s" + "تصغير" + "البحث" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-as/values-as.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-as/values-as.xml new file mode 100644 index 0000000000000000000000000000000000000000..2287e53bb498b2b9bd2344dbe65271a12f6ebadd --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-as/values-as.xml @@ -0,0 +1,32 @@ + + + "গৃহ পৃষ্ঠালৈ যাওক" + "ওপৰলৈ যাওক" + "অধিক বিকল্প" + "সম্পন্ন কৰা হ\'ল" + "সকলো চাওক" + "এটা এপ্ বাছনি কৰক" + "অফ কৰক" + "অন কৰক" + "Alt+" + "CTRL+" + "মচক" + "এণ্টাৰ" + "ফাংশ্বন+" + "মেটা+" + "শ্বিফ্ট+" + "স্পেচ" + "Sym+" + "মেনু+" + "অনুসন্ধান কৰক…" + "প্ৰশ্ন মচক" + "সন্ধান কৰিব খোজা প্ৰশ্ন" + "সন্ধান কৰক" + "প্ৰশ্ন দাখিল কৰক" + "কণ্ঠধ্বনিৰ যোগেৰে সন্ধান কৰক" + "ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক" + "%sৰ জৰিয়তে শ্বেয়াৰ কৰক" + "সংকুচিত কৰক" + "অনুসন্ধান কৰক" + "৯৯৯+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml new file mode 100644 index 0000000000000000000000000000000000000000..8bbbd5bf7f44c8ccc4ea3946e1d53b6b7ff16cf2 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml @@ -0,0 +1,32 @@ + + + "Evə naviqasiya et" + "Yuxarı get" + "Digər variantlar" + "Hazırdır" + "Hamısına baxın" + "Tətbiq seçin" + "DEAKTİV" + "AKTİV" + "Alt+" + "Ctrl+" + "silin" + "daxil olun" + "Funksiya+" + "Meta+" + "Shift+" + "kosmos" + "Sym+" + "Menyu+" + "Axtarış..." + "Sorğunu təmizlə" + "Axtarış sorğusu" + "Axtarış" + "Sorğunu göndərin" + "Səsli axtarış" + "Bununla paylaşın" + "%s ilə paylaşın" + "Yığışdırın" + "Axtarış" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml new file mode 100644 index 0000000000000000000000000000000000000000..77f07c21f18ac5b167a3aea5a88e129dcf78cdef --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml @@ -0,0 +1,32 @@ + + + "Odlazak na Početnu" + "Kretanje nagore" + "Još opcija" + "Gotovo" + "Prikaži sve" + "Izbor aplikacije" + "ISKLJUČI" + "UKLJUČI" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "taster za razmak" + "Sym+" + "Menu+" + "Pretražite..." + "Brisanje upita" + "Upit za pretragu" + "Pretraga" + "Slanje upita" + "Glasovna pretraga" + "Deli sa" + "Deljenje sa aplikacijom %s" + "Skupi" + "Pretraži" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml new file mode 100644 index 0000000000000000000000000000000000000000..a0019be8922943b4f9e28026c8e7d0c3a7bb76df --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml @@ -0,0 +1,32 @@ + + + "Перайсці на галоўную старонку" + "Перайсці ўверх" + "Дадатковыя параметры" + "Гатова" + "Прагледзець усё" + "Выбраць праграму" + "ВЫКЛ." + "УКЛ." + "Alt +" + "Ctrl +" + "Delete" + "Enter" + "Fn +" + "Meta +" + "Shift +" + "Прабел" + "Sym +" + "Меню +" + "Пошук..." + "Выдалiць запыт" + "Запыт на пошук" + "Пошук" + "Адправіць запыт" + "Галасавы пошук" + "Абагуліць з" + "Абагуліць праз праграму %s" + "Згарнуць" + "Пошук" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml new file mode 100644 index 0000000000000000000000000000000000000000..ce1cb44f2917838dfff7f084539f01744de4d9e6 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml @@ -0,0 +1,32 @@ + + + "Придвижване към „Начало“" + "Придвижване нагоре" + "Още опции" + "Готово" + "Вижте всички" + "Изберете приложение" + "ИЗКЛ." + "ВКЛ." + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "клавиша за интервал" + "Sym+" + "Menu+" + "Търсете…" + "Изчистване на заявката" + "Заявка за търсене" + "Търсене" + "Изпращане на заявката" + "Гласово търсене" + "Споделяне със:" + "Споделяне със: %s" + "Свиване" + "Търсене" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml new file mode 100644 index 0000000000000000000000000000000000000000..b9e182a298f3a3546e801cb5eeef721a30d60fdd --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml @@ -0,0 +1,32 @@ + + + "হোম এ নেভিগেট করুন" + "উপরের দিকে নেভিগেট করুন" + "আরও বিকল্প" + "সম্পন্ন হয়েছে" + "সবগুলো দেখুন" + "একটি অ্যাপ্লিকেশান বেছে নিন" + "বন্ধ" + "চালু" + "Alt+" + "Ctrl+" + "মুছুন" + "enter" + "Function+" + "Meta+" + "Shift+" + "স্পেস" + "Sym+" + "মেনু+" + "অনুসন্ধান..." + "ক্যোয়ারী সাফ করুন" + "ক্যোয়ারী খুঁজুন" + "খুঁজুন" + "ক্যোয়ারী জমা দিন" + "ভয়েস অনুসন্ধান" + "এর সাথে শেয়ার করুন" + "%s এর সাথে শেয়ার করুন" + "সঙ্কুচিত করুন" + "খুঁজুন" + "৯৯৯+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml new file mode 100644 index 0000000000000000000000000000000000000000..bc8630d8058665c017a7a7373d3b66f4b5fde3d8 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml @@ -0,0 +1,32 @@ + + + "Vrati se na početnu stranicu" + "Navigiraj prema gore" + "Više opcija" + "Gotovo" + "Prikaži sve" + "Odaberite aplikaciju" + "ISKLJUČI" + "UKLJUČI" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "razmaknica" + "Sym+" + "Menu+" + "Pretraži..." + "Obriši upit" + "Pretraži upit" + "Traži" + "Pošalji upit" + "Glasovno pretraživanje" + "Dijeli sa" + "Dijeli koristeći aplikaciju %s" + "Skupi" + "Pretraži" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml new file mode 100644 index 0000000000000000000000000000000000000000..833039e10aa2256cccd415d3ceb3c400f192ca17 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml @@ -0,0 +1,32 @@ + + + "Navega a la pàgina d\'inici" + "Navega cap a dalt" + "Més opcions" + "Fet" + "Mostra\'ls tots" + "Selecciona una aplicació" + "DESACTIVAT" + "ACTIVAT" + "Alt+" + "Ctrl+" + "Supr" + "Retorn" + "Funció+" + "Meta+" + "Maj+" + "Espai" + "Sym+" + "Menú+" + "Cerca..." + "Esborra la consulta" + "Consulta de cerca" + "Cerca" + "Envia la consulta" + "Cerca per veu" + "Comparteix amb" + "Comparteix amb %s" + "Replega" + "Cerca" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml new file mode 100644 index 0000000000000000000000000000000000000000..a5878ca6826744ab5c70142818e01dbdbbd04e8f --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml @@ -0,0 +1,32 @@ + + + "Přejít na plochu" + "Přejít nahoru" + "Více možností" + "Hotovo" + "Zobrazit vše" + "Vybrat aplikaci" + "VYPNUTO" + "ZAPNUTO" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Fn+" + "Meta+" + "Shift+" + "mezerník" + "Sym+" + "Menu+" + "Vyhledat…" + "Smazat dotaz" + "Vyhledávací dotaz" + "Hledat" + "Odeslat dotaz" + "Hlasové vyhledávání" + "Sdílet pomocí" + "Sdílet s aplikací %s" + "Sbalit" + "Hledat" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml new file mode 100644 index 0000000000000000000000000000000000000000..7ae28b449a37e88e9d084127d68a328b7b5edc2d --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml @@ -0,0 +1,32 @@ + + + "Naviger hjem" + "Naviger op" + "Flere muligheder" + "Luk" + "Se alle" + "Vælg en app" + "FRA" + "TIL" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Fn+" + "Meta+" + "Shift+" + "mellemrum" + "Sym+" + "Menu+" + "Søg…" + "Ryd forespørgslen" + "Søgeforespørgsel" + "Søg" + "Indsend forespørgslen" + "Talesøgning" + "Del med" + "Del med %s" + "Skjul" + "Søg" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml new file mode 100644 index 0000000000000000000000000000000000000000..d2f8510465e5b1942152fac7933d06160aee18ca --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml @@ -0,0 +1,32 @@ + + + "Zur Startseite" + "Nach oben" + "Weitere Optionen" + "Fertig" + "Alle ansehen" + "App auswählen" + "Aus" + "An" + "Alt +" + "Strg +" + "Löschen" + "Eingabetaste" + "Funktionstaste +" + "Meta-Taste +" + "Umschalttaste +" + "Leertaste +" + "Sym-Taste +" + "Menütaste +" + "Suchen…" + "Suchanfrage löschen" + "Suchanfrage" + "Suchen" + "Suchanfrage senden" + "Sprachsuche" + "Freigeben für" + "Mit %s teilen" + "Minimieren" + "Suchen" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml new file mode 100644 index 0000000000000000000000000000000000000000..de7398c36fc6b1449e6c7799413622d28a659fb5 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml @@ -0,0 +1,32 @@ + + + "Πλοήγηση στην αρχική σελίδα" + "Πλοήγηση προς τα επάνω" + "Περισσότερες επιλογές" + "Τέλος" + "Προβολή όλων" + "Επιλέξτε κάποια εφαρμογή" + "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ" + "ΕΝΕΡΓΟΠΟΙΗΣΗ" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "διάστημα" + "Sym+" + "Menu+" + "Αναζήτηση…" + "Διαγραφή ερωτήματος" + "Ερώτημα αναζήτησης" + "Αναζήτηση" + "Υποβολή ερωτήματος" + "Φωνητική αναζήτηση" + "Κοινή χρήση με" + "Κοινή χρήση με %s" + "Σύμπτυξη" + "Αναζήτηση" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b21ff79ac956eac4d063175d8ce02537e3d7742 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml @@ -0,0 +1,32 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b21ff79ac956eac4d063175d8ce02537e3d7742 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rCA/values-en-rCA.xml @@ -0,0 +1,32 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b21ff79ac956eac4d063175d8ce02537e3d7742 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,32 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b21ff79ac956eac4d063175d8ce02537e3d7742 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml @@ -0,0 +1,32 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml new file mode 100644 index 0000000000000000000000000000000000000000..52e1a7d7849156f826b83eb8bfd6bfba788ad1f8 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rXC/values-en-rXC.xml @@ -0,0 +1,32 @@ + + + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‏‏‏‏‏‎‏‏‎‎‏‏‏‎‏‏‎‏‏‏‎‎‏‎‎‎‏‏‎‏‏‏‎‎‏‏‏‎‎‏‎‎‏‏‎‎‎‏‎Navigate home‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‎‎‎‏‏‏‏‏‏‏‎‏‏‏‏‏‎‏‎‎‏‏‎‏‎‎‎‎‎‏‏‏‎‏‎‎‎‎‎‏‏‎‏‏‎‎‏‎‏‎‏‏‏‏‏‎‎Navigate up‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‎‏‏‏‎‎‏‏‏‎‎‎‏‎‎‏‏‏‎‏‎‎‏‏‎‎‏‎‎‏‎‏‎‏‎‎‎‏‏‏‎‏‎‎‎‏‏‎‏‎‎‎‏‎‎‏‏‎‎More options‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‎‎‏‎‎‏‎‎‏‎‏‏‏‎‏‎‎‎‏‏‏‎‎‏‎‎‏‏‏‎‎‏‎‎‎‏‏‎‏‎‎‏‎‎‎‎‏‎‎‏‎‏‏‏‏‎‏‏‎Done‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‎‏‏‏‏‎‏‎‎‏‏‎‏‎‏‏‎‏‏‏‏‏‎‎‏‏‏‎‎‏‏‏‏‎‏‎‎‏‎‎‎‎‏‏‎‎‎‎‏‏‎‏‎‎‏‏‏‏‎‏‎See all‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‎‎‎‎‏‏‎‎‏‎‎‏‏‏‎‎‎‏‏‏‏‏‏‎‎‎‏‎‎‏‎‏‎‎‎‏‏‎‏‎‏‏‎‎‏‏‏‏‏‎‏‎‎‏‏‏‏‎‎Choose an app‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‎‏‏‏‎‏‎‏‏‏‎‎‏‎‏‏‎‏‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‏‏‎‎‎‏‏‎‎‎‎‏‏‏‎‏‎‎‎‎‎‏‎‎‏‎OFF‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‎‎‎‎‏‏‏‏‎‏‎‎‎‎‏‏‏‏‏‏‎‎‏‎‎‎‏‎‏‎‎‏‎‎‎‏‎‎‎‎‎‎‎‎‏‏‏‎‏‏‏‎‏‏‎ON‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‏‎‎‎‎‏‎‎‏‎‏‎‏‎‎‎‎‏‎‎‏‎‏‎‎‏‏‏‏‏‏‎‏‏‏‎‎‎‎‏‏‏‎‏‎‎‎‏‎‏‏‏‎‏‏‏‏‏‎Alt+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‏‎‎‏‏‎‎‎‏‎‏‎‏‏‏‏‏‏‎‏‎‎‎‏‎‎‏‎‏‏‎‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‎‎‏‏‏‎‎‏‎‎‎‎‎Ctrl+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‎‎‎‏‏‎‎‏‎‎‎‎‏‏‎‎‎‎‏‏‏‎‎‎‏‎‎‏‏‎‎‏‏‏‏‏‏‎‎‏‏‎‏‏‎‎‎‎‎‎‎‎‏‏‎‎delete‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‎‏‏‏‏‎‎‎‎‎‏‏‏‎‏‎‎‏‏‎‏‏‎‎‎‎‎‎‎‏‏‏‏‏‏‎‎‏‎‎‏‏‏‏‎‎‏‎‏‏‎‎‎‎‏‏‏‎‎‎enter‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‏‎‏‎‎‎‎‎‏‎‎‎‎‏‏‏‏‎‎‎‏‎‎‎‏‏‏‎‏‎‎‎‎‎‏‏‎‏‏‏‎‎‏‏‎‏‏‎‎‎‎‏‎‏‎‎‏‏‎Function+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‎‏‎‎‎‎‏‎‎‏‏‎‏‎‎‏‎‏‏‎‏‎‎‎‎‎‏‏‎‎‎‎‎‎‏‏‎‎‏‎‏‎‎‏‏‎‎‎‎‏‏‎‏‎‏‎‏‎‏‎Meta+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‎‎‎‏‏‎‎‎‏‏‎‎‏‏‎‎‏‏‏‎‏‎‎‏‏‎‎‎‎‎‏‏‎‏‎‏‏‎‎‎‎‎‎‎‎‏‎‎‏‎‎‎‏‏‏‎‏‎‎‎Shift+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‎‎‏‎‎‎‎‎‎‏‎‎‏‎‎‏‏‏‏‎‏‏‎‎‎‏‏‏‏‎‏‏‏‏‎‎‎‏‏‏‏‎‏‏‎‏‎‏‏‎‏‏‏‏‎‏‎‏‎‎space‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‎‎‏‏‏‎‏‏‏‏‏‎‏‎‏‎‏‏‎‎‎‏‎‏‎‏‎‏‎‎‏‎‎‏‏‏‏‏‏‏‎‎‏‎‏‎‎‎‎‎‏‎‎‎‎‎‎‏‎Sym+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‏‎‏‏‎‎‎‎‏‎‎‏‏‎‏‏‎‏‎‎‏‏‎‏‎‏‏‏‎‏‎‎‏‏‏‏‏‏‎‎‏‎‏‎‏‎‎‎‎‏‏‎‎‎‏‏‎‏‎Menu+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‎‏‏‎‎‏‏‎‎‎‎‎‏‎‎‎‏‎‏‎‎‎‎‎‏‏‏‏‏‎‎‏‎‏‏‏‏‎‎‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‏‏‏‎‎Search…‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‏‏‎‎‏‏‏‎‏‏‏‏‏‏‎‏‏‏‏‏‎‏‎‏‎‏‎‎‏‎‎‎‎‏‎‎‎‏‏‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‎‎‏‎Clear query‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‎‏‏‎‏‏‎‎‏‎‏‎‎‎‏‏‏‏‏‎‎‏‎‏‎‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‏‎‏‎‏‏‏‏‎‎‎‏‎‎‏‎‎‎‎Search query‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‎‏‎‏‎‏‏‎‎‏‎‏‏‏‎‏‎‎‏‎‏‎‎‏‎‎‎‏‏‎‏‎‏‎‏‎‏‎‎‎‏‎‏‎‎‎‎‎‎‏‎‏‏‎‎‎‏‎‏‎Search‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‏‏‏‏‎‎‏‏‏‎‏‏‎‎‏‎‎‏‎‏‎‎‏‎‏‎‏‎‏‎‏‎‎‎‎‎‏‏‎‎‎‎‎‏‏‎‎‎‏‏‎‎‎‎‎‎‎‎Submit query‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‏‏‎‎‏‏‎‎‎‎‏‎‎‎‎‎‎‏‎‏‏‏‏‏‎‏‏‏‎‎‏‏‏‎‎‎‏‎‏‎‎‏‏‎‏‏‎‎‏‎‎‎‏‏‎‎Voice search‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‏‏‏‎‎‏‏‏‏‏‏‎‏‏‏‏‎‏‎‎‎‏‎‏‎‏‏‏‎‎‏‏‎‎‎‎‎‏‎‏‎‏‎‏‏‎‏‎‏‏‎‏‎‎‎Share with‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‎‏‏‏‎‎‏‏‎‎‏‎‎‏‎‏‎‏‎‏‎‏‏‎‎‎‎‎‎‎‎‏‎‏‎‏‎‏‎‏‎‎‏‎‏‏‏‏‏‎‏‎‏‎‎‏‏‏‎Share with ‎‏‎‎‏‏‎%s‎‏‎‎‏‏‏‎‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‎‏‎‎‎‎‎‎‏‏‏‎‏‏‏‎‎‎‎‏‏‏‎‏‏‏‎‎‎‏‏‏‎‎‎‏‏‎‎‏‏‎‏‏‏‏‏‎‏‏‎‏‏‏‎‏‎Collapse‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‏‎‏‎‎‎‎‎‎‏‏‏‎‏‏‎‎‏‏‏‎‎‏‎‎‎‏‏‎‎‏‎‏‎‎‎‏‎‎‏‎‏‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‎Search‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‏‎‏‏‏‎‏‏‎‎‎‎‏‎‏‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‏‎‏‏‏‎‎‏‎‏‏‏‎‏‏‏‏‏‏‏‎‎‎‏‏‎999+‎‏‎‎‏‎" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml new file mode 100644 index 0000000000000000000000000000000000000000..edb85240316c8761a1d4fd1d96d4a5df8c586de5 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,32 @@ + + + "Navegar a la página principal" + "Navegar hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Elige una aplicación." + "DESACTIVADO" + "ACTIVADO" + "Alt+" + "Ctrl+" + "borrar" + "intro" + "Función+" + "Meta+" + "Mayúscula+" + "espacio" + "Sym+" + "Menú+" + "Buscar…" + "Eliminar la consulta" + "Búsqueda" + "Búsqueda" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + "Contraer" + "Buscar" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml new file mode 100644 index 0000000000000000000000000000000000000000..d2265adfaed75a021136b588a4d6caeb8525aa79 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml @@ -0,0 +1,32 @@ + + + "Ir a la pantalla de inicio" + "Desplazarse hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Seleccionar una aplicación" + "DESACTIVADO" + "ACTIVADO" + "Alt +" + "Ctrl +" + "Eliminar" + "Intro" + "Función +" + "Meta +" + "Mayús +" + "Espacio" + "Sym +" + "Menú +" + "Buscar…" + "Borrar consulta" + "Consulta" + "Buscar" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + "Contraer" + "Buscar" + "+999" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml new file mode 100644 index 0000000000000000000000000000000000000000..05be6e9938ed23058dd737913af98e68de908bbc --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml @@ -0,0 +1,32 @@ + + + "Navigeerimine avaekraanile" + "Navigeerimine üles" + "Rohkem valikuid" + "Valmis" + "Kuva kõik" + "Valige rakendus" + "VÄLJAS" + "SEES" + "Alt +" + "Ctrl +" + "kustutamisklahv" + "sisestusklahv" + "Funktsiooniklahv +" + "Meta +" + "Tõstuklahv +" + "tühik" + "Sym +" + "Menüü +" + "Otsige …" + "Päringu tühistamine" + "Otsingupäring" + "Otsing" + "Päringu esitamine" + "Häälotsing" + "Jagamine:" + "Jagamine rakendusega %s" + "Ahendamine" + "Otsing" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml new file mode 100644 index 0000000000000000000000000000000000000000..8c0987505def2a536f9896786adc59a021b9da94 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml @@ -0,0 +1,32 @@ + + + "Joan orri nagusira" + "Joan gora" + "Aukera gehiago" + "Eginda" + "Ikusi guztiak" + "Aukeratu aplikazio bat" + "DESAKTIBATUTA" + "AKTIBATUTA" + "Alt +" + "Ktrl +" + "Ezabatu" + "Sartu" + "Funtzioa +" + "Meta +" + "Maius +" + "Zuriunea" + "Sym +" + "Menua +" + "Bilatu…" + "Garbitu kontsulta" + "Bilaketa-kontsulta" + "Bilatu" + "Bidali kontsulta" + "Ahozko bilaketa" + "Partekatu hauekin" + "Partekatu %s aplikazioarekin" + "Tolestu" + "Bilatu" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml new file mode 100644 index 0000000000000000000000000000000000000000..90b289806f927fe261049c821209c0742357aec7 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml @@ -0,0 +1,32 @@ + + + "پیمایش به صفحه اصلی" + "پیمایش به بالا" + "گزینه‌های بیشتر" + "تمام" + "مشاهده همه" + "انتخاب برنامه" + "خاموش" + "روشن" + "‎Alt+‎" + "‎Ctrl+‎" + "delete" + "enter" + "‎Function+‎" + "‎Meta+‎" + "‎Shift+‎" + "کلید فاصله" + "‎Sym+‎" + "منو+" + "جستجو…" + "پاک کردن عبارت جستجو" + "عبارت جستجو" + "جستجو" + "ارسال عبارت جستجو" + "جستجوی گفتاری" + "اشتراک‌گذاری با" + "اشتراک‌گذاری با %s" + "کوچک کردن" + "جستجو" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml new file mode 100644 index 0000000000000000000000000000000000000000..75b02bb812631c4fc6249f62f4e9a9b876e07049 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml @@ -0,0 +1,32 @@ + + + "Siirry etusivulle" + "Siirry ylös" + "Lisää" + "Valmis" + "Näytä kaikki" + "Valitse sovellus" + "POIS KÄYTÖSTÄ" + "KÄYTÖSSÄ" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Fn+" + "Meta+" + "Vaihto+" + "välilyönti" + "Sym+" + "Valikko+" + "Haku…" + "Tyhjennä kysely" + "Hakulauseke" + "Haku" + "Lähetä kysely" + "Puhehaku" + "Jakaminen:" + "Jaa sovelluksessa %s" + "Kutista" + "Haku" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 0000000000000000000000000000000000000000..f71cf031c582138d7b0f0b6360e07fa9613bb3d5 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,32 @@ + + + "Revenir à l\'accueil" + "Revenir en haut de la page" + "Plus d\'options" + "Terminé" + "Voir toutes les chaînes" + "Sélectionnez une application" + "DÉSACTIVÉ" + "ACTIVÉ" + "Alt+" + "Ctrl+" + "supprimer" + "entrée" + "Fonction+" + "Méta+" + "Maj+" + "espace" + "Sym+" + "Menu+" + "Recherche en cours..." + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager" + "Partager avec %s" + "Réduire" + "Rechercher" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml new file mode 100644 index 0000000000000000000000000000000000000000..2aee397649a34b8f42c6655abc6e73871c362531 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml @@ -0,0 +1,32 @@ + + + "Revenir à l\'accueil" + "Revenir en haut de la page" + "Plus d\'options" + "OK" + "Tout afficher" + "Sélectionner une application" + "DÉSACTIVÉ" + "ACTIVÉ" + "Alt+" + "Ctrl+" + "supprimer" + "entrée" + "Fonction+" + "Méta+" + "Maj+" + "espace" + "Sym+" + "Menu+" + "Rechercher…" + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager avec" + "Partager avec %s" + "Réduire" + "Rechercher" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml new file mode 100644 index 0000000000000000000000000000000000000000..d0081c605bde094cdc83046070d255a65816f686 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml @@ -0,0 +1,32 @@ + + + "Ir á páxina de inicio" + "Desprazarse cara arriba" + "Máis opcións" + "Feito" + "Ver todas" + "Escoller unha aplicación" + "DESACTIVAR" + "ACTIVAR" + "Alt +" + "Ctrl +" + "eliminar" + "Intro" + "Función +" + "Meta +" + "Maiús +" + "espazo" + "Sim +" + "Menú +" + "Buscar…" + "Borrar consulta" + "Consulta de busca" + "Buscar" + "Enviar consulta" + "Busca por voz" + "Compartir con" + "Compartir con %s" + "Contraer" + "Buscar" + ">999" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml new file mode 100644 index 0000000000000000000000000000000000000000..0a3b83b404664ba279b98d4fc66973b623acce82 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml @@ -0,0 +1,32 @@ + + + "હોમ પર નેવિગેટ કરો" + "ઉપર નૅવિગેટ કરો" + "વધુ વિકલ્પો" + "થઈ ગયું" + "બધું જુઓ" + "એક ઍપ્લિકેશન પસંદ કરો" + "બંધ" + "ચાલુ" + "Alt+" + "Ctrl+" + "ડિલીટ કરો" + "Enter" + "Function+" + "Meta+" + "Shift+" + "Spacebar" + "Sym+" + "મેનૂ+" + "શોધો…" + "ક્વેરી સાફ કરો" + "શોધ ક્વેરી" + "શોધો" + "ક્વેરી સબમિટ કરો" + "વૉઇસ શોધ" + "આની સાથે શેર કરો" + "%sની સાથે શેર કરો" + "સંકુચિત કરો" + "શોધો" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml new file mode 100644 index 0000000000000000000000000000000000000000..e38bb90b3581627d059565973a7443441a887fe9 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml @@ -0,0 +1,4 @@ + + + 54dip + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml new file mode 100644 index 0000000000000000000000000000000000000000..d5a138ef9b4a8d1276f694e95d0e0293771d92ae --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml new file mode 100644 index 0000000000000000000000000000000000000000..6576cb7422b88c65992d5ee3def480f91325097a --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml @@ -0,0 +1,32 @@ + + + "होम पेज पर जाएं" + "ऊपर जाएं" + "ज़्यादा विकल्प" + "हो गया" + "सभी देखें" + "कोई एप्‍लिकेशन चुनें" + "बंद" + "चालू" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "खोजा जा रहा है…" + "क्‍वेरी साफ़ करें" + "सर्च क्वेरी" + "सर्च करें" + "क्वेरी सबमिट करें" + "आवाज़ सर्च" + "इसके साथ शेयर करें" + "%s के साथ शेयर करें" + "छोटा करें" + "सर्च" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml new file mode 100644 index 0000000000000000000000000000000000000000..2c3e6ae8a8c91779b16c36bc53a6343358d1e219 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml @@ -0,0 +1,32 @@ + + + "Idi na početnu" + "Idi gore" + "Dodatne opcije" + "Gotovo" + "Prikaži sve" + "Odabir aplikacije" + "ISKLJUČENO" + "UKLJUČENO" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "razmaknica" + "Sym+" + "Menu+" + "Pretražite…" + "Izbriši upit" + "Upit za pretraživanje" + "Pretraživanje" + "Pošalji upit" + "Glasovno pretraživanje" + "Dijeljenje sa" + "Dijeli putem aplikacije %s" + "Sažmi" + "Pretraživanje" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml new file mode 100644 index 0000000000000000000000000000000000000000..f980defea0ba719cd97e917a45b0812675896749 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml @@ -0,0 +1,32 @@ + + + "Ugrás a főoldalra" + "Felfelé mozgatás" + "További lehetőségek" + "Kész" + "Összes megtekintése" + "Válasszon ki egy alkalmazást" + "KI" + "BE" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "Szóköz" + "Sym+" + "Menu+" + "Keresés…" + "Lekérdezés törlése" + "Keresési lekérdezés" + "Keresés" + "Lekérdezés küldése" + "Hangalapú keresés" + "Megosztás a következővel:" + "Megosztás a következő alkalmazással: %s" + "Összecsukás" + "Keresés" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml new file mode 100644 index 0000000000000000000000000000000000000000..3247f9af29d0c9b7f8841f41d965028ee4c7d3d7 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml @@ -0,0 +1,32 @@ + + + "Ուղղվել տուն" + "Ուղղվել վերև" + "Այլ ընտրանքներ" + "Պատրաստ է" + "Տեսնել բոլորը" + "Ընտրել ծրագիր" + "ԱՆՋԱՏՎԱԾ" + "ՄԻԱՑՎԱԾ" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "բացատ" + "Sym+" + "Menu+" + "Որոնում..." + "Մաքրել հարցումը" + "Որոնման հարցում" + "Որոնել" + "Ուղարկել հարցումը" + "Ձայնային որոնում" + "Կիսվել" + "Ուղարկել %s-ին" + "Թաքցնել" + "Որոնել" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml new file mode 100644 index 0000000000000000000000000000000000000000..314af7ef71e8b18ab6f00b74f9dec42c19129e00 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml @@ -0,0 +1,32 @@ + + + "Navigasi ke beranda" + "Navigasi naik" + "Opsi lain" + "Selesai" + "Lihat semua" + "Pilih aplikasi" + "NONAKTIF" + "AKTIF" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "spasi" + "Sym+" + "Menu+" + "Telusuri..." + "Hapus kueri" + "Kueri penelusuran" + "Telusuri" + "Kirim kueri" + "Penelusuran suara" + "Bagikan dengan" + "Bagikan ke %s" + "Ciutkan" + "Telusuri" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml new file mode 100644 index 0000000000000000000000000000000000000000..58321f7b8816209d6228851ebe301cf6a7a6ac70 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml @@ -0,0 +1,32 @@ + + + "Fara heim" + "Fara upp" + "Fleiri valkostir" + "Lokið" + "Sjá allt" + "Veldu forrit" + "SLÖKKT" + "KVEIKT" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Aðgerðarlykill+" + "Meta+" + "Shift+" + "bilslá" + "Sym+" + "Valmynd+" + "Leita…" + "Hreinsa fyrirspurn" + "Leitarfyrirspurn" + "Leita" + "Senda fyrirspurn" + "Raddleit" + "Deila með" + "Deila með %s" + "Minnka" + "Leita" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml new file mode 100644 index 0000000000000000000000000000000000000000..48842b37fe3a919ccefcbb0b2069c402fe3373d0 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml @@ -0,0 +1,32 @@ + + + "Vai alla home page" + "Vai in alto" + "Altre opzioni" + "Fine" + "Visualizza tutte" + "Scegli un\'applicazione" + "OFF" + "ON" + "ALT +" + "CTRL +" + "CANC" + "INVIO" + "FUNZIONE +" + "META +" + "MAIUSC +" + "barra spaziatrice" + "SYM +" + "MENU +" + "Cerca…" + "Cancella query" + "Query di ricerca" + "Cerca" + "Invia query" + "Ricerca vocale" + "Condividi con" + "Condividi tramite %s" + "Comprimi" + "Ricerca" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml new file mode 100644 index 0000000000000000000000000000000000000000..ed74d57185bcdd63e378e49bc6e5bc05559d4d67 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml @@ -0,0 +1,32 @@ + + + "נווט לדף הבית" + "נווט למעלה" + "עוד אפשרויות" + "בוצע" + "ראה הכל" + "בחר אפליקציה" + "כבוי" + "פועל" + "Alt+" + "Ctrl+‎" + "delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "מקש רווח" + "Sym+" + "תפריט+" + "חיפוש…" + "מחק שאילתה" + "שאילתת חיפוש" + "חיפוש" + "שלח שאילתה" + "חיפוש קולי" + "שתף עם" + "שתף עם %s" + "כווץ" + "חיפוש" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml new file mode 100644 index 0000000000000000000000000000000000000000..6be45810010443025bdb17466bb7e990578315a2 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml @@ -0,0 +1,32 @@ + + + "ホームへ移動" + "上へ移動" + "その他のオプション" + "完了" + "すべて表示" + "アプリの選択" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "Space" + "Sym+" + "Menu+" + "検索…" + "検索キーワードを削除" + "検索キーワード" + "検索" + "検索キーワードを送信" + "音声検索" + "共有" + "%sと共有" + "折りたたむ" + "検索" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml new file mode 100644 index 0000000000000000000000000000000000000000..8e91c0ac988f931af6270ff893e901952ce627c2 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml @@ -0,0 +1,32 @@ + + + "მთავარზე ნავიგაცია" + "ზემოთ ნავიგაცია" + "მეტი ვარიანტები" + "დასრულდა" + "ყველას ნახვა" + "აპის არჩევა" + "გამორთულია" + "ჩართულია" + "Alt+" + "Ctrl+" + "წაშლა" + "შეყვანა" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "ძიება..." + "მოთხოვნის გასუფთავება" + "ძიების მოთხოვნა" + "ძიება" + "მოთხოვნის გადაგზავნა" + "ხმოვანი ძიება" + "გაზიარება:" + "გაუზიარეთ %s-ს" + "აკეცვა" + "ძიება" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml new file mode 100644 index 0000000000000000000000000000000000000000..d9596d09c65585da8cbb60e3c2115cc05c0386a1 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml @@ -0,0 +1,32 @@ + + + "Негізгі бетте қозғалу" + "Жоғары қозғалу" + "Басқа опциялар" + "Дайын" + "Барлығын көру" + "Қолданбаны таңдау" + "ӨШІРУЛІ" + "ҚОСУЛЫ" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "бос орын" + "Sym+" + "Mәзір+" + "Іздеу…" + "Сұрақты жою" + "Сұрақты іздеу" + "Іздеу" + "Сұрақты жіберу" + "Дауыс арқылы іздеу" + "Бөлісу" + "%s қолданбасымен бөлісу" + "Тасалау" + "Іздеу" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml new file mode 100644 index 0000000000000000000000000000000000000000..57735d238ffb9e71019d7213993178747771a41b --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml @@ -0,0 +1,32 @@ + + + "រកមើល​ទៅ​ដើម" + "រកមើល​ឡើងលើ" + "ជម្រើស​ច្រើន​ទៀត" + "រួចរាល់" + "មើល​ទាំងអស់" + "ជ្រើស​កម្មវិធី​​" + "បិទ" + "បើក" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "ស្វែងរក…" + "សម្អាត​សំណួរ" + "ស្វែងរក​សំណួរ" + "ស្វែងរក" + "ដាក់​​​ស្នើ​សំណួរ" + "ការស្វែងរក​សំឡេង" + "ចែករំលែក​ជាមួយ" + "ចែក​រំលែក​ជា​មួយ %s" + "បង្រួម" + "ស្វែងរក" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml new file mode 100644 index 0000000000000000000000000000000000000000..1e2402bd60e62541156e293c60e9b608b3a4e903 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml @@ -0,0 +1,32 @@ + + + "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" + "ಮುಗಿದಿದೆ" + "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" + "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ" + "ಆಫ್" + "ಆನ್" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "ಹುಡುಕಿ…" + "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು" + "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" + "ಹುಡುಕಿ" + "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು" + "ಧ್ವನಿ ಹುಡುಕಾಟ" + "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + "%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + "ಸಂಕುಚಿಸು" + "ಹುಡುಕಿ" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml new file mode 100644 index 0000000000000000000000000000000000000000..5e0d052f7aa80444cc74aff89b6ad736b3bd6686 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml @@ -0,0 +1,32 @@ + + + "홈 탐색" + "위로 탐색" + "옵션 더보기" + "완료" + "전체 보기" + "앱 선택" + "사용 안함" + "사용" + "Alt+" + "Ctrl+" + "삭제" + "입력" + "Function+" + "Meta+" + "Shift+" + "스페이스바" + "Sym+" + "Menu+" + "검색..." + "검색어 삭제" + "검색어" + "검색" + "검색어 보내기" + "음성 검색" + "공유 대상" + "%s와(과) 공유" + "접기" + "검색" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml new file mode 100644 index 0000000000000000000000000000000000000000..7a8bb7f4b0958e8440b1db9de75026def8074003 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml @@ -0,0 +1,32 @@ + + + "Үйгө багыттоо" + "Жогору" + "Көбүрөөк мүмкүнчүлүктөр" + "Даяр" + "Бардыгын көрүү" + "Колдонмо тандоо" + "ӨЧҮК" + "КҮЙҮК" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "боштук" + "Sym+" + "Menu+" + "Издөө…" + "Талаптарды тазалоо" + "Издөө талаптары" + "Издөө" + "Талап жөнөтүү" + "Үн аркылуу издөө" + "Бөлүшүү" + "%s аркылуу бөлүшүү" + "Жыйнап коюу" + "Издөө" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml new file mode 100644 index 0000000000000000000000000000000000000000..5d65779091e9af73c7d566d00f82a6ed9136ecd3 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml @@ -0,0 +1,10 @@ + + + 48dp + 12dp + 14dp + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml new file mode 100644 index 0000000000000000000000000000000000000000..c0ec67a31597a0b36bb8857f96d7bd4060c32774 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml @@ -0,0 +1,14 @@ + + + 440dp + 60% + 90% + 60% + 90% + 55% + 80% + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta/values-ta.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta/values-ta.xml new file mode 100644 index 0000000000000000000000000000000000000000..d9f29b6e4086af206de3d661e9ecdb1419662a8e --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta/values-ta.xml @@ -0,0 +1,32 @@ + + + "முகப்பிற்கு வழிசெலுத்து" + "மேலே செல்" + "மேலும் விருப்பங்கள்" + "முடிந்தது" + "எல்லாம் காட்டு" + "பயன்பாட்டைத் தேர்வுசெய்க" + "ஆஃப்" + "ஆன்" + "ஆல்ட் மற்றும்" + "கண்ட்ரோல் மற்றும்" + "டெலிட்" + "எண்டர்" + "ஃபங்ஷன் மற்றும்" + "மெட்டா மற்றும்" + "ஷிஃப்ட் மற்றும்" + "ஸ்பேஸ்" + "சிம்பல் மற்றும்" + "மெனு மற்றும்" + "தேடு..." + "வினவலை அழி" + "தேடல் வினவல்" + "தேடு" + "வினவலைச் சமர்ப்பி" + "குரல் தேடல்" + "இதனுடன் பகிர்" + "%s மூலம் பகிர்" + "சுருக்கு" + "தேடு" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te/values-te.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te/values-te.xml new file mode 100644 index 0000000000000000000000000000000000000000..54f0b16a8164cc9a2b42d2a6fb899e8556fc0d87 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te/values-te.xml @@ -0,0 +1,32 @@ + + + "హోమ్‌కు నావిగేట్ చేయండి" + "పైకి నావిగేట్ చేయండి" + "మరిన్ని ఎంపికలు" + "పూర్తయింది" + "అన్నీ చూడండి" + "అనువర్తనాన్ని ఎంచుకోండి" + "ఆఫ్ చేయి" + "ఆన్ చేయి" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "స్పేస్" + "Sym+" + "Menu+" + "వెతుకు..." + "ప్రశ్నను క్లియర్ చేయి" + "ప్రశ్న శోధించండి" + "వెతుకు" + "ప్రశ్నని సమర్పించు" + "వాయిస్ శోధన" + "వీరితో భాగస్వామ్యం చేయి" + "%sతో భాగస్వామ్యం చేయండి" + "కుదించండి" + "వెతుకు" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml new file mode 100644 index 0000000000000000000000000000000000000000..13dc94eccd6db3b16efe38af8fe0eee7caf71fb5 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml @@ -0,0 +1,32 @@ + + + "นำทางไปหน้าแรก" + "นำทางขึ้น" + "ตัวเลือกอื่น" + "เสร็จสิ้น" + "ดูทั้งหมด" + "เลือกแอป" + "ปิด" + "เปิด" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "Space" + "Sym+" + "เมนู+" + "ค้นหา…" + "ล้างข้อความค้นหา" + "ข้อความค้นหา" + "ค้นหา" + "ส่งข้อความค้นหา" + "ค้นหาด้วยเสียง" + "แชร์กับ" + "แชร์ทาง %s" + "ยุบ" + "ค้นหา" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml new file mode 100644 index 0000000000000000000000000000000000000000..18a148fbcc1e2acb7db170658dbbcae4b0ffe7db --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml @@ -0,0 +1,32 @@ + + + "Mag-navigate patungo sa home" + "Mag-navigate pataas" + "Higit pang mga opsyon" + "Tapos na" + "Tingnan lahat" + "Pumili ng isang app" + "I-OFF" + "I-ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Maghanap…" + "I-clear ang query" + "Query sa paghahanap" + "Maghanap" + "Isumite ang query" + "Paghahanap gamit ang boses" + "Ibahagi sa/kay" + "Ibahagi gamit ang %s" + "I-collapse" + "Maghanap" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml new file mode 100644 index 0000000000000000000000000000000000000000..01b0f459df87203d61b281ceeec92084fe991f0c --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml @@ -0,0 +1,32 @@ + + + "Ana ekrana git" + "Yukarı git" + "Diğer seçenekler" + "Bitti" + "Tümünü göster" + "Bir uygulama seçin" + "KAPAT" + "AÇ" + "Alt+" + "Ctrl+" + "sil" + "enter" + "İşlev+" + "Meta+" + "Üst Karakter+" + "boşluk" + "Sym+" + "Menü+" + "Ara…" + "Sorguyu temizle" + "Arama sorgusu" + "Ara" + "Sorguyu gönder" + "Sesli arama" + "Şununla paylaş" + "%s ile paylaş" + "Daralt" + "Ara" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml new file mode 100644 index 0000000000000000000000000000000000000000..c1d3da79859c53beb0a365f84a7e36d3d83cb32b --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml @@ -0,0 +1,32 @@ + + + "Перейти на головний" + "Перейти вгору" + "Інші опції" + "Готово" + "Переглянути всі" + "Вибрати програму" + "ВИМК." + "УВІМК." + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "пробіл" + "Sym+" + "Menu+" + "Пошук…" + "Очистити запит" + "Пошуковий запит" + "Пошук" + "Надіслати запит" + "Голосовий пошук" + "Надіслати через" + "Поділитися через додаток %s" + "Згорнути" + "Пошук" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur/values-ur.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur/values-ur.xml new file mode 100644 index 0000000000000000000000000000000000000000..6b717f4c2d6b081bbadd7256a98899246932493c --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur/values-ur.xml @@ -0,0 +1,32 @@ + + + "ہوم پر نیویگیٹ کریں" + "اوپر نیویگیٹ کریں" + "مزید اختیارات" + "ہو گیا" + "سبھی دیکھیں" + "ایک ایپ منتخب کریں" + "آف" + "آن" + "Alt+‎" + "Ctrl+‎" + "delete" + "enter" + "Function+‎" + "Meta+‎" + "Shift+‎" + "space" + "Sym+‎" + "Menu+‎" + "تلاش کریں…" + "استفسار صاف کریں" + "استفسار تلاش کریں" + "تلاش کریں" + "استفسار جمع کرائیں" + "صوتی تلاش" + "اشتراک کریں مع" + "%s کے ساتھ اشتراک کریں" + "سکیڑیں" + "تلاش" + "+999" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz/values-uz.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz/values-uz.xml new file mode 100644 index 0000000000000000000000000000000000000000..053764c5caf88df1c269e152be16d6fa275c85f9 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz/values-uz.xml @@ -0,0 +1,32 @@ + + + "Boshiga o‘tish" + "Yuqoriga o‘tish" + "Boshqa parametrlar" + "Tayyor" + "Hammasi" + "Dastur tanlang" + "O‘CHIQ" + "YONIQ" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Fn+" + "Meta+" + "Shift+" + "Probel" + "Sym+" + "Menyu+" + "Qidirish…" + "So‘rovni tozalash" + "So‘rovni izlash" + "Qidirish" + "So‘rov yaratish" + "Ovozli qidiruv" + "Ruxsat berish" + "%s orqali ulashish" + "Yig‘ish" + "Qidirish" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml new file mode 100644 index 0000000000000000000000000000000000000000..4c83abf4af96e43a7d9d3cf9b64cd2a89e47891b --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v16/values-v16.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v16/values-v16.xml new file mode 100644 index 0000000000000000000000000000000000000000..5ee2feb2389ed228f47c5157542307b8dc010684 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v16/values-v16.xml @@ -0,0 +1,8 @@ + + + 4dp + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml new file mode 100644 index 0000000000000000000000000000000000000000..f85a197ad0e336e966ffd267e6ba2e63b7dc91bd --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml new file mode 100644 index 0000000000000000000000000000000000000000..7dad77f9e2733e7725120ce7201d2728040504a2 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml @@ -0,0 +1,4 @@ + + + 0px + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml new file mode 100644 index 0000000000000000000000000000000000000000..3fb305f91a0b73eb3bf131661f5a9ab330b69c3c --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml @@ -0,0 +1,320 @@ + + + @color/secondary_text_default_material_light + 0dp + 0dp + 12dp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml new file mode 100644 index 0000000000000000000000000000000000000000..d4a514a5fb6ac2cd17eeb996c4714307b1761750 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml new file mode 100644 index 0000000000000000000000000000000000000000..484f6d174ff62b31fdbb5423d1539ba4343d928f --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml @@ -0,0 +1,41 @@ + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v24/values-v24.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v24/values-v24.xml new file mode 100644 index 0000000000000000000000000000000000000000..dbae6fb8331694789feb25b39dd0b6eab278ff7b --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v24/values-v24.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b28a465119dcda42c4d4c5d47121c8ffb7e4176 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml new file mode 100644 index 0000000000000000000000000000000000000000..1eabc0877041f955ede7ef2e682f9dfa5a45bfc0 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml @@ -0,0 +1,32 @@ + + + "Điều hướng về trang chủ" + "Điều hướng lên trên" + "Tùy chọn khác" + "Xong" + "Xem tất cả" + "Chọn một ứng dụng" + "TẮT" + "BẬT" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "phím cách" + "Sym+" + "Menu+" + "Tìm kiếm…" + "Xóa truy vấn" + "Tìm kiếm truy vấn" + "Tìm kiếm" + "Gửi truy vấn" + "Tìm kiếm bằng giọng nói" + "Chia sẻ với" + "Chia sẻ với %s" + "Thu gọn" + "Tìm kiếm" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml new file mode 100644 index 0000000000000000000000000000000000000000..2d85812e099f862b3d70b7c549a9e53b09729cc0 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v20/values-watch-v20.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml new file mode 100644 index 0000000000000000000000000000000000000000..deecc9e8d5e90f684748295b8ae3cbd957e845a6 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-watch-v21/values-watch-v21.xml @@ -0,0 +1,15 @@ + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml new file mode 100644 index 0000000000000000000000000000000000000000..b499d2cf3729a0b92b869da97322e3cb7fc544c2 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml @@ -0,0 +1,9 @@ + + + 60% + 90% + 50% + 70% + 45% + 72% + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000000000000000000000000000000000000..68140f72c1a5d7a32ed59e109c1c0be39fef7964 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,32 @@ + + + "转到主屏幕" + "转到上一层级" + "更多选项" + "完成" + "查看全部" + "选择应用" + "关闭" + "开启" + "Alt+" + "Ctrl+" + "Delete 键" + "Enter 键" + "Fn+" + "Meta+" + "Shift+" + "空格键" + "Sym+" + "Menu+" + "搜索…" + "清除查询" + "搜索查询" + "搜索" + "提交查询" + "语音搜索" + "分享方式" + "使用%s分享" + "收起" + "搜索" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 0000000000000000000000000000000000000000..f533663f74ee5cafcad749e83f39cc9802be033c --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,32 @@ + + + "瀏覽主頁" + "向上瀏覽" + "更多選項" + "完成" + "顯示全部" + "選擇應用程式" + "關閉" + "開啟" + "Alt +" + "Ctrl +" + "刪除" + "Enter 鍵" + "Fn +" + "Meta +" + "Shift +" + "空白鍵" + "Sym +" + "Menu +" + "搜尋…" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "分享對象" + "使用「%s」分享" + "收合" + "搜尋" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 0000000000000000000000000000000000000000..75f498a19ab5923f8788fc064410c336700a1e05 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,32 @@ + + + "瀏覽首頁" + "向上瀏覽" + "更多選項" + "完成" + "查看全部" + "選擇應用程式" + "關閉" + "開啟" + "Alt +" + "Ctrl +" + "Delete 鍵" + "Enter 鍵" + "Fn +" + "Meta +" + "Shift +" + "空格鍵" + "Sym +" + "Menu +" + "搜尋…" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "選擇分享對象" + "與「%s」分享" + "收合" + "搜尋" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml new file mode 100644 index 0000000000000000000000000000000000000000..31e318ddb42aee772c7637ceb7788b7578964ba5 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml @@ -0,0 +1,32 @@ + + + "Zulazulela ekhaya" + "Zulazulela phezulu" + "Izinketho eziningi" + "Kwenziwe" + "Buka konke" + "Khetha uhlelo lokusebenza" + "VALIWE" + "VULIWE" + "Alt+" + "Ctrl+" + "susa" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Imenyu+" + "Iyasesha..." + "Sula inkinga" + "Umbuzo wosesho" + "Sesha" + "Hambisa umbuzo" + "Ukusesha ngezwi" + "Yabelana no-" + "Yabelana ne-%s" + "Goqa" + "Sesha" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b8601c9ff9258698e8d5a972efbfaf8435868a6 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml @@ -0,0 +1,4499 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + false + true + true + @android:color/black + #7fa87f + @android:color/black + @android:color/black + #03A9F4 + @color/material_deep_teal_200 + @color/material_deep_teal_500 + @color/material_grey_800 + @android:color/white + @color/material_grey_850 + @color/material_grey_50 + #80ffffff + #80000000 + @color/bright_foreground_material_light + @color/bright_foreground_material_dark + @android:color/white + @android:color/black + #ff5a595b + #ffd6d7d7 + #FF424242 + #FFFFFFFF + #03000000 + #37000000 + #14000000 + #3F51B5 + #303F9F + @android:color/transparent + #14000000 + #44000000 + #0A000000 + #0F000000 + #1AFFFFFF + #2EFFFFFF + #323232 + #80bebebe + #80323232 + #ffbebebe + #ff323232 + #B6B6B6 + #ff7043 + #ff5722 + @android:color/white + @android:color/black + #6680cbc4 + #66009688 + #FFFFFF + #ff37474f + #ff263238 + #ff21272b + #ff80cbc4 + #ff009688 + #fff5f5f5 + #ffe0e0e0 + #fffafafa + #ff757575 + #ff424242 + #ff303030 + #ff212121 + #1F000000 + #61000000 + #00ffffff + #52000000 + #6B000000 + #1F000000 + #0A000000 + #DE000000 + #ffffffff + #ff9e9e9e + #ff424242 + #3F51B5 + #303F9F + @android:color/black + @color/material_grey_600 + #C5CAE9 + @color/material_grey_900 + @color/material_grey_100 + #212121 + #ffffffff + #de000000 + #4Dffffff + #39000000 + #33ffffff + #1f000000 + #727272 + #b3ffffff + #8a000000 + #36ffffff + #24000000 + #ff616161 + #ffbdbdbd + #ffbdbdbd + #fff1f1f1 + #e6616161 + #e6FFFFFF + 16dp + 72dp + 56dp + 0dp + 0dp + 4dp + 16dp + 10dp + 6dp + 48dp + 180dp + 5dp + -3dp + 48dp + 48dp + 36dp + 48dp + 48dp + @dimen/abc_control_inset_material + 6dp + 8dp + @dimen/abc_control_padding_material + 720dp + 320dp + 2dp + 4dp + 4dp + 2dp + 80% + 100% + 320dp + 320dp + 8dp + 8dp + 65% + 95% + 24dp + 18dp + 8dp + 0.30 + 0.26 + 32dip + 8dip + 8dip + 7dp + 4dp + 10dp + 16dp + @dimen/abc_action_bar_content_inset_material + 296dp + 4dp + 48dip + 320dip + 2dp + 2dp + 20dp + 3dp + 14sp + 14sp + 14sp + 12sp + 34sp + 45sp + 56sp + 112sp + 24sp + 22sp + 18sp + 14sp + 16sp + 14sp + 16sp + 16dp + 20sp + 20dp + 1dp + 2dp + 2dp + 4dp + 6dp + 8dp + 4dp + 2dp + 320dp + 320dp + 4dp + 168dp + 96dp + 14sp + 8dp + 56dp + 24dp + 96dp + 56dp + 8dp + 1dp + 12sp + 16dp + 64dp + 0.5dp + 6dp + 24dp + 40dp + 56dp + 6dp + 6dp + 16dp + 32dp + 24dp + 16dp + 32dp + 280dp + 8dp + 8dp + 128dp + 0dp + 6dp + 0dp + -1px + -1px + 12dp + 14dp + 24dp + 14sp + 264dp + 72dp + 14sp + 12sp + 5dp + 0.30 + 0.26 + 8dp + 0dp + 50dp + 0.26 + 0.20 + 0.12 + 0.50 + 0.38 + 0.70 + 0.54 + 20dp + 800dp + 120dp + 60dp + 5dp + 8dp + 0dp + 56dp + 4dp + 64dp + 0dp + 0dp + 2dp + 2dp + 2dp + 12dp + 8dp + 6dp + 0.07 + 4dp + 16dp + 16dp + 4dp + 6dp + 1dp + 4dp + 8dp + 8dp + 14sp + 0dp + 1dp + 8dp + 3dp + 14sp + 6dp + 2dp + 6dp + 0dp + 22dp + 14dp + 4dp + 8dp + 3dp + 4dp + 0dp + 4dp + 12dp + 1dp + 2dp + 16dp + 56dp + 32dp + 13sp + 12dp + 8dp + 64dp + 64dp + 10dp + @dimen/notification_content_margin_start + 16dp + 2dp + 3dp + 24dp + 13sp + 10dp + 5dp + 2dp + 2dp + 2dp + 2dp + 2dp + 16dp + 8dp + 8dp + 96dp + 6.5dp + 0dp + 16dp + #3333B5E5 + #0cffffff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220 + 150 + 150 + 150 + 127 + 150 + 2 + 300 + 320 + 100 + 100 + 100 + 250 + 200 + 999 + Navigate home + Navigate up + More options + Done + See all + Choose an app + OFF + ON + sans-serif + sans-serif-medium + sans-serif-medium + sans-serif + sans-serif + sans-serif + sans-serif + sans-serif-light + sans-serif + sans-serif + sans-serif + sans-serif-medium + Alt+ + Ctrl+ + delete + enter + Function+ + Meta+ + Shift+ + space + Sym+ + Menu+ + Search… + Clear query + Search query + Search + Submit query + Voice search + Share with + Share with %s + Collapse + SmartFritz + android.support.design.widget.AppBarLayout$ScrollingViewBehavior + android.support.design.widget.BottomSheetBehavior + Character limit exceeded %1$d of %2$d + %1$d / %2$d + android.support.design.transformation.FabTransformationScrimBehavior + android.support.design.transformation.FabTransformationSheetBehavior + Hello world! + android.support.design.behavior.HideBottomViewOnScrollBehavior + Remove %1$s + Show password + M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z + M2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z + M2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z + M3.27,4.27 L19.74,20.74 + Search + 999+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugResources/merger.xml b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merger.xml new file mode 100644 index 0000000000000000000000000000000000000000..8975c7721e4648488f880e323b3e62ff7beb9db3 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugResources/merger.xml @@ -0,0 +1,4916 @@ + +"999+""999+""999+""999+""999+""+999""999+""999+""999+""999+""९९९+""999+""999+""999+"4dp"၉၉၉+""999+""999+""999+""999+""999+""999+"">999""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""৯৯৯+""999+""999+""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‏‎‏‏‏‎‏‏‎‎‎‎‏‎‏‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‏‎‏‏‏‎‎‏‎‏‏‏‎‏‏‏‏‏‏‏‎‎‎‏‏‎999+‎‏‎‎‏‎""999+""+999""999+""999+""999+""999+""999+""999+""999+""৯৯৯+""999+""999+""999+""999+""999+""९९९+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+"#ffffffff#ff9e9e9e#1f000000#8a000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+"999+""999+""999+""999+" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 8dp0dp50dp20dp800dp120dp#FF424242#FFFFFFFF#03000000#37000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + 1dp2dp2dp"Перайсці на галоўную старонку""Перайсці ўверх""Дадатковыя параметры""Гатова""Прагледзець усё""Выбраць праграму""ВЫКЛ.""УКЛ.""Alt +""Ctrl +""Delete""Enter""Fn +""Meta +""Shift +""Прабел""Sym +""Меню +""Пошук...""Выдалiць запыт""Запыт на пошук""Пошук""Адправіць запыт""Галасавы пошук""Абагуліць з""Абагуліць праз праграму %s""Згарнуць""Пошук""پیمایش به صفحه اصلی""پیمایش به بالا""گزینه‌های بیشتر""تمام""مشاهده همه""انتخاب برنامه""خاموش""روشن""‎Alt+‎""‎Ctrl+‎""delete""enter""‎Function+‎""‎Meta+‎""‎Shift+‎""کلید فاصله""‎Sym+‎""منو+""جستجو…""پاک کردن عبارت جستجو""عبارت جستجو""جستجو""ارسال عبارت جستجو""جستجوی گفتاری""اشتراک‌گذاری با""اشتراک‌گذاری با %s""کوچک کردن""جستجو""Движи се кон дома""Движи се нагоре""Повеќе опции""Готово""Види ги сите""Избери апликација""ИСКЛУЧЕНО""ВКЛУЧЕНО""копче Alt+""копче Ctrl+""избриши""копче enter""копче Function+""копче Meta+""копче Shift+""вселена""копче Sym+""Мени+""Пребарување…""Исчисти барање""Пребарај барање""Пребарај""Поднеси барање""Гласовно пребарување""Сподели со""Сподели со %s""Собери""Пребарај""Nenda mwanzo""Nenda juu""Chaguo zaidi""Nimemaliza""Angalia zote""Chagua programu""IMEZIMWA""IMEWASHWA""Alt+""Ctrl+""futa""enter""Function+""Meta+""Shift+""nafasi""Sym+""Menyu+""Tafuta…""Futa hoja""Hoja ya utafutaji""Tafuta""Wasilisha hoja""Tafuta kwa kutamka""Shiriki na:""Shiriki ukitumia %s""Kunja""Tafuta""होम पेज पर जाएं""ऊपर जाएं""ज़्यादा विकल्प""हो गया""सभी देखें""कोई एप्‍लिकेशन चुनें""बंद""चालू""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""खोजा जा रहा है…""क्‍वेरी साफ़ करें""सर्च क्वेरी""सर्च करें""क्वेरी सबमिट करें""आवाज़ सर्च""इसके साथ शेयर करें""%s के साथ शेयर करें""छोटा करें""सर्च""ہوم پر نیویگیٹ کریں""اوپر نیویگیٹ کریں""مزید اختیارات""ہو گیا""سبھی دیکھیں""ایک ایپ منتخب کریں""آف""آن""Alt+‎""Ctrl+‎""delete""enter""Function+‎""Meta+‎""Shift+‎""space""Sym+‎""Menu+‎""تلاش کریں…""استفسار صاف کریں""استفسار تلاش کریں""تلاش کریں""استفسار جمع کرائیں""صوتی تلاش""اشتراک کریں مع""%s کے ساتھ اشتراک کریں""سکیڑیں""تلاش""Gå til startsiden""Gå opp""Flere alternativer""Ferdig""Se alle""Velg en app""AV""PÅ""Alt+""Ctrl+""delete""enter""Funksjon+""Meta+""Shift+""mellomrom""Sym+""Meny+""Søk …""Slett søket""Søkeord""Søk""Utfør søket""Talesøk""Del med""Del med %s""Skjul""Søk""Navigați la ecranul de pornire""Navigați în sus""Mai multe opțiuni""Terminat""Afișați-le pe toate""Alegeți o aplicație""DEZACTIVAȚI""ACTIVAT""Alt+""Ctrl+""delete""enter""Funcție+""Meta+""Shift+""spațiu""Sym+""Meniu+""Căutați…""Ștergeți interogarea""Interogare de căutare""Căutați""Trimiteți interogarea""Căutare vocală""Trimiteți la""Trimiteți folosind %s""Restrângeți""Căutați""Navegar para a página inicial""Navegar para cima""Mais opções""Concluído""Ver tudo""Selecione um app""DESATIVAR""ATIVAR""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""espaço""Sym+""Menu+""Pesquisar...""Limpar consulta""Consulta de pesquisa""Pesquisar""Enviar consulta""Pesquisa por voz""Compartilhar com""Compartilhar com %s""Recolher""Pesquisar""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""Delete 鍵""Enter 鍵""Fn +""Meta +""Shift +""空格鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""選擇分享對象""與「%s」分享""收合""搜尋""गृह खोज्नुहोस्""माथि खोज्नुहोस्""थप विकल्पहरू""सम्पन्न भयो""सबै हेर्नुहोस्""एउटा अनुप्रयोग छान्नुहोस्""निष्क्रिय पार्नुहोस्""सक्रिय गर्नुहोस्""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""खोज्नुहोस्...""प्रश्‍न हटाउनुहोस्""जिज्ञासाको खोज गर्नुहोस्""खोज्नुहोस्""जिज्ञासा पेस गर्नुहोस्""भ्वाइस खोजी""साझेदारी गर्नुहोस्...""%s सँग आदान प्रदान गर्नुहोस्""संक्षिप्त पार्नुहोस्""खोज्नुहोस्""Eiti į pagrindinį puslapį""Eiti į viršų""Daugiau parinkčių""Atlikta""Peržiūrėti viską""Pasirinkti programą""IŠJUNGTA""ĮJUNGTI""„Alt“ +""„Ctrl“ +""„Delete“""„Enter“""„Function“ +""„Meta“ +""„Shift“ +""tarpo klavišas""„Sym“ +""„Menu“ +""Ieškoti...""Išvalyti užklausą""Paieškos užklausa""Paieška""Pateikti užklausą""Paieška balsu""Bendrinti naudojant""Bendrinti naudojant programą „%s“""Sutraukti""Paieška""Fara heim""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Alt+""Ctrl+""delete""enter""Aðgerðarlykill+""Meta+""Shift+""bilslá""Sym+""Valmynd+""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leita""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leita""홈 탐색""위로 탐색""옵션 더보기""완료""전체 보기""앱 선택""사용 안함""사용""Alt+""Ctrl+""삭제""입력""Function+""Meta+""Shift+""스페이스바""Sym+""Menu+""검색...""검색어 삭제""검색어""검색""검색어 보내기""음성 검색""공유 대상""%s와(과) 공유""접기""검색""မူလနေရာကို သွားရန်""အပေါ်သို့သွားရန်""ပိုမိုရွေးချယ်စရာများ""ပြီးဆုံးပါပြီ""အားလုံးကို ကြည့်ရန်""အက်ပ်တစ်ခုခုကို ရွေးချယ်ပါ""ပိတ်""ဖွင့်""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ရှာဖွေပါ...""ရှာစရာ အချက်အလက်များ ဖယ်ရှားရန်""ရှာစရာ အချက်အလက်နေရာ""ရှာဖွေရန်""ရှာဖွေစရာ အချက်အလက်ကို ပေးပို့ရန်""အသံဖြင့် ရှာဖွေခြင်း""မျှဝေဖို့ ရွေးပါ""%s ဖြင့် မျှဝေရန်""ခေါက်ရန်""ရှာဖွေပါ""Joan orri nagusira""Joan gora""Aukera gehiago""Eginda""Ikusi guztiak""Aukeratu aplikazio bat""DESAKTIBATUTA""AKTIBATUTA""Alt +""Ktrl +""Ezabatu""Sartu""Funtzioa +""Meta +""Maius +""Zuriunea""Sym +""Menua +""Bilatu…""Garbitu kontsulta""Bilaketa-kontsulta""Bilatu""Bidali kontsulta""Ahozko bilaketa""Partekatu hauekin""Partekatu %s aplikazioarekin""Tolestu""Bilatu""Odlazak na Početnu""Kretanje nagore""Još opcija""Gotovo""Prikaži sve""Izbor aplikacije""ISKLJUČI""UKLJUČI""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""taster za razmak""Sym+""Menu+""Pretražite...""Brisanje upita""Upit za pretragu""Pretraga""Slanje upita""Glasovna pretraga""Deli sa""Deljenje sa aplikacijom %s""Skupi""Pretraži""Pārvietoties uz sākuma ekrānu""Pārvietoties augšup""Vairāk opciju""Gatavs""Skatīt visu""Izvēlieties lietotni""IZSLĒGTS""IESLĒGTS""Alternēšanas taustiņš +""Vadīšanas taustiņš +""dzēšanas taustiņš""ievadīšanas taustiņš""Funkcijas taustiņš +""Meta taustiņš +""Pārslēgšanas taustiņš +""atstarpes taustiņš""Simbolu taustiņš +""Poga Izvēlne +""Meklējiet…""Notīrīt vaicājumu""Meklēšanas vaicājums""Meklēt""Iesniegt vaicājumu""Meklēšana ar balsi""Kopīgot ar:""Kopīgot ar lietojumprogrammu %s""Sakļaut""Meklēt""Zulazulela ekhaya""Zulazulela phezulu""Izinketho eziningi""Kwenziwe""Buka konke""Khetha uhlelo lokusebenza""VALIWE""VULIWE""Alt+""Ctrl+""susa""enter""Function+""Meta+""Shift+""space""Sym+""Imenyu+""Iyasesha...""Sula inkinga""Umbuzo wosesho""Sesha""Hambisa umbuzo""Ukusesha ngezwi""Yabelana no-""Yabelana ne-%s""Goqa""Sesha""Нүүр хуудас руу шилжих""Дээш шилжих""Нэмэлт сонголтууд""Дууссан""Бүгдийг харах""Апп сонгох""ИДЭВХГҮЙ""ИДЭВХТЭЙ""Alt+""Ctrl+""устгах""оруулах""Функц+""Мета+""Shift+""зай""Sym+""Цэс+""Хайх...""Асуулгыг цэвэрлэх""Хайх асуулга""Хайх""Асуулгыг илгээх""Дуут хайлт""Хуваалцах""%s-тай хуваалцах""Хумих""Хайлт""瀏覽主頁""向上瀏覽""更多選項""完成""顯示全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""刪除""Enter 鍵""Fn +""Meta +""Shift +""空白鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""使用「%s」分享""收合""搜尋""Ir á páxina de inicio""Desprazarse cara arriba""Máis opcións""Feito""Ver todas""Escoller unha aplicación""DESACTIVAR""ACTIVAR""Alt +""Ctrl +""eliminar""Intro""Función +""Meta +""Maiús +""espazo""Sim +""Menú +""Buscar…""Borrar consulta""Consulta de busca""Buscar""Enviar consulta""Busca por voz""Compartir con""Compartir con %s""Contraer""Buscar""მთავარზე ნავიგაცია""ზემოთ ნავიგაცია""მეტი ვარიანტები""დასრულდა""ყველას ნახვა""აპის არჩევა""გამორთულია""ჩართულია""Alt+""Ctrl+""წაშლა""შეყვანა""Function+""Meta+""Shift+""space""Sym+""Menu+""ძიება...""მოთხოვნის გასუფთავება""ძიების მოთხოვნა""ძიება""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""გაზიარება:""გაუზიარეთ %s-ს""აკეცვა""ძიება"24dp80dp64dp8dp8dp580dp16dp20dp"Navigeerimine avaekraanile""Navigeerimine üles""Rohkem valikuid""Valmis""Kuva kõik""Valige rakendus""VÄLJAS""SEES""Alt +""Ctrl +""kustutamisklahv""sisestusklahv""Funktsiooniklahv +""Meta +""Tõstuklahv +""tühik""Sym +""Menüü +""Otsige …""Päringu tühistamine""Otsingupäring""Otsing""Päringu esitamine""Häälotsing""Jagamine:""Jagamine rakendusega %s""Ahendamine""Otsing""Navigeer tuis""Navigeer op""Nog opsies""Klaar""Sien alles""Kies \'n program""AF""AAN""Alt+""Ctrl+""delete""enter""Funksie+""Meta+""Shift+""spasiebalk""Simbool+""Kieslys+""Soek …""Vee navraag uit""Soeknavraag""Soek""Dien navraag in""Stemsoektog""Deel met""Deel met %s""Vou in""Soek""Ուղղվել տուն""Ուղղվել վերև""Այլ ընտրանքներ""Պատրաստ է""Տեսնել բոլորը""Ընտրել ծրագիր""ԱՆՋԱՏՎԱԾ""ՄԻԱՑՎԱԾ""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""բացատ""Sym+""Menu+""Որոնում...""Մաքրել հարցումը""Որոնման հարցում""Որոնել""Ուղարկել հարցումը""Ձայնային որոնում""Կիսվել""Ուղարկել %s-ին""Թաքցնել""Որոնել""ହୋମ୍ ପେଜ୍‍କୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଉପରକୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଅଧିକ ବିକଳ୍ପ""ହୋଇଗଲା""ସବୁ ଦେଖନ୍ତୁ""ଗୋଟିଏ ଆପ୍‍ ବାଛନ୍ତୁ""ଅଫ୍""ଅନ୍""Alt+""Ctrl+""ଡିଲିଟ୍‍""ଏଣ୍ଟର୍""Function+""Meta+""Shift+""ସ୍ପେସ୍‍""Sym+""ମେନୁ""ସର୍ଚ୍ଚ…""କ୍ୱେରୀ ଖାଲି କରନ୍ତୁ""ସର୍ଚ୍ଚ କ୍ୱେରୀ""ସର୍ଚ୍ଚ କରନ୍ତୁ""କ୍ୱେରୀ ଦାଖଲ କରନ୍ତୁ""ଭଏସ୍‌ ସର୍ଚ୍ଚ""ଏହାଙ୍କ ସହ ଶେୟାର୍‌ କରନ୍ତୁ""%s ସହ ଶେୟାର୍‍ କରନ୍ତୁ""ଛୋଟ କରନ୍ତୁ""ସର୍ଚ୍ଚ କରନ୍ତୁ""นำทางไปหน้าแรก""นำทางขึ้น""ตัวเลือกอื่น""เสร็จสิ้น""ดูทั้งหมด""เลือกแอป""ปิด""เปิด""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Space""Sym+""เมนู+""ค้นหา…""ล้างข้อความค้นหา""ข้อความค้นหา""ค้นหา""ส่งข้อความค้นหา""ค้นหาด้วยเสียง""แชร์กับ""แชร์ทาง %s""ยุบ""ค้นหา""Перейти на главный экран""Перейти вверх""Другие параметры""Готово""Показать все""Выбрать приложение""ОТКЛ.""ВКЛ.""Alt +""Ctrl +""Delete""Ввод""Fn +""Meta +""Shift +""Пробел""Sym +""Меню +""Поиск""Удалить запрос""Поисковый запрос""Поиск""Отправить запрос""Голосовой поиск""Открыть доступ""Открыть доступ приложению \"%s\"""Свернуть""Поиск""Prejsť na plochu""Prejsť hore""Ďalšie možnosti""Hotovo""Zobraziť všetko""Zvoľte aplikáciu""VYPNUTÉ""ZAPNUTÉ""Alt+""Ctrl+""odstrániť""enter""Function+""Meta+""Shift+""medzerník""Sym+""Menu+""Vyhľadať…""Vymazať dopyt""Vyhľadávací dopyt""Hľadať""Odoslať dopyt""Hlasové vyhľadávanie""Zdieľať pomocou""Zdieľať s aplikáciou %s""Zbaliť""Vyhľadávanie""Перейти на головний""Перейти вгору""Інші опції""Готово""Переглянути всі""Вибрати програму""ВИМК.""УВІМК.""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""пробіл""Sym+""Menu+""Пошук…""Очистити запит""Пошуковий запит""Пошук""Надіслати запит""Голосовий пошук""Надіслати через""Поділитися через додаток %s""Згорнути""Пошук""ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക""മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക""കൂടുതൽ‍ ഓപ്‌ഷനുകള്‍""പൂർത്തിയാക്കി""എല്ലാം കാണുക""ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക""ഓഫ്""ഓൺ""Alt+""Ctrl+""ഇല്ലാതാക്കുക""enter""ഫംഗ്ഷന്‍+""മെറ്റ+""Shift+""സ്‌പെയ്‌സ്""Sym+""മെനു+""തിരയുക…""അന്വേഷണം മായ്‌ക്കുക""തിരയൽ അന്വേഷണം""തിരയൽ""അന്വേഷണം സമർപ്പിക്കുക""ശബ്ദതിരയൽ""ഇവരുമായി പങ്കിടുക""%s-മായി പങ്കിടുക""ചുരുക്കുക""തിരയുക""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""ಆಫ್""ಆನ್""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ಹುಡುಕಿ…""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಹುಡುಕಿ""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಧ್ವನಿ ಹುಡುಕಾಟ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಸಂಕುಚಿಸು""ಹುಡುಕಿ""Navegar a la página principal""Navegar hacia arriba""Más opciones""Listo""Ver todo""Elige una aplicación.""DESACTIVADO""ACTIVADO""Alt+""Ctrl+""borrar""intro""Función+""Meta+""Mayúscula+""espacio""Sym+""Menú+""Buscar…""Eliminar la consulta""Búsqueda""Búsqueda""Enviar consulta""Búsqueda por voz""Compartir con""Compartir con %s""Contraer""Buscar"54dip"Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Navigasi ke beranda""Navigasi naik""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Kueri penelusuran""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan ke %s""Ciutkan""Telusuri""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Revenir à l\'accueil""Revenir en haut de la page""Plus d\'options""Terminé""Voir toutes les chaînes""Sélectionnez une application""DÉSACTIVÉ""ACTIVÉ""Alt+""Ctrl+""supprimer""entrée""Fonction+""Méta+""Maj+""espace""Sym+""Menu+""Recherche en cours...""Effacer la requête""Requête de recherche""Rechercher""Envoyer la requête""Recherche vocale""Partager""Partager avec %s""Réduire""Rechercher""গৃহ পৃষ্ঠালৈ যাওক""ওপৰলৈ যাওক""অধিক বিকল্প""সম্পন্ন কৰা হ\'ল""সকলো চাওক""এটা এপ্ বাছনি কৰক""অফ কৰক""অন কৰক""Alt+""CTRL+""মচক""এণ্টাৰ""ফাংশ্বন+""মেটা+""শ্বিফ্ট+""স্পেচ""Sym+""মেনু+""অনুসন্ধান কৰক…""প্ৰশ্ন মচক""সন্ধান কৰিব খোজা প্ৰশ্ন""সন্ধান কৰক""প্ৰশ্ন দাখিল কৰক""কণ্ঠধ্বনিৰ যোগেৰে সন্ধান কৰক""ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক""%sৰ জৰিয়তে শ্বেয়াৰ কৰক""সংকুচিত কৰক""অনুসন্ধান কৰক""Evə naviqasiya et""Yuxarı get""Digər variantlar""Hazırdır""Hamısına baxın""Tətbiq seçin""DEAKTİV""AKTİV""Alt+""Ctrl+""silin""daxil olun""Funksiya+""Meta+""Shift+""kosmos""Sym+""Menyu+""Axtarış...""Sorğunu təmizlə""Axtarış sorğusu""Axtarış""Sorğunu göndərin""Səsli axtarış""Bununla paylaşın""%s ilə paylaşın""Yığışdırın""Axtarış"60%90%50%70%45%72%"ወደ መነሻ ይዳስሱ""ወደ ላይ ይዳስሱ""ተጨማሪ አማራጮች""ተከናውኗል""ሁሉንም ይመልከቱ""መተግበሪያ ይምረጡ""ጠፍቷል""በርቷል""Alt+""Ctrl+""ሰርዝ""enter""Function+""Meta+""Shift+""space""Sym+""ምናሌ+""ፈልግ…""መጠይቅ አጽዳ""የፍለጋ ጥያቄ""ፍለጋ""መጠይቅ ያስረክቡ""የድምፅ ፍለጋ""ከሚከተለው ጋር ያጋሩ""ከ%s ጋር አጋራ""ሰብስብ""ፈልግ""រកមើល​ទៅ​ដើម""រកមើល​ឡើងលើ""ជម្រើស​ច្រើន​ទៀត""រួចរាល់""មើល​ទាំងអស់""ជ្រើស​កម្មវិធី​​""បិទ""បើក""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ស្វែងរក…""សម្អាត​សំណួរ""ស្វែងរក​សំណួរ""ស្វែងរក""ដាក់​​​ស្នើ​សំណួរ""ការស្វែងរក​សំឡេង""ចែករំលែក​ជាមួយ""ចែក​រំលែក​ជា​មួយ %s""បង្រួម""ស្វែងរក""Navegar para a página inicial""Navegar para cima""Mais opções""Concluído""Ver tudo""Escolher uma aplicação""DESATIVADO""ATIVADO""Alt +""Ctrl +""eliminar""enter""Função +""Meta +""Shift +""espaço""Sym +""Menu +""Pesquisar...""Limpar consulta""Consulta de pesquisa""Pesquisar""Enviar consulta""Pesquisa por voz""Partilhar com""Partilhar com a aplicação %s""Reduzir""Pesquisar""Orientohu për në shtëpi""Ngjitu lart""Opsione të tjera""U krye!""Shikoji të gjitha""Zgjidh një aplikacion""JOAKTIV""AKTIV""Alt+""Ctrl+""delete""enter""Funksioni+""Meta+""Shift+""hapësirë""Sym+""Menyja+""Kërko...""Pastro pyetjen""Kërko pyetjen""Kërko""Dërgo pyetjen""Kërkim me zë""Shpërnda publikisht me""Ndaje me %s""Shpalos""Kërko""Одлазак на Почетну""Кретање нагоре""Још опција""Готово""Прикажи све""Избор апликације""ИСКЉУЧИ""УКЉУЧИ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""тастер за размак""Sym+""Menu+""Претражите...""Брисање упита""Упит за претрагу""Претрага""Слање упита""Гласовна претрага""Дели са""Дељење са апликацијом %s""Скупи""Претражи""Revenir à l\'accueil""Revenir en haut de la page""Plus d\'options""OK""Tout afficher""Sélectionner une application""DÉSACTIVÉ""ACTIVÉ""Alt+""Ctrl+""supprimer""entrée""Fonction+""Méta+""Maj+""espace""Sym+""Menu+""Rechercher…""Effacer la requête""Requête de recherche""Rechercher""Envoyer la requête""Recherche vocale""Partager avec""Partager avec %s""Réduire""Rechercher""Boshiga o‘tish""Yuqoriga o‘tish""Boshqa parametrlar""Tayyor""Hammasi""Dastur tanlang""O‘CHIQ""YONIQ""Alt+""Ctrl+""Delete""Enter""Fn+""Meta+""Shift+""Probel""Sym+""Menyu+""Qidirish…""So‘rovni tozalash""So‘rovni izlash""Qidirish""So‘rov yaratish""Ovozli qidiruv""Ruxsat berish""%s orqali ulashish""Yig‘ish""Qidirish""转到主屏幕""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""Alt+""Ctrl+""Delete 键""Enter 键""Fn+""Meta+""Shift+""空格键""Sym+""Menu+""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享方式""使用%s分享""收起""搜索""נווט לדף הבית""נווט למעלה""עוד אפשרויות""בוצע""ראה הכל""בחר אפליקציה""כבוי""פועל""Alt+""Ctrl+‎""delete""Enter""Function+""Meta+""Shift+""מקש רווח""Sym+""תפריט+""חיפוש…""מחק שאילתה""שאילתת חיפוש""חיפוש""שלח שאילתה""חיפוש קולי""שתף עם""שתף עם %s""כווץ""חיפוש""Ana ekrana git""Yukarı git""Diğer seçenekler""Bitti""Tümünü göster""Bir uygulama seçin""KAPAT""AÇ""Alt+""Ctrl+""sil""enter""İşlev+""Meta+""Üst Karakter+""boşluk""Sym+""Menü+""Ara…""Sorguyu temizle""Arama sorgusu""Ara""Sorguyu gönder""Sesli arama""Şununla paylaş""%s ile paylaş""Daralt""Ara""Негізгі бетте қозғалу""Жоғары қозғалу""Басқа опциялар""Дайын""Барлығын көру""Қолданбаны таңдау""ӨШІРУЛІ""ҚОСУЛЫ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""бос орын""Sym+""Mәзір+""Іздеу…""Сұрақты жою""Сұрақты іздеу""Іздеу""Сұрақты жіберу""Дауыс арқылы іздеу""Бөлісу""%s қолданбасымен бөлісу""Тасалау""Іздеу""ගෙදරට සංචාලනය කරන්න""ඉහලට සංචාලනය කරන්න""තවත් විකල්ප""අවසාන වූ""සියල්ල බලන්න""යෙදුමක් තෝරන්න""ක්‍රියාවිරහිතයි""ක්‍රියාත්මකයි""Alt+""Ctrl+""මකන්න""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""සොයන්න...""විමසුම හිස් කරන්න""සෙවුම් විමසුම""සෙවීම""විමසුම යොමු කරන්න""හඬ සෙවීම""සමඟ බෙදාගන්න""%s සමඟ බෙදා ගන්න""හකුළන්න""සොයන්න""Үйгө багыттоо""Жогору""Көбүрөөк мүмкүнчүлүктөр""Даяр""Бардыгын көрүү""Колдонмо тандоо""ӨЧҮК""КҮЙҮК""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""боштук""Sym+""Menu+""Издөө…""Талаптарды тазалоо""Издөө талаптары""Издөө""Талап жөнөтүү""Үн аркылуу издөө""Бөлүшүү""%s аркылуу бөлүшүү""Жыйнап коюу""Издөө""Ugrás a főoldalra""Felfelé mozgatás""További lehetőségek""Kész""Összes megtekintése""Válasszon ki egy alkalmazást""KI""BE""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Szóköz""Sym+""Menu+""Keresés…""Lekérdezés törlése""Keresési lekérdezés""Keresés""Lekérdezés küldése""Hangalapú keresés""Megosztás a következővel:""Megosztás a következő alkalmazással: %s""Összecsukás""Keresés"falsetruefalsetrue@android:color/black#7fa87f@android:color/black@android:color/black@color/material_deep_teal_200@color/material_deep_teal_500@color/material_grey_800@android:color/white@color/material_grey_850@color/material_grey_50#80ffffff#80000000@color/bright_foreground_material_light@color/bright_foreground_material_dark@android:color/white@android:color/black#ff5a595b#ffd6d7d7#80bebebe#80323232#ffbebebe#ff323232#ff7043#ff5722@android:color/white@android:color/black#6680cbc4#66009688#ff37474f#ff263238#ff21272b#ff80cbc4#ff009688#fff5f5f5#ffe0e0e0#fffafafa#ff757575#ff424242#ff303030#ff212121@android:color/black@color/material_grey_600@color/material_grey_900@color/material_grey_100#ffffffff#de000000#4Dffffff#39000000#33ffffff#1f000000#b3ffffff#8a000000#36ffffff#24000000#ff616161#ffbdbdbd#ffbdbdbd#fff1f1f1#e6616161#e6FFFFFF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 16dp72dp56dp0dp0dp4dp16dp10dp6dp48dp180dp5dp-3dp48dp48dp36dp48dp48dp@dimen/abc_control_inset_material6dp8dp@dimen/abc_control_padding_material720dp320dp2dp4dp4dp2dp80%100%320dp320dp8dp8dp65%95%24dp18dp8dp0.300.2632dip8dip8dip7dp4dp10dp16dp@dimen/abc_action_bar_content_inset_material296dp4dp48dip320dip2dp2dp20dp3dp14sp14sp14sp12sp34sp45sp56sp112sp24sp22sp18sp14sp16sp14sp16sp16dp20sp20dp0.300.260.260.200.120.500.380.700.542dp16dp8dp8dp96dp6.5dp0dp16dp220150127150Navigate homeNavigate upMore optionsDoneSee allChoose an appOFFONsans-serifsans-serif-mediumsans-serif-mediumsans-serifsans-serifsans-serifsans-serifsans-serif-lightsans-serifsans-serifsans-serifsans-serif-mediumAlt+Ctrl+deleteenterFunction+Meta+Shift+spaceSym+Menu+Search…Clear querySearch querySearchSubmit queryVoice searchShare withShare with %sCollapseSearch"હોમ પર નેવિગેટ કરો""ઉપર નૅવિગેટ કરો""વધુ વિકલ્પો""થઈ ગયું""બધું જુઓ""એક ઍપ્લિકેશન પસંદ કરો""બંધ""ચાલુ""Alt+""Ctrl+""ડિલીટ કરો""Enter""Function+""Meta+""Shift+""Spacebar""Sym+""મેનૂ+""શોધો…""ક્વેરી સાફ કરો""શોધ ક્વેરી""શોધો""ક્વેરી સબમિટ કરો""વૉઇસ શોધ""આની સાથે શેર કરો""%sની સાથે શેર કરો""સંકુચિત કરો""શોધો""Idi na početnu""Idi gore""Dodatne opcije""Gotovo""Prikaži sve""Odabir aplikacije""ISKLJUČENO""UKLJUČENO""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""razmaknica""Sym+""Menu+""Pretražite…""Izbriši upit""Upit za pretraživanje""Pretraživanje""Pošalji upit""Glasovno pretraživanje""Dijeljenje sa""Dijeli putem aplikacije %s""Sažmi""Pretraživanje""Visa startsidan""Navigera uppåt""Fler alternativ""Klart""Visa alla""Välj en app""AV""PÅ""Alt + ""Ctrl + ""delete""retur""Funktion + ""Meta + ""Skift + ""blanksteg""Symbol + ""Meny + ""Sök …""Ta bort frågan""Sökfråga""Sök""Skicka fråga""Röstsökning""Dela med""Dela med %s""Komprimera""Sök""Придвижване към „Начало“""Придвижване нагоре""Още опции""Готово""Вижте всички""Изберете приложение""ИЗКЛ.""ВКЛ.""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""клавиша за интервал""Sym+""Menu+""Търсете…""Изчистване на заявката""Заявка за търсене""Търсене""Изпращане на заявката""Гласово търсене""Споделяне със:""Споделяне със: %s""Свиване""Търсене"320dp0dp2dp24dp576dp320dp@dimen/design_snackbar_padding_vertical + 160dp1true#14000000#3F51B5#303F9F@android:color/transparent#14000000#44000000#0A000000#0F000000#1AFFFFFF#2EFFFFFF#323232#1F000000#61000000#00ffffff#52000000#6B000000#1F000000#0A000000#DE000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4dp168dp96dp14sp8dp56dp24dp96dp56dp8dp1dp12sp16dp64dp0.5dp6dp24dp40dp56dp6dp6dp16dp32dp24dp16dp32dp280dp8dp8dp128dp0dp6dp0dp-1px-1px12dp14dp24dp14sp264dp72dp14sp12sp5dp60dp5dp8dp0dp56dp4dp64dp0dp0dp2dp2dp2dp12dp8dp6dp0.074dp16dp16dp4dp6dp1dp4dp8dp8dp14sp0dp1dp8dp3dp14sp6dp2dp6dp0dp22dp14dp4dp8dp3dp4dp0dp4dp12dp1dp2dp16dp56dp1501502300320100100100250200android.support.design.widget.AppBarLayout$ScrollingViewBehaviorandroid.support.design.widget.BottomSheetBehaviorCharacter limit exceeded %1$d of %2$d%1$d / %2$dandroid.support.design.transformation.FabTransformationScrimBehaviorandroid.support.design.transformation.FabTransformationSheetBehaviorandroid.support.design.behavior.HideBottomViewOnScrollBehaviorRemove %1$sShow passwordM12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 ZM2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 ZM3.27,4.27 L19.74,20.74SmartFritzHello world!#3F51B5#303F9F#C5CAE9#03A9F4#212121#727272#FFFFFF#B6B6B6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeDebugShaders/merger.xml b/SmartFritz/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000000000000000000000000000000000000..a6bff83ee8dea6814f687324dad65eb4cbe26bfa --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseAssets/merger.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseAssets/merger.xml new file mode 100644 index 0000000000000000000000000000000000000000..a58dbafa91d7983bacc01907b8a24097045138b0 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml new file mode 100644 index 0000000000000000000000000000000000000000..6f50fb173e3117b95d1c7820783c1bcc1cf50746 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties new file mode 100644 index 0000000000000000000000000000000000000000..50f5b99e5945cd32fe654d891a4dd54721abfbeb --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties @@ -0,0 +1,508 @@ +#Fri Jul 17 03:06:34 CEST 2020 +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_holo_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_holo_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_icon.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_icon.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_fab_ripple_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_fab_ripple_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_dialog_material_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_dialog_material_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-hdpi-v4/design_ic_visibility_off.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_design_ic_visibility_off.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_ripple_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_ripple_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_ab_back_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_ab_back_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_media_cancel_action.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_media_cancel_action.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_tab_indicator_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_tab_indicator_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_icon_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_notification_icon_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_search_api_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_search_api_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_cab_background_internal_bg.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_cab_background_internal_bg.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_bottom_nav_item_tint.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_bottom_nav_item_tint.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_menu_item.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_menu_item.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_snackbar_out.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_design_snackbar_out.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_half_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_template_custom_big.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_template_custom_big.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/mtrl_layout_snackbar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_mtrl_layout_snackbar.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_btn_colored_borderless_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_btn_colored_borderless_text_material.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xxhdpi/ic_launcher.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi_ic_launcher.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_menu.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_menu.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_scene_1.jpg=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_1.jpg.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/design_bottom_navigation_item_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_design_bottom_navigation_item_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_cervantes.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_cervantes.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_content_include.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_content_include.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_icon_color_selector_colored.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_icon_color_selector_colored.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_lance.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_lance.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_alert_dialog_button_bar_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_button_bar_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout-sw600dp-v13/design_layout_snackbar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-sw600dp-v13_design_layout_snackbar.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_fritzbox_icon.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_fritzbox_icon.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_btn_checkable.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_btn_checkable.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_popup_enter.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_popup_enter.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/design_tint_password_toggle.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_design_tint_password_toggle.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_text_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_text_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_dialog_title_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_dialog_title_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_btn_colored_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_btn_colored_material.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_call_icon.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_call_icon.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_search_view.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_search_view.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_seekbar_thumb_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_thumb_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media_custom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_custom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_bottom_navigation_item.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_bottom_navigation_item.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_menu_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_menu_layout.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_legacy_text_color_selector.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_legacy_text_color_selector.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_focused_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_half_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_hint_foreground_material_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_hint_foreground_material_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxxhdpi-v4/design_ic_visibility_off.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/ic_mtrl_chip_checked_circle.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_checked_circle.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxhdpi-v4/design_ic_visibility.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_design_ic_visibility.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout-sw600dp-v13/mtrl_layout_snackbar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-sw600dp-v13_mtrl_layout_snackbar.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/switch_thumb_material_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_switch_thumb_material_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_background_cache_hint_selector_material_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_background_cache_hint_selector_material_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_popup_exit.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_popup_exit.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_show_motion_spec.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_show_motion_spec.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_hide_motion_spec.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_hide_motion_spec.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_edit_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_edit_text_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_divider_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_divider_material.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-mdpi/ic_launcher.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi_ic_launcher.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_material_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_material_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_edittext.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_edittext.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_fab_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_design_fab_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_settings_icon.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_settings_icon.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ratingbar_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_shrink_fade_out_from_bottom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_shrink_fade_out_from_bottom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_normal.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_normal.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_chevron_left_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_chevron_left_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_checkbox.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_checkbox.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-watch-v20/abc_dialog_material_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-watch-v20_abc_dialog_material_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim-v21/design_bottom_sheet_slide_out.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim-v21_design_bottom_sheet_slide_out.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_action_tombstone.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_action_tombstone.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-v21/notification_action_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_notification_action_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_grow_fade_in_from_bottom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_grow_fade_in_from_bottom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_part_chronometer.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_part_chronometer.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-mdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_btn_checkable.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_btn_checkable.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/design_fab_hide_motion_spec.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_design_fab_hide_motion_spec.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_btn_colored_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_btn_colored_text_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_bar_title_item.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_bar_title_item.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_low_normal.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_half_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_bg.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_notification_bg.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_seekbar_track_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_track_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_bg_low.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_notification_bg_low.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_snackbar_include.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_snackbar_include.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_hint_foreground_material_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_hint_foreground_material_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_linear.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_linear.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_alert_dialog_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_cab_background_top_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_cab_background_top_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_bottom_navigation_item_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_design_bottom_navigation_item_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_out_bottom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_out_bottom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_search_dropdown_item_icons_2line.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_search_dropdown_item_icons_2line.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_windmil.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_windmil.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-anydpi-v21/design_ic_visibility.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-anydpi-v21_design_ic_visibility.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_text_btn_text_color_selector.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_text_btn_text_color_selector.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_out_top.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_out_top.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color-v23/design_tint_password_toggle.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_design_tint_password_toggle.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_stroke_color_selector.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_stroke_color_selector.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_in_bottom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_in_bottom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_menu_item_action_area.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_menu_item_action_area.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_media_action.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_media_action.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_item_background_holo_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_item_background_holo_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_switch_track.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_switch_track.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_edit_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_edit_text_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/ic_mtrl_chip_close_circle.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_close_circle.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxxhdpi-v4/design_ic_visibility.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_design_ic_visibility.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_spinner_textfield_background_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_spinner_textfield_background_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_icon_group.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_icon_group.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_voice_search_api_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_voice_search_api_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_chip_state_list_anim.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_chip_state_list_anim.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_fritzbox.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_fritzbox.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_background_transition_holo_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_background_transition_holo_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_part_time.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_part_time.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_ripple_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_ripple_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_menu_overflow_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_menu_overflow_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_bg_color_selector.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_bg_color_selector.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_clear_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_clear_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_snackbar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_snackbar.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/tooltip_frame_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_tooltip_frame_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_menu_item_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_menu_item_layout.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v23/abc_control_background_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v23_abc_control_background_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_mode_bar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_mode_bar.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-anydpi-v21/design_ic_visibility_off.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-anydpi-v21_design_ic_visibility_off.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_log_icon.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_log_icon.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/xml/network_security_config.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/xml_network_security_config.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_chevron_right_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_chevron_right_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xhdpi-v4/design_ic_visibility.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_design_ic_visibility.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/mtrl_layout_snackbar_include.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_mtrl_layout_snackbar_include.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_scene_2.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_2.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xhdpi-v4/design_ic_visibility_off.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_design_ic_visibility_off.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ratingbar_indicator_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_indicator_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_simple_overlay_action_mode.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_simple_overlay_action_mode.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator-v21/design_appbar_state_list_animator.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator-v21_design_appbar_state_list_animator.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_seekbar_tick_mark_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_tick_mark_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_fast_out_slow_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_fast_out_slow_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_template_custom_big.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_custom_big.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_expanded_menu_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_expanded_menu_layout.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_vector_test.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_vector_test.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_go_search_api_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_go_search_api_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_low_normal.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_disable_only_material_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_disable_only_material_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_half_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout-watch-v20/abc_alert_dialog_title_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-watch-v20_abc_alert_dialog_title_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_transformation_sheet_expand_spec.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_transformation_sheet_expand_spec.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notification_bg_normal.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_normal.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_layout.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_check_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_check_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/design_password_eye.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_design_password_eye.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_background_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_background_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_activity_chooser_view_list_item.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_activity_chooser_view_list_item.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_switch_track.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_switch_track.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_secondary_text_material_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_secondary_text_material_light.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/raw/my_ca=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/raw_my_ca.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_search_url_text.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_search_url_text.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/select_dialog_multichoice_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_multichoice_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/design_fab_show_motion_spec.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_design_fab_show_motion_spec.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator-v21/mtrl_fast_out_slow_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_fast_out_slow_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_alert_dialog_title_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_title_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_media_custom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_media_custom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_password_eye.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_design_password_eye.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/mtrl_tabs_default_indicator.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_mtrl_tabs_default_indicator.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_half_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item_separator.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_separator.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_star_half_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_launcher.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_launcher.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_cascading_menu_item_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_cascading_menu_item_layout.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_color_highlight_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_color_highlight_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_template_icon_group.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_template_icon_group.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_ripple_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_ripple_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_slide_in_top.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_in_top.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/avd_hide_password.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_avd_hide_password.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_default.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_default.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/tooltip_frame_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_tooltip_frame_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_seek_thumb.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_seek_thumb.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_default.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_default.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_activity_chooser_view.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_activity_chooser_view.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim-v21/design_bottom_sheet_slide_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim-v21_design_bottom_sheet_slide_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_textfield_search_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_textfield_search_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_popup_menu_header_item_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_popup_menu_header_item_layout.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_launcher.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_launcher.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_select_dialog_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_select_dialog_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_bottom_sheet_slide_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_design_bottom_sheet_slide_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/mtrl_snackbar_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_mtrl_snackbar_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_bottom_nav_colored_item_tint.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_bottom_nav_colored_item_tint.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_normal.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_normal.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_popup_menu_item_layout.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_popup_menu_item_layout.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-ldpi/ic_launcher.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldpi_ic_launcher.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v21/abc_btn_colored_borderless_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v21_abc_btn_colored_borderless_text_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_btn_colored_borderless_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_btn_colored_borderless_text_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_half_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_list_divider_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_list_divider_material.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_menu_white_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_menu_white_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable/notification_tile_bg.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_notification_tile_bg.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_text_color_selector.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_text_color_selector.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_icon_color_selector.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_icon_color_selector.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_disable_only_material_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_disable_only_material_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_linear_out_slow_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_linear_out_slow_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-v21/avd_show_password.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_avd_show_password.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_text_cursor_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_text_cursor_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_switch_thumb_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_switch_thumb_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_action_tombstone.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_action_tombstone.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_tab_icon.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_tab_icon.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/navigation_empty_icon.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_navigation_empty_icon.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_btn_unelevated_state_list_anim.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_btn_unelevated_state_list_anim.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_tooltip_enter.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_tooltip_enter.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item_header.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_header.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_light.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator-v21/mtrl_fast_out_linear_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_fast_out_linear_in.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_scene_3.jpg=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_3.jpg.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_fade_out.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_fade_out.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_chip_close_icon_tint.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_close_icon_tint.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_default_mtrl_shape.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_default_mtrl_shape.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_focused_holo.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_bar_up_container.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_bar_up_container.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_secondary_text_material_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_secondary_text_material_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/design_snackbar_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_design_snackbar_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_tabs_colored_ripple_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_colored_ripple_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout/notification_action.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_action.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-hdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_holo_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_holo_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_snackbar_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_design_snackbar_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_lines_media.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_lines_media.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable/ic_mtrl_chip_checked_black.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_checked_black.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_black_16dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_star_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_item_background_holo_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_item_background_holo_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_toolbar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_toolbar.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-xhdpi/ic_menu_white_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_menu_white_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/select_dialog_item_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_item_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-v21/abc_action_bar_item_background_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_action_bar_item_background_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_radio_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_radio_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/design_error.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_design_error.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v21/notification_action.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_action.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_don_quixote.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_don_quixote.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxxhdpi-v4/abc_ic_star_half_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_ic_star_half_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_chevron_left_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_chevron_left_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_text_input_password_icon.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_text_input_password_icon.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_colored_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_colored_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_layout_tab_text.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_tab_text.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_edittext.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_edittext.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-mdpi-v4/design_ic_visibility_off.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_design_ic_visibility_off.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_btn_borderless_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_borderless_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator/mtrl_fast_out_linear_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_fast_out_linear_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/interpolator-v21/mtrl_linear_out_slow_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_linear_out_slow_in.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/anim/design_bottom_sheet_slide_out.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_design_bottom_sheet_slide_out.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_tooltip_exit.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_tooltip_exit.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl_dark.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/color/mtrl_btn_text_btn_ripple_color.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_text_btn_ripple_color.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-mdpi-v4/design_ic_visibility.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_design_ic_visibility.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/layout-v16/notification_template_custom_big.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-v16_notification_template_custom_big.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_action_mode_close_item_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_mode_close_item_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/switch_thumb_material_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_switch_thumb_material_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-xxhdpi-v4/design_ic_visibility_off.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_design_ic_visibility_off.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media_narrow.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_narrow.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_primary_text_material_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_material_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_bottom_sheet_dialog.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_bottom_sheet_dialog.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_screen_simple.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_simple.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_media.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_media.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_ic_menu_cut_mtrl_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_background_cache_hint_selector_material_dark.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_background_cache_hint_selector_material_dark.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-xhdpi-v4/abc_ic_star_half_black_36dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_btn_state_list_anim.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_btn_state_list_anim.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_chevron_right_black_48dp.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_chevron_right_black_48dp.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/drawable-hdpi-v4/design_ic_visibility.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_design_ic_visibility.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_list_selector_background_transition_holo_light.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_background_transition_holo_light.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_list_menu_item_radio.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_radio.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/layout/design_navigation_item_subheader.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_subheader.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_seek_thumb.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_seek_thumb.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/res/animator/mtrl_fab_transformation_sheet_collapse_spec.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/support_simple_spinner_dropdown_item.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_support_simple_spinner_dropdown_item.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/select_dialog_singlechoice_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_singlechoice_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout-v26/abc_screen_toolbar.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout-v26_abc_screen_toolbar.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/anim/abc_fade_in.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/anim_abc_fade_in.xml.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable/bg_material.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_bg_material.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_ratingbar_small_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_small_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_tint_spinner.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_spinner.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color-v23/abc_tint_spinner.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_spinner.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/color/abc_btn_colored_text_material.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/color_abc_btn_colored_text_material.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable/abc_dialog_material_background.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable_abc_dialog_material_background.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/drawable-hdpi/ic_state_icon.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_state_icon.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/res/layout/notification_template_big_media_narrow_custom.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_narrow_custom.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/layout/abc_tooltip.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_abc_tooltip.xml.flat +/home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/res/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/res/layout/activity_app.xml=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/res/merged/release/layout_activity_app.xml.flat diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af/values-af.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af/values-af.xml new file mode 100644 index 0000000000000000000000000000000000000000..d8fe69b85c7046cf5f92a53a904ee71cb107ce3e --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af/values-af.xml @@ -0,0 +1,32 @@ + + + "Navigeer tuis" + "Navigeer op" + "Nog opsies" + "Klaar" + "Sien alles" + "Kies \'n program" + "AF" + "AAN" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Funksie+" + "Meta+" + "Shift+" + "spasiebalk" + "Simbool+" + "Kieslys+" + "Soek …" + "Vee navraag uit" + "Soeknavraag" + "Soek" + "Dien navraag in" + "Stemsoektog" + "Deel met" + "Deel met %s" + "Vou in" + "Soek" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am/values-am.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am/values-am.xml new file mode 100644 index 0000000000000000000000000000000000000000..10291357857e63ea5abca119f75be5e2f658d2de --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am/values-am.xml @@ -0,0 +1,32 @@ + + + "ወደ መነሻ ይዳስሱ" + "ወደ ላይ ይዳስሱ" + "ተጨማሪ አማራጮች" + "ተከናውኗል" + "ሁሉንም ይመልከቱ" + "መተግበሪያ ይምረጡ" + "ጠፍቷል" + "በርቷል" + "Alt+" + "Ctrl+" + "ሰርዝ" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "ምናሌ+" + "ፈልግ…" + "መጠይቅ አጽዳ" + "የፍለጋ ጥያቄ" + "ፍለጋ" + "መጠይቅ ያስረክቡ" + "የድምፅ ፍለጋ" + "ከሚከተለው ጋር ያጋሩ" + "ከ%s ጋር አጋራ" + "ሰብስብ" + "ፈልግ" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ar/values-ar.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ar/values-ar.xml new file mode 100644 index 0000000000000000000000000000000000000000..e7fb419b6f3fd059a9deca60463cd08a10d979b5 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ar/values-ar.xml @@ -0,0 +1,32 @@ + + + "التنقل إلى الشاشة الرئيسية" + "التنقل إلى أعلى" + "خيارات إضافية" + "تم" + "عرض الكل" + "اختيار تطبيق" + "إيقاف" + "تشغيل" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "القائمة+" + "بحث…" + "محو طلب البحث" + "طلب البحث" + "بحث" + "إرسال طلب البحث" + "البحث الصوتي" + "مشاركة مع" + "مشاركة مع %s" + "تصغير" + "البحث" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-as/values-as.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-as/values-as.xml new file mode 100644 index 0000000000000000000000000000000000000000..2287e53bb498b2b9bd2344dbe65271a12f6ebadd --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-as/values-as.xml @@ -0,0 +1,32 @@ + + + "গৃহ পৃষ্ঠালৈ যাওক" + "ওপৰলৈ যাওক" + "অধিক বিকল্প" + "সম্পন্ন কৰা হ\'ল" + "সকলো চাওক" + "এটা এপ্ বাছনি কৰক" + "অফ কৰক" + "অন কৰক" + "Alt+" + "CTRL+" + "মচক" + "এণ্টাৰ" + "ফাংশ্বন+" + "মেটা+" + "শ্বিফ্ট+" + "স্পেচ" + "Sym+" + "মেনু+" + "অনুসন্ধান কৰক…" + "প্ৰশ্ন মচক" + "সন্ধান কৰিব খোজা প্ৰশ্ন" + "সন্ধান কৰক" + "প্ৰশ্ন দাখিল কৰক" + "কণ্ঠধ্বনিৰ যোগেৰে সন্ধান কৰক" + "ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক" + "%sৰ জৰিয়তে শ্বেয়াৰ কৰক" + "সংকুচিত কৰক" + "অনুসন্ধান কৰক" + "৯৯৯+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-az/values-az.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-az/values-az.xml new file mode 100644 index 0000000000000000000000000000000000000000..8bbbd5bf7f44c8ccc4ea3946e1d53b6b7ff16cf2 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-az/values-az.xml @@ -0,0 +1,32 @@ + + + "Evə naviqasiya et" + "Yuxarı get" + "Digər variantlar" + "Hazırdır" + "Hamısına baxın" + "Tətbiq seçin" + "DEAKTİV" + "AKTİV" + "Alt+" + "Ctrl+" + "silin" + "daxil olun" + "Funksiya+" + "Meta+" + "Shift+" + "kosmos" + "Sym+" + "Menyu+" + "Axtarış..." + "Sorğunu təmizlə" + "Axtarış sorğusu" + "Axtarış" + "Sorğunu göndərin" + "Səsli axtarış" + "Bununla paylaşın" + "%s ilə paylaşın" + "Yığışdırın" + "Axtarış" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml new file mode 100644 index 0000000000000000000000000000000000000000..77f07c21f18ac5b167a3aea5a88e129dcf78cdef --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml @@ -0,0 +1,32 @@ + + + "Odlazak na Početnu" + "Kretanje nagore" + "Još opcija" + "Gotovo" + "Prikaži sve" + "Izbor aplikacije" + "ISKLJUČI" + "UKLJUČI" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "taster za razmak" + "Sym+" + "Menu+" + "Pretražite..." + "Brisanje upita" + "Upit za pretragu" + "Pretraga" + "Slanje upita" + "Glasovna pretraga" + "Deli sa" + "Deljenje sa aplikacijom %s" + "Skupi" + "Pretraži" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-be/values-be.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-be/values-be.xml new file mode 100644 index 0000000000000000000000000000000000000000..a0019be8922943b4f9e28026c8e7d0c3a7bb76df --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-be/values-be.xml @@ -0,0 +1,32 @@ + + + "Перайсці на галоўную старонку" + "Перайсці ўверх" + "Дадатковыя параметры" + "Гатова" + "Прагледзець усё" + "Выбраць праграму" + "ВЫКЛ." + "УКЛ." + "Alt +" + "Ctrl +" + "Delete" + "Enter" + "Fn +" + "Meta +" + "Shift +" + "Прабел" + "Sym +" + "Меню +" + "Пошук..." + "Выдалiць запыт" + "Запыт на пошук" + "Пошук" + "Адправіць запыт" + "Галасавы пошук" + "Абагуліць з" + "Абагуліць праз праграму %s" + "Згарнуць" + "Пошук" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bg/values-bg.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bg/values-bg.xml new file mode 100644 index 0000000000000000000000000000000000000000..ce1cb44f2917838dfff7f084539f01744de4d9e6 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bg/values-bg.xml @@ -0,0 +1,32 @@ + + + "Придвижване към „Начало“" + "Придвижване нагоре" + "Още опции" + "Готово" + "Вижте всички" + "Изберете приложение" + "ИЗКЛ." + "ВКЛ." + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "клавиша за интервал" + "Sym+" + "Menu+" + "Търсете…" + "Изчистване на заявката" + "Заявка за търсене" + "Търсене" + "Изпращане на заявката" + "Гласово търсене" + "Споделяне със:" + "Споделяне със: %s" + "Свиване" + "Търсене" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bn/values-bn.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bn/values-bn.xml new file mode 100644 index 0000000000000000000000000000000000000000..b9e182a298f3a3546e801cb5eeef721a30d60fdd --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bn/values-bn.xml @@ -0,0 +1,32 @@ + + + "হোম এ নেভিগেট করুন" + "উপরের দিকে নেভিগেট করুন" + "আরও বিকল্প" + "সম্পন্ন হয়েছে" + "সবগুলো দেখুন" + "একটি অ্যাপ্লিকেশান বেছে নিন" + "বন্ধ" + "চালু" + "Alt+" + "Ctrl+" + "মুছুন" + "enter" + "Function+" + "Meta+" + "Shift+" + "স্পেস" + "Sym+" + "মেনু+" + "অনুসন্ধান..." + "ক্যোয়ারী সাফ করুন" + "ক্যোয়ারী খুঁজুন" + "খুঁজুন" + "ক্যোয়ারী জমা দিন" + "ভয়েস অনুসন্ধান" + "এর সাথে শেয়ার করুন" + "%s এর সাথে শেয়ার করুন" + "সঙ্কুচিত করুন" + "খুঁজুন" + "৯৯৯+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bs/values-bs.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bs/values-bs.xml new file mode 100644 index 0000000000000000000000000000000000000000..bc8630d8058665c017a7a7373d3b66f4b5fde3d8 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-bs/values-bs.xml @@ -0,0 +1,32 @@ + + + "Vrati se na početnu stranicu" + "Navigiraj prema gore" + "Više opcija" + "Gotovo" + "Prikaži sve" + "Odaberite aplikaciju" + "ISKLJUČI" + "UKLJUČI" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "razmaknica" + "Sym+" + "Menu+" + "Pretraži..." + "Obriši upit" + "Pretraži upit" + "Traži" + "Pošalji upit" + "Glasovno pretraživanje" + "Dijeli sa" + "Dijeli koristeći aplikaciju %s" + "Skupi" + "Pretraži" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ca/values-ca.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ca/values-ca.xml new file mode 100644 index 0000000000000000000000000000000000000000..833039e10aa2256cccd415d3ceb3c400f192ca17 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ca/values-ca.xml @@ -0,0 +1,32 @@ + + + "Navega a la pàgina d\'inici" + "Navega cap a dalt" + "Més opcions" + "Fet" + "Mostra\'ls tots" + "Selecciona una aplicació" + "DESACTIVAT" + "ACTIVAT" + "Alt+" + "Ctrl+" + "Supr" + "Retorn" + "Funció+" + "Meta+" + "Maj+" + "Espai" + "Sym+" + "Menú+" + "Cerca..." + "Esborra la consulta" + "Consulta de cerca" + "Cerca" + "Envia la consulta" + "Cerca per veu" + "Comparteix amb" + "Comparteix amb %s" + "Replega" + "Cerca" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-cs/values-cs.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-cs/values-cs.xml new file mode 100644 index 0000000000000000000000000000000000000000..a5878ca6826744ab5c70142818e01dbdbbd04e8f --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-cs/values-cs.xml @@ -0,0 +1,32 @@ + + + "Přejít na plochu" + "Přejít nahoru" + "Více možností" + "Hotovo" + "Zobrazit vše" + "Vybrat aplikaci" + "VYPNUTO" + "ZAPNUTO" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Fn+" + "Meta+" + "Shift+" + "mezerník" + "Sym+" + "Menu+" + "Vyhledat…" + "Smazat dotaz" + "Vyhledávací dotaz" + "Hledat" + "Odeslat dotaz" + "Hlasové vyhledávání" + "Sdílet pomocí" + "Sdílet s aplikací %s" + "Sbalit" + "Hledat" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-da/values-da.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-da/values-da.xml new file mode 100644 index 0000000000000000000000000000000000000000..7ae28b449a37e88e9d084127d68a328b7b5edc2d --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-da/values-da.xml @@ -0,0 +1,32 @@ + + + "Naviger hjem" + "Naviger op" + "Flere muligheder" + "Luk" + "Se alle" + "Vælg en app" + "FRA" + "TIL" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Fn+" + "Meta+" + "Shift+" + "mellemrum" + "Sym+" + "Menu+" + "Søg…" + "Ryd forespørgslen" + "Søgeforespørgsel" + "Søg" + "Indsend forespørgslen" + "Talesøgning" + "Del med" + "Del med %s" + "Skjul" + "Søg" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-de/values-de.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-de/values-de.xml new file mode 100644 index 0000000000000000000000000000000000000000..d2f8510465e5b1942152fac7933d06160aee18ca --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-de/values-de.xml @@ -0,0 +1,32 @@ + + + "Zur Startseite" + "Nach oben" + "Weitere Optionen" + "Fertig" + "Alle ansehen" + "App auswählen" + "Aus" + "An" + "Alt +" + "Strg +" + "Löschen" + "Eingabetaste" + "Funktionstaste +" + "Meta-Taste +" + "Umschalttaste +" + "Leertaste +" + "Sym-Taste +" + "Menütaste +" + "Suchen…" + "Suchanfrage löschen" + "Suchanfrage" + "Suchen" + "Suchanfrage senden" + "Sprachsuche" + "Freigeben für" + "Mit %s teilen" + "Minimieren" + "Suchen" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-el/values-el.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-el/values-el.xml new file mode 100644 index 0000000000000000000000000000000000000000..de7398c36fc6b1449e6c7799413622d28a659fb5 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-el/values-el.xml @@ -0,0 +1,32 @@ + + + "Πλοήγηση στην αρχική σελίδα" + "Πλοήγηση προς τα επάνω" + "Περισσότερες επιλογές" + "Τέλος" + "Προβολή όλων" + "Επιλέξτε κάποια εφαρμογή" + "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ" + "ΕΝΕΡΓΟΠΟΙΗΣΗ" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "διάστημα" + "Sym+" + "Menu+" + "Αναζήτηση…" + "Διαγραφή ερωτήματος" + "Ερώτημα αναζήτησης" + "Αναζήτηση" + "Υποβολή ερωτήματος" + "Φωνητική αναζήτηση" + "Κοινή χρήση με" + "Κοινή χρήση με %s" + "Σύμπτυξη" + "Αναζήτηση" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b21ff79ac956eac4d063175d8ce02537e3d7742 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rAU/values-en-rAU.xml @@ -0,0 +1,32 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b21ff79ac956eac4d063175d8ce02537e3d7742 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rCA/values-en-rCA.xml @@ -0,0 +1,32 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b21ff79ac956eac4d063175d8ce02537e3d7742 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,32 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b21ff79ac956eac4d063175d8ce02537e3d7742 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rIN/values-en-rIN.xml @@ -0,0 +1,32 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml new file mode 100644 index 0000000000000000000000000000000000000000..52e1a7d7849156f826b83eb8bfd6bfba788ad1f8 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-en-rXC/values-en-rXC.xml @@ -0,0 +1,32 @@ + + + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‏‏‏‏‏‎‏‏‎‎‏‏‏‎‏‏‎‏‏‏‎‎‏‎‎‎‏‏‎‏‏‏‎‎‏‏‏‎‎‏‎‎‏‏‎‎‎‏‎Navigate home‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‎‎‎‏‏‏‏‏‏‏‎‏‏‏‏‏‎‏‎‎‏‏‎‏‎‎‎‎‎‏‏‏‎‏‎‎‎‎‎‏‏‎‏‏‎‎‏‎‏‎‏‏‏‏‏‎‎Navigate up‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‎‏‏‏‎‎‏‏‏‎‎‎‏‎‎‏‏‏‎‏‎‎‏‏‎‎‏‎‎‏‎‏‎‏‎‎‎‏‏‏‎‏‎‎‎‏‏‎‏‎‎‎‏‎‎‏‏‎‎More options‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‎‎‏‎‎‏‎‎‏‎‏‏‏‎‏‎‎‎‏‏‏‎‎‏‎‎‏‏‏‎‎‏‎‎‎‏‏‎‏‎‎‏‎‎‎‎‏‎‎‏‎‏‏‏‏‎‏‏‎Done‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‎‏‏‏‏‎‏‎‎‏‏‎‏‎‏‏‎‏‏‏‏‏‎‎‏‏‏‎‎‏‏‏‏‎‏‎‎‏‎‎‎‎‏‏‎‎‎‎‏‏‎‏‎‎‏‏‏‏‎‏‎See all‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‎‎‎‎‏‏‎‎‏‎‎‏‏‏‎‎‎‏‏‏‏‏‏‎‎‎‏‎‎‏‎‏‎‎‎‏‏‎‏‎‏‏‎‎‏‏‏‏‏‎‏‎‎‏‏‏‏‎‎Choose an app‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‎‏‏‏‎‏‎‏‏‏‎‎‏‎‏‏‎‏‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‏‏‎‎‎‏‏‎‎‎‎‏‏‏‎‏‎‎‎‎‎‏‎‎‏‎OFF‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‎‎‎‎‏‏‏‏‎‏‎‎‎‎‏‏‏‏‏‏‎‎‏‎‎‎‏‎‏‎‎‏‎‎‎‏‎‎‎‎‎‎‎‎‏‏‏‎‏‏‏‎‏‏‎ON‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‏‎‎‎‎‏‎‎‏‎‏‎‏‎‎‎‎‏‎‎‏‎‏‎‎‏‏‏‏‏‏‎‏‏‏‎‎‎‎‏‏‏‎‏‎‎‎‏‎‏‏‏‎‏‏‏‏‏‎Alt+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‏‎‎‏‏‎‎‎‏‎‏‎‏‏‏‏‏‏‎‏‎‎‎‏‎‎‏‎‏‏‎‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‎‎‏‏‏‎‎‏‎‎‎‎‎Ctrl+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‎‎‎‏‏‎‎‏‎‎‎‎‏‏‎‎‎‎‏‏‏‎‎‎‏‎‎‏‏‎‎‏‏‏‏‏‏‎‎‏‏‎‏‏‎‎‎‎‎‎‎‎‏‏‎‎delete‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‎‏‏‏‏‎‎‎‎‎‏‏‏‎‏‎‎‏‏‎‏‏‎‎‎‎‎‎‎‏‏‏‏‏‏‎‎‏‎‎‏‏‏‏‎‎‏‎‏‏‎‎‎‎‏‏‏‎‎‎enter‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‏‎‏‎‎‎‎‎‏‎‎‎‎‏‏‏‏‎‎‎‏‎‎‎‏‏‏‎‏‎‎‎‎‎‏‏‎‏‏‏‎‎‏‏‎‏‏‎‎‎‎‏‎‏‎‎‏‏‎Function+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‎‏‎‎‎‎‏‎‎‏‏‎‏‎‎‏‎‏‏‎‏‎‎‎‎‎‏‏‎‎‎‎‎‎‏‏‎‎‏‎‏‎‎‏‏‎‎‎‎‏‏‎‏‎‏‎‏‎‏‎Meta+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‎‎‎‏‏‎‎‎‏‏‎‎‏‏‎‎‏‏‏‎‏‎‎‏‏‎‎‎‎‎‏‏‎‏‎‏‏‎‎‎‎‎‎‎‎‏‎‎‏‎‎‎‏‏‏‎‏‎‎‎Shift+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‎‎‏‎‎‎‎‎‎‏‎‎‏‎‎‏‏‏‏‎‏‏‎‎‎‏‏‏‏‎‏‏‏‏‎‎‎‏‏‏‏‎‏‏‎‏‎‏‏‎‏‏‏‏‎‏‎‏‎‎space‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‎‎‏‏‏‎‏‏‏‏‏‎‏‎‏‎‏‏‎‎‎‏‎‏‎‏‎‏‎‎‏‎‎‏‏‏‏‏‏‏‎‎‏‎‏‎‎‎‎‎‏‎‎‎‎‎‎‏‎Sym+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‏‎‏‏‎‎‎‎‏‎‎‏‏‎‏‏‎‏‎‎‏‏‎‏‎‏‏‏‎‏‎‎‏‏‏‏‏‏‎‎‏‎‏‎‏‎‎‎‎‏‏‎‎‎‏‏‎‏‎Menu+‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‎‏‏‎‎‏‏‎‎‎‎‎‏‎‎‎‏‎‏‎‎‎‎‎‏‏‏‏‏‎‎‏‎‏‏‏‏‎‎‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‏‏‏‎‎Search…‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‏‏‎‎‏‏‏‎‏‏‏‏‏‏‎‏‏‏‏‏‎‏‎‏‎‏‎‎‏‎‎‎‎‏‎‎‎‏‏‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‎‎‏‎Clear query‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‎‏‏‎‏‏‎‎‏‎‏‎‎‎‏‏‏‏‏‎‎‏‎‏‎‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‏‎‏‎‏‏‏‏‎‎‎‏‎‎‏‎‎‎‎Search query‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‎‏‎‏‎‏‏‎‎‏‎‏‏‏‎‏‎‎‏‎‏‎‎‏‎‎‎‏‏‎‏‎‏‎‏‎‏‎‎‎‏‎‏‎‎‎‎‎‎‏‎‏‏‎‎‎‏‎‏‎Search‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‏‏‏‏‎‎‏‏‏‎‏‏‎‎‏‎‎‏‎‏‎‎‏‎‏‎‏‎‏‎‏‎‎‎‎‎‏‏‎‎‎‎‎‏‏‎‎‎‏‏‎‎‎‎‎‎‎‎Submit query‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‏‏‎‎‏‏‎‎‎‎‏‎‎‎‎‎‎‏‎‏‏‏‏‏‎‏‏‏‎‎‏‏‏‎‎‎‏‎‏‎‎‏‏‎‏‏‎‎‏‎‎‎‏‏‎‎Voice search‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‏‏‏‎‎‏‏‏‏‏‏‎‏‏‏‏‎‏‎‎‎‏‎‏‎‏‏‏‎‎‏‏‎‎‎‎‎‏‎‏‎‏‎‏‏‎‏‎‏‏‎‏‎‎‎Share with‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‎‏‏‏‎‎‏‏‎‎‏‎‎‏‎‏‎‏‎‏‎‏‏‎‎‎‎‎‎‎‎‏‎‏‎‏‎‏‎‏‎‎‏‎‏‏‏‏‏‎‏‎‏‎‎‏‏‏‎Share with ‎‏‎‎‏‏‎%s‎‏‎‎‏‏‏‎‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‎‏‎‎‎‎‎‎‏‏‏‎‏‏‏‎‎‎‎‏‏‏‎‏‏‏‎‎‎‏‏‏‎‎‎‏‏‎‎‏‏‎‏‏‏‏‏‎‏‏‎‏‏‏‎‏‎Collapse‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‏‎‏‎‎‎‎‎‎‏‏‏‎‏‏‎‎‏‏‏‎‎‏‎‎‎‏‏‎‎‏‎‏‎‎‎‏‎‎‏‎‏‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‎Search‎‏‎‎‏‎" + "‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‏‎‏‏‏‎‏‏‎‎‎‎‏‎‏‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‏‎‏‏‏‎‎‏‎‏‏‏‎‏‏‏‏‏‏‏‎‎‎‏‏‎999+‎‏‎‎‏‎" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml new file mode 100644 index 0000000000000000000000000000000000000000..edb85240316c8761a1d4fd1d96d4a5df8c586de5 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,32 @@ + + + "Navegar a la página principal" + "Navegar hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Elige una aplicación." + "DESACTIVADO" + "ACTIVADO" + "Alt+" + "Ctrl+" + "borrar" + "intro" + "Función+" + "Meta+" + "Mayúscula+" + "espacio" + "Sym+" + "Menú+" + "Buscar…" + "Eliminar la consulta" + "Búsqueda" + "Búsqueda" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + "Contraer" + "Buscar" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es/values-es.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es/values-es.xml new file mode 100644 index 0000000000000000000000000000000000000000..d2265adfaed75a021136b588a4d6caeb8525aa79 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-es/values-es.xml @@ -0,0 +1,32 @@ + + + "Ir a la pantalla de inicio" + "Desplazarse hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Seleccionar una aplicación" + "DESACTIVADO" + "ACTIVADO" + "Alt +" + "Ctrl +" + "Eliminar" + "Intro" + "Función +" + "Meta +" + "Mayús +" + "Espacio" + "Sym +" + "Menú +" + "Buscar…" + "Borrar consulta" + "Consulta" + "Buscar" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + "Contraer" + "Buscar" + "+999" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-et/values-et.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-et/values-et.xml new file mode 100644 index 0000000000000000000000000000000000000000..05be6e9938ed23058dd737913af98e68de908bbc --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-et/values-et.xml @@ -0,0 +1,32 @@ + + + "Navigeerimine avaekraanile" + "Navigeerimine üles" + "Rohkem valikuid" + "Valmis" + "Kuva kõik" + "Valige rakendus" + "VÄLJAS" + "SEES" + "Alt +" + "Ctrl +" + "kustutamisklahv" + "sisestusklahv" + "Funktsiooniklahv +" + "Meta +" + "Tõstuklahv +" + "tühik" + "Sym +" + "Menüü +" + "Otsige …" + "Päringu tühistamine" + "Otsingupäring" + "Otsing" + "Päringu esitamine" + "Häälotsing" + "Jagamine:" + "Jagamine rakendusega %s" + "Ahendamine" + "Otsing" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-eu/values-eu.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-eu/values-eu.xml new file mode 100644 index 0000000000000000000000000000000000000000..8c0987505def2a536f9896786adc59a021b9da94 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-eu/values-eu.xml @@ -0,0 +1,32 @@ + + + "Joan orri nagusira" + "Joan gora" + "Aukera gehiago" + "Eginda" + "Ikusi guztiak" + "Aukeratu aplikazio bat" + "DESAKTIBATUTA" + "AKTIBATUTA" + "Alt +" + "Ktrl +" + "Ezabatu" + "Sartu" + "Funtzioa +" + "Meta +" + "Maius +" + "Zuriunea" + "Sym +" + "Menua +" + "Bilatu…" + "Garbitu kontsulta" + "Bilaketa-kontsulta" + "Bilatu" + "Bidali kontsulta" + "Ahozko bilaketa" + "Partekatu hauekin" + "Partekatu %s aplikazioarekin" + "Tolestu" + "Bilatu" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fa/values-fa.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fa/values-fa.xml new file mode 100644 index 0000000000000000000000000000000000000000..90b289806f927fe261049c821209c0742357aec7 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fa/values-fa.xml @@ -0,0 +1,32 @@ + + + "پیمایش به صفحه اصلی" + "پیمایش به بالا" + "گزینه‌های بیشتر" + "تمام" + "مشاهده همه" + "انتخاب برنامه" + "خاموش" + "روشن" + "‎Alt+‎" + "‎Ctrl+‎" + "delete" + "enter" + "‎Function+‎" + "‎Meta+‎" + "‎Shift+‎" + "کلید فاصله" + "‎Sym+‎" + "منو+" + "جستجو…" + "پاک کردن عبارت جستجو" + "عبارت جستجو" + "جستجو" + "ارسال عبارت جستجو" + "جستجوی گفتاری" + "اشتراک‌گذاری با" + "اشتراک‌گذاری با %s" + "کوچک کردن" + "جستجو" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fi/values-fi.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fi/values-fi.xml new file mode 100644 index 0000000000000000000000000000000000000000..75b02bb812631c4fc6249f62f4e9a9b876e07049 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fi/values-fi.xml @@ -0,0 +1,32 @@ + + + "Siirry etusivulle" + "Siirry ylös" + "Lisää" + "Valmis" + "Näytä kaikki" + "Valitse sovellus" + "POIS KÄYTÖSTÄ" + "KÄYTÖSSÄ" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Fn+" + "Meta+" + "Vaihto+" + "välilyönti" + "Sym+" + "Valikko+" + "Haku…" + "Tyhjennä kysely" + "Hakulauseke" + "Haku" + "Lähetä kysely" + "Puhehaku" + "Jakaminen:" + "Jaa sovelluksessa %s" + "Kutista" + "Haku" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 0000000000000000000000000000000000000000..f71cf031c582138d7b0f0b6360e07fa9613bb3d5 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,32 @@ + + + "Revenir à l\'accueil" + "Revenir en haut de la page" + "Plus d\'options" + "Terminé" + "Voir toutes les chaînes" + "Sélectionnez une application" + "DÉSACTIVÉ" + "ACTIVÉ" + "Alt+" + "Ctrl+" + "supprimer" + "entrée" + "Fonction+" + "Méta+" + "Maj+" + "espace" + "Sym+" + "Menu+" + "Recherche en cours..." + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager" + "Partager avec %s" + "Réduire" + "Rechercher" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr/values-fr.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr/values-fr.xml new file mode 100644 index 0000000000000000000000000000000000000000..2aee397649a34b8f42c6655abc6e73871c362531 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-fr/values-fr.xml @@ -0,0 +1,32 @@ + + + "Revenir à l\'accueil" + "Revenir en haut de la page" + "Plus d\'options" + "OK" + "Tout afficher" + "Sélectionner une application" + "DÉSACTIVÉ" + "ACTIVÉ" + "Alt+" + "Ctrl+" + "supprimer" + "entrée" + "Fonction+" + "Méta+" + "Maj+" + "espace" + "Sym+" + "Menu+" + "Rechercher…" + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager avec" + "Partager avec %s" + "Réduire" + "Rechercher" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gl/values-gl.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gl/values-gl.xml new file mode 100644 index 0000000000000000000000000000000000000000..d0081c605bde094cdc83046070d255a65816f686 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gl/values-gl.xml @@ -0,0 +1,32 @@ + + + "Ir á páxina de inicio" + "Desprazarse cara arriba" + "Máis opcións" + "Feito" + "Ver todas" + "Escoller unha aplicación" + "DESACTIVAR" + "ACTIVAR" + "Alt +" + "Ctrl +" + "eliminar" + "Intro" + "Función +" + "Meta +" + "Maiús +" + "espazo" + "Sim +" + "Menú +" + "Buscar…" + "Borrar consulta" + "Consulta de busca" + "Buscar" + "Enviar consulta" + "Busca por voz" + "Compartir con" + "Compartir con %s" + "Contraer" + "Buscar" + ">999" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gu/values-gu.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gu/values-gu.xml new file mode 100644 index 0000000000000000000000000000000000000000..0a3b83b404664ba279b98d4fc66973b623acce82 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-gu/values-gu.xml @@ -0,0 +1,32 @@ + + + "હોમ પર નેવિગેટ કરો" + "ઉપર નૅવિગેટ કરો" + "વધુ વિકલ્પો" + "થઈ ગયું" + "બધું જુઓ" + "એક ઍપ્લિકેશન પસંદ કરો" + "બંધ" + "ચાલુ" + "Alt+" + "Ctrl+" + "ડિલીટ કરો" + "Enter" + "Function+" + "Meta+" + "Shift+" + "Spacebar" + "Sym+" + "મેનૂ+" + "શોધો…" + "ક્વેરી સાફ કરો" + "શોધ ક્વેરી" + "શોધો" + "ક્વેરી સબમિટ કરો" + "વૉઇસ શોધ" + "આની સાથે શેર કરો" + "%sની સાથે શેર કરો" + "સંકુચિત કરો" + "શોધો" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml new file mode 100644 index 0000000000000000000000000000000000000000..e38bb90b3581627d059565973a7443441a887fe9 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml @@ -0,0 +1,4 @@ + + + 54dip + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml new file mode 100644 index 0000000000000000000000000000000000000000..d5a138ef9b4a8d1276f694e95d0e0293771d92ae --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hi/values-hi.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hi/values-hi.xml new file mode 100644 index 0000000000000000000000000000000000000000..6576cb7422b88c65992d5ee3def480f91325097a --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hi/values-hi.xml @@ -0,0 +1,32 @@ + + + "होम पेज पर जाएं" + "ऊपर जाएं" + "ज़्यादा विकल्प" + "हो गया" + "सभी देखें" + "कोई एप्‍लिकेशन चुनें" + "बंद" + "चालू" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "खोजा जा रहा है…" + "क्‍वेरी साफ़ करें" + "सर्च क्वेरी" + "सर्च करें" + "क्वेरी सबमिट करें" + "आवाज़ सर्च" + "इसके साथ शेयर करें" + "%s के साथ शेयर करें" + "छोटा करें" + "सर्च" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hr/values-hr.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hr/values-hr.xml new file mode 100644 index 0000000000000000000000000000000000000000..2c3e6ae8a8c91779b16c36bc53a6343358d1e219 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hr/values-hr.xml @@ -0,0 +1,32 @@ + + + "Idi na početnu" + "Idi gore" + "Dodatne opcije" + "Gotovo" + "Prikaži sve" + "Odabir aplikacije" + "ISKLJUČENO" + "UKLJUČENO" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "razmaknica" + "Sym+" + "Menu+" + "Pretražite…" + "Izbriši upit" + "Upit za pretraživanje" + "Pretraživanje" + "Pošalji upit" + "Glasovno pretraživanje" + "Dijeljenje sa" + "Dijeli putem aplikacije %s" + "Sažmi" + "Pretraživanje" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hu/values-hu.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hu/values-hu.xml new file mode 100644 index 0000000000000000000000000000000000000000..f980defea0ba719cd97e917a45b0812675896749 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hu/values-hu.xml @@ -0,0 +1,32 @@ + + + "Ugrás a főoldalra" + "Felfelé mozgatás" + "További lehetőségek" + "Kész" + "Összes megtekintése" + "Válasszon ki egy alkalmazást" + "KI" + "BE" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "Szóköz" + "Sym+" + "Menu+" + "Keresés…" + "Lekérdezés törlése" + "Keresési lekérdezés" + "Keresés" + "Lekérdezés küldése" + "Hangalapú keresés" + "Megosztás a következővel:" + "Megosztás a következő alkalmazással: %s" + "Összecsukás" + "Keresés" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hy/values-hy.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hy/values-hy.xml new file mode 100644 index 0000000000000000000000000000000000000000..3247f9af29d0c9b7f8841f41d965028ee4c7d3d7 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-hy/values-hy.xml @@ -0,0 +1,32 @@ + + + "Ուղղվել տուն" + "Ուղղվել վերև" + "Այլ ընտրանքներ" + "Պատրաստ է" + "Տեսնել բոլորը" + "Ընտրել ծրագիր" + "ԱՆՋԱՏՎԱԾ" + "ՄԻԱՑՎԱԾ" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "բացատ" + "Sym+" + "Menu+" + "Որոնում..." + "Մաքրել հարցումը" + "Որոնման հարցում" + "Որոնել" + "Ուղարկել հարցումը" + "Ձայնային որոնում" + "Կիսվել" + "Ուղարկել %s-ին" + "Թաքցնել" + "Որոնել" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-in/values-in.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-in/values-in.xml new file mode 100644 index 0000000000000000000000000000000000000000..314af7ef71e8b18ab6f00b74f9dec42c19129e00 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-in/values-in.xml @@ -0,0 +1,32 @@ + + + "Navigasi ke beranda" + "Navigasi naik" + "Opsi lain" + "Selesai" + "Lihat semua" + "Pilih aplikasi" + "NONAKTIF" + "AKTIF" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "spasi" + "Sym+" + "Menu+" + "Telusuri..." + "Hapus kueri" + "Kueri penelusuran" + "Telusuri" + "Kirim kueri" + "Penelusuran suara" + "Bagikan dengan" + "Bagikan ke %s" + "Ciutkan" + "Telusuri" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-is/values-is.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-is/values-is.xml new file mode 100644 index 0000000000000000000000000000000000000000..58321f7b8816209d6228851ebe301cf6a7a6ac70 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-is/values-is.xml @@ -0,0 +1,32 @@ + + + "Fara heim" + "Fara upp" + "Fleiri valkostir" + "Lokið" + "Sjá allt" + "Veldu forrit" + "SLÖKKT" + "KVEIKT" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Aðgerðarlykill+" + "Meta+" + "Shift+" + "bilslá" + "Sym+" + "Valmynd+" + "Leita…" + "Hreinsa fyrirspurn" + "Leitarfyrirspurn" + "Leita" + "Senda fyrirspurn" + "Raddleit" + "Deila með" + "Deila með %s" + "Minnka" + "Leita" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-it/values-it.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-it/values-it.xml new file mode 100644 index 0000000000000000000000000000000000000000..48842b37fe3a919ccefcbb0b2069c402fe3373d0 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-it/values-it.xml @@ -0,0 +1,32 @@ + + + "Vai alla home page" + "Vai in alto" + "Altre opzioni" + "Fine" + "Visualizza tutte" + "Scegli un\'applicazione" + "OFF" + "ON" + "ALT +" + "CTRL +" + "CANC" + "INVIO" + "FUNZIONE +" + "META +" + "MAIUSC +" + "barra spaziatrice" + "SYM +" + "MENU +" + "Cerca…" + "Cancella query" + "Query di ricerca" + "Cerca" + "Invia query" + "Ricerca vocale" + "Condividi con" + "Condividi tramite %s" + "Comprimi" + "Ricerca" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-iw/values-iw.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-iw/values-iw.xml new file mode 100644 index 0000000000000000000000000000000000000000..ed74d57185bcdd63e378e49bc6e5bc05559d4d67 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-iw/values-iw.xml @@ -0,0 +1,32 @@ + + + "נווט לדף הבית" + "נווט למעלה" + "עוד אפשרויות" + "בוצע" + "ראה הכל" + "בחר אפליקציה" + "כבוי" + "פועל" + "Alt+" + "Ctrl+‎" + "delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "מקש רווח" + "Sym+" + "תפריט+" + "חיפוש…" + "מחק שאילתה" + "שאילתת חיפוש" + "חיפוש" + "שלח שאילתה" + "חיפוש קולי" + "שתף עם" + "שתף עם %s" + "כווץ" + "חיפוש" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ja/values-ja.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ja/values-ja.xml new file mode 100644 index 0000000000000000000000000000000000000000..6be45810010443025bdb17466bb7e990578315a2 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ja/values-ja.xml @@ -0,0 +1,32 @@ + + + "ホームへ移動" + "上へ移動" + "その他のオプション" + "完了" + "すべて表示" + "アプリの選択" + "OFF" + "ON" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "Space" + "Sym+" + "Menu+" + "検索…" + "検索キーワードを削除" + "検索キーワード" + "検索" + "検索キーワードを送信" + "音声検索" + "共有" + "%sと共有" + "折りたたむ" + "検索" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ka/values-ka.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ka/values-ka.xml new file mode 100644 index 0000000000000000000000000000000000000000..8e91c0ac988f931af6270ff893e901952ce627c2 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ka/values-ka.xml @@ -0,0 +1,32 @@ + + + "მთავარზე ნავიგაცია" + "ზემოთ ნავიგაცია" + "მეტი ვარიანტები" + "დასრულდა" + "ყველას ნახვა" + "აპის არჩევა" + "გამორთულია" + "ჩართულია" + "Alt+" + "Ctrl+" + "წაშლა" + "შეყვანა" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "ძიება..." + "მოთხოვნის გასუფთავება" + "ძიების მოთხოვნა" + "ძიება" + "მოთხოვნის გადაგზავნა" + "ხმოვანი ძიება" + "გაზიარება:" + "გაუზიარეთ %s-ს" + "აკეცვა" + "ძიება" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kk/values-kk.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kk/values-kk.xml new file mode 100644 index 0000000000000000000000000000000000000000..d9596d09c65585da8cbb60e3c2115cc05c0386a1 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kk/values-kk.xml @@ -0,0 +1,32 @@ + + + "Негізгі бетте қозғалу" + "Жоғары қозғалу" + "Басқа опциялар" + "Дайын" + "Барлығын көру" + "Қолданбаны таңдау" + "ӨШІРУЛІ" + "ҚОСУЛЫ" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "бос орын" + "Sym+" + "Mәзір+" + "Іздеу…" + "Сұрақты жою" + "Сұрақты іздеу" + "Іздеу" + "Сұрақты жіберу" + "Дауыс арқылы іздеу" + "Бөлісу" + "%s қолданбасымен бөлісу" + "Тасалау" + "Іздеу" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-km/values-km.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-km/values-km.xml new file mode 100644 index 0000000000000000000000000000000000000000..57735d238ffb9e71019d7213993178747771a41b --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-km/values-km.xml @@ -0,0 +1,32 @@ + + + "រកមើល​ទៅ​ដើម" + "រកមើល​ឡើងលើ" + "ជម្រើស​ច្រើន​ទៀត" + "រួចរាល់" + "មើល​ទាំងអស់" + "ជ្រើស​កម្មវិធី​​" + "បិទ" + "បើក" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "ស្វែងរក…" + "សម្អាត​សំណួរ" + "ស្វែងរក​សំណួរ" + "ស្វែងរក" + "ដាក់​​​ស្នើ​សំណួរ" + "ការស្វែងរក​សំឡេង" + "ចែករំលែក​ជាមួយ" + "ចែក​រំលែក​ជា​មួយ %s" + "បង្រួម" + "ស្វែងរក" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kn/values-kn.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kn/values-kn.xml new file mode 100644 index 0000000000000000000000000000000000000000..1e2402bd60e62541156e293c60e9b608b3a4e903 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-kn/values-kn.xml @@ -0,0 +1,32 @@ + + + "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" + "ಮುಗಿದಿದೆ" + "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" + "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ" + "ಆಫ್" + "ಆನ್" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "ಹುಡುಕಿ…" + "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು" + "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" + "ಹುಡುಕಿ" + "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು" + "ಧ್ವನಿ ಹುಡುಕಾಟ" + "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + "%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + "ಸಂಕುಚಿಸು" + "ಹುಡುಕಿ" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ko/values-ko.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ko/values-ko.xml new file mode 100644 index 0000000000000000000000000000000000000000..5e0d052f7aa80444cc74aff89b6ad736b3bd6686 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ko/values-ko.xml @@ -0,0 +1,32 @@ + + + "홈 탐색" + "위로 탐색" + "옵션 더보기" + "완료" + "전체 보기" + "앱 선택" + "사용 안함" + "사용" + "Alt+" + "Ctrl+" + "삭제" + "입력" + "Function+" + "Meta+" + "Shift+" + "스페이스바" + "Sym+" + "Menu+" + "검색..." + "검색어 삭제" + "검색어" + "검색" + "검색어 보내기" + "음성 검색" + "공유 대상" + "%s와(과) 공유" + "접기" + "검색" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ky/values-ky.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ky/values-ky.xml new file mode 100644 index 0000000000000000000000000000000000000000..7a8bb7f4b0958e8440b1db9de75026def8074003 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ky/values-ky.xml @@ -0,0 +1,32 @@ + + + "Үйгө багыттоо" + "Жогору" + "Көбүрөөк мүмкүнчүлүктөр" + "Даяр" + "Бардыгын көрүү" + "Колдонмо тандоо" + "ӨЧҮК" + "КҮЙҮК" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "боштук" + "Sym+" + "Menu+" + "Издөө…" + "Талаптарды тазалоо" + "Издөө талаптары" + "Издөө" + "Талап жөнөтүү" + "Үн аркылуу издөө" + "Бөлүшүү" + "%s аркылуу бөлүшүү" + "Жыйнап коюу" + "Издөө" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-land/values-land.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-land/values-land.xml new file mode 100644 index 0000000000000000000000000000000000000000..5d65779091e9af73c7d566d00f82a6ed9136ecd3 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-land/values-land.xml @@ -0,0 +1,10 @@ + + + 48dp + 12dp + 14dp + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml new file mode 100644 index 0000000000000000000000000000000000000000..c0ec67a31597a0b36bb8857f96d7bd4060c32774 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-large-v4/values-large-v4.xml @@ -0,0 +1,14 @@ + + + 440dp + 60% + 90% + 60% + 90% + 55% + 80% + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ta/values-ta.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ta/values-ta.xml new file mode 100644 index 0000000000000000000000000000000000000000..d9f29b6e4086af206de3d661e9ecdb1419662a8e --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ta/values-ta.xml @@ -0,0 +1,32 @@ + + + "முகப்பிற்கு வழிசெலுத்து" + "மேலே செல்" + "மேலும் விருப்பங்கள்" + "முடிந்தது" + "எல்லாம் காட்டு" + "பயன்பாட்டைத் தேர்வுசெய்க" + "ஆஃப்" + "ஆன்" + "ஆல்ட் மற்றும்" + "கண்ட்ரோல் மற்றும்" + "டெலிட்" + "எண்டர்" + "ஃபங்ஷன் மற்றும்" + "மெட்டா மற்றும்" + "ஷிஃப்ட் மற்றும்" + "ஸ்பேஸ்" + "சிம்பல் மற்றும்" + "மெனு மற்றும்" + "தேடு..." + "வினவலை அழி" + "தேடல் வினவல்" + "தேடு" + "வினவலைச் சமர்ப்பி" + "குரல் தேடல்" + "இதனுடன் பகிர்" + "%s மூலம் பகிர்" + "சுருக்கு" + "தேடு" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-te/values-te.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-te/values-te.xml new file mode 100644 index 0000000000000000000000000000000000000000..54f0b16a8164cc9a2b42d2a6fb899e8556fc0d87 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-te/values-te.xml @@ -0,0 +1,32 @@ + + + "హోమ్‌కు నావిగేట్ చేయండి" + "పైకి నావిగేట్ చేయండి" + "మరిన్ని ఎంపికలు" + "పూర్తయింది" + "అన్నీ చూడండి" + "అనువర్తనాన్ని ఎంచుకోండి" + "ఆఫ్ చేయి" + "ఆన్ చేయి" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "స్పేస్" + "Sym+" + "Menu+" + "వెతుకు..." + "ప్రశ్నను క్లియర్ చేయి" + "ప్రశ్న శోధించండి" + "వెతుకు" + "ప్రశ్నని సమర్పించు" + "వాయిస్ శోధన" + "వీరితో భాగస్వామ్యం చేయి" + "%sతో భాగస్వామ్యం చేయండి" + "కుదించండి" + "వెతుకు" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-th/values-th.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-th/values-th.xml new file mode 100644 index 0000000000000000000000000000000000000000..13dc94eccd6db3b16efe38af8fe0eee7caf71fb5 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-th/values-th.xml @@ -0,0 +1,32 @@ + + + "นำทางไปหน้าแรก" + "นำทางขึ้น" + "ตัวเลือกอื่น" + "เสร็จสิ้น" + "ดูทั้งหมด" + "เลือกแอป" + "ปิด" + "เปิด" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Function+" + "Meta+" + "Shift+" + "Space" + "Sym+" + "เมนู+" + "ค้นหา…" + "ล้างข้อความค้นหา" + "ข้อความค้นหา" + "ค้นหา" + "ส่งข้อความค้นหา" + "ค้นหาด้วยเสียง" + "แชร์กับ" + "แชร์ทาง %s" + "ยุบ" + "ค้นหา" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tl/values-tl.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tl/values-tl.xml new file mode 100644 index 0000000000000000000000000000000000000000..18a148fbcc1e2acb7db170658dbbcae4b0ffe7db --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tl/values-tl.xml @@ -0,0 +1,32 @@ + + + "Mag-navigate patungo sa home" + "Mag-navigate pataas" + "Higit pang mga opsyon" + "Tapos na" + "Tingnan lahat" + "Pumili ng isang app" + "I-OFF" + "I-ON" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Menu+" + "Maghanap…" + "I-clear ang query" + "Query sa paghahanap" + "Maghanap" + "Isumite ang query" + "Paghahanap gamit ang boses" + "Ibahagi sa/kay" + "Ibahagi gamit ang %s" + "I-collapse" + "Maghanap" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tr/values-tr.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tr/values-tr.xml new file mode 100644 index 0000000000000000000000000000000000000000..01b0f459df87203d61b281ceeec92084fe991f0c --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-tr/values-tr.xml @@ -0,0 +1,32 @@ + + + "Ana ekrana git" + "Yukarı git" + "Diğer seçenekler" + "Bitti" + "Tümünü göster" + "Bir uygulama seçin" + "KAPAT" + "AÇ" + "Alt+" + "Ctrl+" + "sil" + "enter" + "İşlev+" + "Meta+" + "Üst Karakter+" + "boşluk" + "Sym+" + "Menü+" + "Ara…" + "Sorguyu temizle" + "Arama sorgusu" + "Ara" + "Sorguyu gönder" + "Sesli arama" + "Şununla paylaş" + "%s ile paylaş" + "Daralt" + "Ara" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uk/values-uk.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uk/values-uk.xml new file mode 100644 index 0000000000000000000000000000000000000000..c1d3da79859c53beb0a365f84a7e36d3d83cb32b --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uk/values-uk.xml @@ -0,0 +1,32 @@ + + + "Перейти на головний" + "Перейти вгору" + "Інші опції" + "Готово" + "Переглянути всі" + "Вибрати програму" + "ВИМК." + "УВІМК." + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "пробіл" + "Sym+" + "Menu+" + "Пошук…" + "Очистити запит" + "Пошуковий запит" + "Пошук" + "Надіслати запит" + "Голосовий пошук" + "Надіслати через" + "Поділитися через додаток %s" + "Згорнути" + "Пошук" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ur/values-ur.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ur/values-ur.xml new file mode 100644 index 0000000000000000000000000000000000000000..6b717f4c2d6b081bbadd7256a98899246932493c --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-ur/values-ur.xml @@ -0,0 +1,32 @@ + + + "ہوم پر نیویگیٹ کریں" + "اوپر نیویگیٹ کریں" + "مزید اختیارات" + "ہو گیا" + "سبھی دیکھیں" + "ایک ایپ منتخب کریں" + "آف" + "آن" + "Alt+‎" + "Ctrl+‎" + "delete" + "enter" + "Function+‎" + "Meta+‎" + "Shift+‎" + "space" + "Sym+‎" + "Menu+‎" + "تلاش کریں…" + "استفسار صاف کریں" + "استفسار تلاش کریں" + "تلاش کریں" + "استفسار جمع کرائیں" + "صوتی تلاش" + "اشتراک کریں مع" + "%s کے ساتھ اشتراک کریں" + "سکیڑیں" + "تلاش" + "+999" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uz/values-uz.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uz/values-uz.xml new file mode 100644 index 0000000000000000000000000000000000000000..053764c5caf88df1c269e152be16d6fa275c85f9 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-uz/values-uz.xml @@ -0,0 +1,32 @@ + + + "Boshiga o‘tish" + "Yuqoriga o‘tish" + "Boshqa parametrlar" + "Tayyor" + "Hammasi" + "Dastur tanlang" + "O‘CHIQ" + "YONIQ" + "Alt+" + "Ctrl+" + "Delete" + "Enter" + "Fn+" + "Meta+" + "Shift+" + "Probel" + "Sym+" + "Menyu+" + "Qidirish…" + "So‘rovni tozalash" + "So‘rovni izlash" + "Qidirish" + "So‘rov yaratish" + "Ovozli qidiruv" + "Ruxsat berish" + "%s orqali ulashish" + "Yig‘ish" + "Qidirish" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v14/values-v14.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v14/values-v14.xml new file mode 100644 index 0000000000000000000000000000000000000000..4c83abf4af96e43a7d9d3cf9b64cd2a89e47891b --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v14/values-v14.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v16/values-v16.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v16/values-v16.xml new file mode 100644 index 0000000000000000000000000000000000000000..5ee2feb2389ed228f47c5157542307b8dc010684 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v16/values-v16.xml @@ -0,0 +1,8 @@ + + + 4dp + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v17/values-v17.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v17/values-v17.xml new file mode 100644 index 0000000000000000000000000000000000000000..f85a197ad0e336e966ffd267e6ba2e63b7dc91bd --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v17/values-v17.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v18/values-v18.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v18/values-v18.xml new file mode 100644 index 0000000000000000000000000000000000000000..7dad77f9e2733e7725120ce7201d2728040504a2 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v18/values-v18.xml @@ -0,0 +1,4 @@ + + + 0px + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v21/values-v21.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v21/values-v21.xml new file mode 100644 index 0000000000000000000000000000000000000000..3fb305f91a0b73eb3bf131661f5a9ab330b69c3c --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v21/values-v21.xml @@ -0,0 +1,320 @@ + + + @color/secondary_text_default_material_light + 0dp + 0dp + 12dp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v22/values-v22.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v22/values-v22.xml new file mode 100644 index 0000000000000000000000000000000000000000..d4a514a5fb6ac2cd17eeb996c4714307b1761750 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v22/values-v22.xml @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v23/values-v23.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v23/values-v23.xml new file mode 100644 index 0000000000000000000000000000000000000000..484f6d174ff62b31fdbb5423d1539ba4343d928f --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v23/values-v23.xml @@ -0,0 +1,41 @@ + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v24/values-v24.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v24/values-v24.xml new file mode 100644 index 0000000000000000000000000000000000000000..dbae6fb8331694789feb25b39dd0b6eab278ff7b --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v24/values-v24.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v26/values-v26.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v26/values-v26.xml new file mode 100644 index 0000000000000000000000000000000000000000..8b28a465119dcda42c4d4c5d47121c8ffb7e4176 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-v26/values-v26.xml @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-vi/values-vi.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-vi/values-vi.xml new file mode 100644 index 0000000000000000000000000000000000000000..1eabc0877041f955ede7ef2e682f9dfa5a45bfc0 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-vi/values-vi.xml @@ -0,0 +1,32 @@ + + + "Điều hướng về trang chủ" + "Điều hướng lên trên" + "Tùy chọn khác" + "Xong" + "Xem tất cả" + "Chọn một ứng dụng" + "TẮT" + "BẬT" + "Alt+" + "Ctrl+" + "delete" + "enter" + "Function+" + "Meta+" + "Shift+" + "phím cách" + "Sym+" + "Menu+" + "Tìm kiếm…" + "Xóa truy vấn" + "Tìm kiếm truy vấn" + "Tìm kiếm" + "Gửi truy vấn" + "Tìm kiếm bằng giọng nói" + "Chia sẻ với" + "Chia sẻ với %s" + "Thu gọn" + "Tìm kiếm" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml new file mode 100644 index 0000000000000000000000000000000000000000..2d85812e099f862b3d70b7c549a9e53b09729cc0 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v20/values-watch-v20.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml new file mode 100644 index 0000000000000000000000000000000000000000..deecc9e8d5e90f684748295b8ae3cbd957e845a6 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-watch-v21/values-watch-v21.xml @@ -0,0 +1,15 @@ + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml new file mode 100644 index 0000000000000000000000000000000000000000..b499d2cf3729a0b92b869da97322e3cb7fc544c2 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml @@ -0,0 +1,9 @@ + + + 60% + 90% + 50% + 70% + 45% + 72% + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000000000000000000000000000000000000..68140f72c1a5d7a32ed59e109c1c0be39fef7964 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,32 @@ + + + "转到主屏幕" + "转到上一层级" + "更多选项" + "完成" + "查看全部" + "选择应用" + "关闭" + "开启" + "Alt+" + "Ctrl+" + "Delete 键" + "Enter 键" + "Fn+" + "Meta+" + "Shift+" + "空格键" + "Sym+" + "Menu+" + "搜索…" + "清除查询" + "搜索查询" + "搜索" + "提交查询" + "语音搜索" + "分享方式" + "使用%s分享" + "收起" + "搜索" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 0000000000000000000000000000000000000000..f533663f74ee5cafcad749e83f39cc9802be033c --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,32 @@ + + + "瀏覽主頁" + "向上瀏覽" + "更多選項" + "完成" + "顯示全部" + "選擇應用程式" + "關閉" + "開啟" + "Alt +" + "Ctrl +" + "刪除" + "Enter 鍵" + "Fn +" + "Meta +" + "Shift +" + "空白鍵" + "Sym +" + "Menu +" + "搜尋…" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "分享對象" + "使用「%s」分享" + "收合" + "搜尋" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 0000000000000000000000000000000000000000..75f498a19ab5923f8788fc064410c336700a1e05 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,32 @@ + + + "瀏覽首頁" + "向上瀏覽" + "更多選項" + "完成" + "查看全部" + "選擇應用程式" + "關閉" + "開啟" + "Alt +" + "Ctrl +" + "Delete 鍵" + "Enter 鍵" + "Fn +" + "Meta +" + "Shift +" + "空格鍵" + "Sym +" + "Menu +" + "搜尋…" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "選擇分享對象" + "與「%s」分享" + "收合" + "搜尋" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zu/values-zu.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zu/values-zu.xml new file mode 100644 index 0000000000000000000000000000000000000000..31e318ddb42aee772c7637ceb7788b7578964ba5 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-zu/values-zu.xml @@ -0,0 +1,32 @@ + + + "Zulazulela ekhaya" + "Zulazulela phezulu" + "Izinketho eziningi" + "Kwenziwe" + "Buka konke" + "Khetha uhlelo lokusebenza" + "VALIWE" + "VULIWE" + "Alt+" + "Ctrl+" + "susa" + "enter" + "Function+" + "Meta+" + "Shift+" + "space" + "Sym+" + "Imenyu+" + "Iyasesha..." + "Sula inkinga" + "Umbuzo wosesho" + "Sesha" + "Hambisa umbuzo" + "Ukusesha ngezwi" + "Yabelana no-" + "Yabelana ne-%s" + "Goqa" + "Sesha" + "999+" + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml new file mode 100644 index 0000000000000000000000000000000000000000..0b8601c9ff9258698e8d5a972efbfaf8435868a6 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merged.dir/values/values.xml @@ -0,0 +1,4499 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + false + true + true + @android:color/black + #7fa87f + @android:color/black + @android:color/black + #03A9F4 + @color/material_deep_teal_200 + @color/material_deep_teal_500 + @color/material_grey_800 + @android:color/white + @color/material_grey_850 + @color/material_grey_50 + #80ffffff + #80000000 + @color/bright_foreground_material_light + @color/bright_foreground_material_dark + @android:color/white + @android:color/black + #ff5a595b + #ffd6d7d7 + #FF424242 + #FFFFFFFF + #03000000 + #37000000 + #14000000 + #3F51B5 + #303F9F + @android:color/transparent + #14000000 + #44000000 + #0A000000 + #0F000000 + #1AFFFFFF + #2EFFFFFF + #323232 + #80bebebe + #80323232 + #ffbebebe + #ff323232 + #B6B6B6 + #ff7043 + #ff5722 + @android:color/white + @android:color/black + #6680cbc4 + #66009688 + #FFFFFF + #ff37474f + #ff263238 + #ff21272b + #ff80cbc4 + #ff009688 + #fff5f5f5 + #ffe0e0e0 + #fffafafa + #ff757575 + #ff424242 + #ff303030 + #ff212121 + #1F000000 + #61000000 + #00ffffff + #52000000 + #6B000000 + #1F000000 + #0A000000 + #DE000000 + #ffffffff + #ff9e9e9e + #ff424242 + #3F51B5 + #303F9F + @android:color/black + @color/material_grey_600 + #C5CAE9 + @color/material_grey_900 + @color/material_grey_100 + #212121 + #ffffffff + #de000000 + #4Dffffff + #39000000 + #33ffffff + #1f000000 + #727272 + #b3ffffff + #8a000000 + #36ffffff + #24000000 + #ff616161 + #ffbdbdbd + #ffbdbdbd + #fff1f1f1 + #e6616161 + #e6FFFFFF + 16dp + 72dp + 56dp + 0dp + 0dp + 4dp + 16dp + 10dp + 6dp + 48dp + 180dp + 5dp + -3dp + 48dp + 48dp + 36dp + 48dp + 48dp + @dimen/abc_control_inset_material + 6dp + 8dp + @dimen/abc_control_padding_material + 720dp + 320dp + 2dp + 4dp + 4dp + 2dp + 80% + 100% + 320dp + 320dp + 8dp + 8dp + 65% + 95% + 24dp + 18dp + 8dp + 0.30 + 0.26 + 32dip + 8dip + 8dip + 7dp + 4dp + 10dp + 16dp + @dimen/abc_action_bar_content_inset_material + 296dp + 4dp + 48dip + 320dip + 2dp + 2dp + 20dp + 3dp + 14sp + 14sp + 14sp + 12sp + 34sp + 45sp + 56sp + 112sp + 24sp + 22sp + 18sp + 14sp + 16sp + 14sp + 16sp + 16dp + 20sp + 20dp + 1dp + 2dp + 2dp + 4dp + 6dp + 8dp + 4dp + 2dp + 320dp + 320dp + 4dp + 168dp + 96dp + 14sp + 8dp + 56dp + 24dp + 96dp + 56dp + 8dp + 1dp + 12sp + 16dp + 64dp + 0.5dp + 6dp + 24dp + 40dp + 56dp + 6dp + 6dp + 16dp + 32dp + 24dp + 16dp + 32dp + 280dp + 8dp + 8dp + 128dp + 0dp + 6dp + 0dp + -1px + -1px + 12dp + 14dp + 24dp + 14sp + 264dp + 72dp + 14sp + 12sp + 5dp + 0.30 + 0.26 + 8dp + 0dp + 50dp + 0.26 + 0.20 + 0.12 + 0.50 + 0.38 + 0.70 + 0.54 + 20dp + 800dp + 120dp + 60dp + 5dp + 8dp + 0dp + 56dp + 4dp + 64dp + 0dp + 0dp + 2dp + 2dp + 2dp + 12dp + 8dp + 6dp + 0.07 + 4dp + 16dp + 16dp + 4dp + 6dp + 1dp + 4dp + 8dp + 8dp + 14sp + 0dp + 1dp + 8dp + 3dp + 14sp + 6dp + 2dp + 6dp + 0dp + 22dp + 14dp + 4dp + 8dp + 3dp + 4dp + 0dp + 4dp + 12dp + 1dp + 2dp + 16dp + 56dp + 32dp + 13sp + 12dp + 8dp + 64dp + 64dp + 10dp + @dimen/notification_content_margin_start + 16dp + 2dp + 3dp + 24dp + 13sp + 10dp + 5dp + 2dp + 2dp + 2dp + 2dp + 2dp + 16dp + 8dp + 8dp + 96dp + 6.5dp + 0dp + 16dp + #3333B5E5 + #0cffffff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220 + 150 + 150 + 150 + 127 + 150 + 2 + 300 + 320 + 100 + 100 + 100 + 250 + 200 + 999 + Navigate home + Navigate up + More options + Done + See all + Choose an app + OFF + ON + sans-serif + sans-serif-medium + sans-serif-medium + sans-serif + sans-serif + sans-serif + sans-serif + sans-serif-light + sans-serif + sans-serif + sans-serif + sans-serif-medium + Alt+ + Ctrl+ + delete + enter + Function+ + Meta+ + Shift+ + space + Sym+ + Menu+ + Search… + Clear query + Search query + Search + Submit query + Voice search + Share with + Share with %s + Collapse + SmartFritz + android.support.design.widget.AppBarLayout$ScrollingViewBehavior + android.support.design.widget.BottomSheetBehavior + Character limit exceeded %1$d of %2$d + %1$d / %2$d + android.support.design.transformation.FabTransformationScrimBehavior + android.support.design.transformation.FabTransformationSheetBehavior + Hello world! + android.support.design.behavior.HideBottomViewOnScrollBehavior + Remove %1$s + Show password + M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z + M2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z + M2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z + M3.27,4.27 L19.74,20.74 + Search + 999+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merger.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merger.xml new file mode 100644 index 0000000000000000000000000000000000000000..1fc98a7a860a6cce1d8f8fb20681728b15711483 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseResources/merger.xml @@ -0,0 +1,4916 @@ + +"999+""999+""999+""999+""999+""+999""999+""999+""999+""999+""९९९+""999+""999+""999+"4dp"၉၉၉+""999+""999+""999+""999+""999+""999+"">999""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""৯৯৯+""999+""999+""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‎‏‏‎‏‏‏‎‏‏‎‎‎‎‏‎‏‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‏‎‏‏‏‎‎‏‎‏‏‏‎‏‏‏‏‏‏‏‎‎‎‏‏‎999+‎‏‎‎‏‎""999+""+999""999+""999+""999+""999+""999+""999+""999+""৯৯৯+""999+""999+""999+""999+""999+""९९९+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+""999+"#ffffffff#ff9e9e9e#1f000000#8a000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+"999+""999+""999+""999+" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 8dp0dp50dp20dp800dp120dp#FF424242#FFFFFFFF#03000000#37000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + 1dp2dp2dp"Перайсці на галоўную старонку""Перайсці ўверх""Дадатковыя параметры""Гатова""Прагледзець усё""Выбраць праграму""ВЫКЛ.""УКЛ.""Alt +""Ctrl +""Delete""Enter""Fn +""Meta +""Shift +""Прабел""Sym +""Меню +""Пошук...""Выдалiць запыт""Запыт на пошук""Пошук""Адправіць запыт""Галасавы пошук""Абагуліць з""Абагуліць праз праграму %s""Згарнуць""Пошук""پیمایش به صفحه اصلی""پیمایش به بالا""گزینه‌های بیشتر""تمام""مشاهده همه""انتخاب برنامه""خاموش""روشن""‎Alt+‎""‎Ctrl+‎""delete""enter""‎Function+‎""‎Meta+‎""‎Shift+‎""کلید فاصله""‎Sym+‎""منو+""جستجو…""پاک کردن عبارت جستجو""عبارت جستجو""جستجو""ارسال عبارت جستجو""جستجوی گفتاری""اشتراک‌گذاری با""اشتراک‌گذاری با %s""کوچک کردن""جستجو""Движи се кон дома""Движи се нагоре""Повеќе опции""Готово""Види ги сите""Избери апликација""ИСКЛУЧЕНО""ВКЛУЧЕНО""копче Alt+""копче Ctrl+""избриши""копче enter""копче Function+""копче Meta+""копче Shift+""вселена""копче Sym+""Мени+""Пребарување…""Исчисти барање""Пребарај барање""Пребарај""Поднеси барање""Гласовно пребарување""Сподели со""Сподели со %s""Собери""Пребарај""Nenda mwanzo""Nenda juu""Chaguo zaidi""Nimemaliza""Angalia zote""Chagua programu""IMEZIMWA""IMEWASHWA""Alt+""Ctrl+""futa""enter""Function+""Meta+""Shift+""nafasi""Sym+""Menyu+""Tafuta…""Futa hoja""Hoja ya utafutaji""Tafuta""Wasilisha hoja""Tafuta kwa kutamka""Shiriki na:""Shiriki ukitumia %s""Kunja""Tafuta""होम पेज पर जाएं""ऊपर जाएं""ज़्यादा विकल्प""हो गया""सभी देखें""कोई एप्‍लिकेशन चुनें""बंद""चालू""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""खोजा जा रहा है…""क्‍वेरी साफ़ करें""सर्च क्वेरी""सर्च करें""क्वेरी सबमिट करें""आवाज़ सर्च""इसके साथ शेयर करें""%s के साथ शेयर करें""छोटा करें""सर्च""ہوم پر نیویگیٹ کریں""اوپر نیویگیٹ کریں""مزید اختیارات""ہو گیا""سبھی دیکھیں""ایک ایپ منتخب کریں""آف""آن""Alt+‎""Ctrl+‎""delete""enter""Function+‎""Meta+‎""Shift+‎""space""Sym+‎""Menu+‎""تلاش کریں…""استفسار صاف کریں""استفسار تلاش کریں""تلاش کریں""استفسار جمع کرائیں""صوتی تلاش""اشتراک کریں مع""%s کے ساتھ اشتراک کریں""سکیڑیں""تلاش""Gå til startsiden""Gå opp""Flere alternativer""Ferdig""Se alle""Velg en app""AV""PÅ""Alt+""Ctrl+""delete""enter""Funksjon+""Meta+""Shift+""mellomrom""Sym+""Meny+""Søk …""Slett søket""Søkeord""Søk""Utfør søket""Talesøk""Del med""Del med %s""Skjul""Søk""Navigați la ecranul de pornire""Navigați în sus""Mai multe opțiuni""Terminat""Afișați-le pe toate""Alegeți o aplicație""DEZACTIVAȚI""ACTIVAT""Alt+""Ctrl+""delete""enter""Funcție+""Meta+""Shift+""spațiu""Sym+""Meniu+""Căutați…""Ștergeți interogarea""Interogare de căutare""Căutați""Trimiteți interogarea""Căutare vocală""Trimiteți la""Trimiteți folosind %s""Restrângeți""Căutați""Navegar para a página inicial""Navegar para cima""Mais opções""Concluído""Ver tudo""Selecione um app""DESATIVAR""ATIVAR""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""espaço""Sym+""Menu+""Pesquisar...""Limpar consulta""Consulta de pesquisa""Pesquisar""Enviar consulta""Pesquisa por voz""Compartilhar com""Compartilhar com %s""Recolher""Pesquisar""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""Delete 鍵""Enter 鍵""Fn +""Meta +""Shift +""空格鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""選擇分享對象""與「%s」分享""收合""搜尋""गृह खोज्नुहोस्""माथि खोज्नुहोस्""थप विकल्पहरू""सम्पन्न भयो""सबै हेर्नुहोस्""एउटा अनुप्रयोग छान्नुहोस्""निष्क्रिय पार्नुहोस्""सक्रिय गर्नुहोस्""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""खोज्नुहोस्...""प्रश्‍न हटाउनुहोस्""जिज्ञासाको खोज गर्नुहोस्""खोज्नुहोस्""जिज्ञासा पेस गर्नुहोस्""भ्वाइस खोजी""साझेदारी गर्नुहोस्...""%s सँग आदान प्रदान गर्नुहोस्""संक्षिप्त पार्नुहोस्""खोज्नुहोस्""Eiti į pagrindinį puslapį""Eiti į viršų""Daugiau parinkčių""Atlikta""Peržiūrėti viską""Pasirinkti programą""IŠJUNGTA""ĮJUNGTI""„Alt“ +""„Ctrl“ +""„Delete“""„Enter“""„Function“ +""„Meta“ +""„Shift“ +""tarpo klavišas""„Sym“ +""„Menu“ +""Ieškoti...""Išvalyti užklausą""Paieškos užklausa""Paieška""Pateikti užklausą""Paieška balsu""Bendrinti naudojant""Bendrinti naudojant programą „%s“""Sutraukti""Paieška""Fara heim""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Alt+""Ctrl+""delete""enter""Aðgerðarlykill+""Meta+""Shift+""bilslá""Sym+""Valmynd+""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leita""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leita""홈 탐색""위로 탐색""옵션 더보기""완료""전체 보기""앱 선택""사용 안함""사용""Alt+""Ctrl+""삭제""입력""Function+""Meta+""Shift+""스페이스바""Sym+""Menu+""검색...""검색어 삭제""검색어""검색""검색어 보내기""음성 검색""공유 대상""%s와(과) 공유""접기""검색""မူလနေရာကို သွားရန်""အပေါ်သို့သွားရန်""ပိုမိုရွေးချယ်စရာများ""ပြီးဆုံးပါပြီ""အားလုံးကို ကြည့်ရန်""အက်ပ်တစ်ခုခုကို ရွေးချယ်ပါ""ပိတ်""ဖွင့်""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ရှာဖွေပါ...""ရှာစရာ အချက်အလက်များ ဖယ်ရှားရန်""ရှာစရာ အချက်အလက်နေရာ""ရှာဖွေရန်""ရှာဖွေစရာ အချက်အလက်ကို ပေးပို့ရန်""အသံဖြင့် ရှာဖွေခြင်း""မျှဝေဖို့ ရွေးပါ""%s ဖြင့် မျှဝေရန်""ခေါက်ရန်""ရှာဖွေပါ""Joan orri nagusira""Joan gora""Aukera gehiago""Eginda""Ikusi guztiak""Aukeratu aplikazio bat""DESAKTIBATUTA""AKTIBATUTA""Alt +""Ktrl +""Ezabatu""Sartu""Funtzioa +""Meta +""Maius +""Zuriunea""Sym +""Menua +""Bilatu…""Garbitu kontsulta""Bilaketa-kontsulta""Bilatu""Bidali kontsulta""Ahozko bilaketa""Partekatu hauekin""Partekatu %s aplikazioarekin""Tolestu""Bilatu""Odlazak na Početnu""Kretanje nagore""Još opcija""Gotovo""Prikaži sve""Izbor aplikacije""ISKLJUČI""UKLJUČI""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""taster za razmak""Sym+""Menu+""Pretražite...""Brisanje upita""Upit za pretragu""Pretraga""Slanje upita""Glasovna pretraga""Deli sa""Deljenje sa aplikacijom %s""Skupi""Pretraži""Pārvietoties uz sākuma ekrānu""Pārvietoties augšup""Vairāk opciju""Gatavs""Skatīt visu""Izvēlieties lietotni""IZSLĒGTS""IESLĒGTS""Alternēšanas taustiņš +""Vadīšanas taustiņš +""dzēšanas taustiņš""ievadīšanas taustiņš""Funkcijas taustiņš +""Meta taustiņš +""Pārslēgšanas taustiņš +""atstarpes taustiņš""Simbolu taustiņš +""Poga Izvēlne +""Meklējiet…""Notīrīt vaicājumu""Meklēšanas vaicājums""Meklēt""Iesniegt vaicājumu""Meklēšana ar balsi""Kopīgot ar:""Kopīgot ar lietojumprogrammu %s""Sakļaut""Meklēt""Zulazulela ekhaya""Zulazulela phezulu""Izinketho eziningi""Kwenziwe""Buka konke""Khetha uhlelo lokusebenza""VALIWE""VULIWE""Alt+""Ctrl+""susa""enter""Function+""Meta+""Shift+""space""Sym+""Imenyu+""Iyasesha...""Sula inkinga""Umbuzo wosesho""Sesha""Hambisa umbuzo""Ukusesha ngezwi""Yabelana no-""Yabelana ne-%s""Goqa""Sesha""Нүүр хуудас руу шилжих""Дээш шилжих""Нэмэлт сонголтууд""Дууссан""Бүгдийг харах""Апп сонгох""ИДЭВХГҮЙ""ИДЭВХТЭЙ""Alt+""Ctrl+""устгах""оруулах""Функц+""Мета+""Shift+""зай""Sym+""Цэс+""Хайх...""Асуулгыг цэвэрлэх""Хайх асуулга""Хайх""Асуулгыг илгээх""Дуут хайлт""Хуваалцах""%s-тай хуваалцах""Хумих""Хайлт""瀏覽主頁""向上瀏覽""更多選項""完成""顯示全部""選擇應用程式""關閉""開啟""Alt +""Ctrl +""刪除""Enter 鍵""Fn +""Meta +""Shift +""空白鍵""Sym +""Menu +""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""使用「%s」分享""收合""搜尋""Ir á páxina de inicio""Desprazarse cara arriba""Máis opcións""Feito""Ver todas""Escoller unha aplicación""DESACTIVAR""ACTIVAR""Alt +""Ctrl +""eliminar""Intro""Función +""Meta +""Maiús +""espazo""Sim +""Menú +""Buscar…""Borrar consulta""Consulta de busca""Buscar""Enviar consulta""Busca por voz""Compartir con""Compartir con %s""Contraer""Buscar""მთავარზე ნავიგაცია""ზემოთ ნავიგაცია""მეტი ვარიანტები""დასრულდა""ყველას ნახვა""აპის არჩევა""გამორთულია""ჩართულია""Alt+""Ctrl+""წაშლა""შეყვანა""Function+""Meta+""Shift+""space""Sym+""Menu+""ძიება...""მოთხოვნის გასუფთავება""ძიების მოთხოვნა""ძიება""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""გაზიარება:""გაუზიარეთ %s-ს""აკეცვა""ძიება"24dp80dp64dp8dp8dp580dp16dp20dp"Navigeerimine avaekraanile""Navigeerimine üles""Rohkem valikuid""Valmis""Kuva kõik""Valige rakendus""VÄLJAS""SEES""Alt +""Ctrl +""kustutamisklahv""sisestusklahv""Funktsiooniklahv +""Meta +""Tõstuklahv +""tühik""Sym +""Menüü +""Otsige …""Päringu tühistamine""Otsingupäring""Otsing""Päringu esitamine""Häälotsing""Jagamine:""Jagamine rakendusega %s""Ahendamine""Otsing""Navigeer tuis""Navigeer op""Nog opsies""Klaar""Sien alles""Kies \'n program""AF""AAN""Alt+""Ctrl+""delete""enter""Funksie+""Meta+""Shift+""spasiebalk""Simbool+""Kieslys+""Soek …""Vee navraag uit""Soeknavraag""Soek""Dien navraag in""Stemsoektog""Deel met""Deel met %s""Vou in""Soek""Ուղղվել տուն""Ուղղվել վերև""Այլ ընտրանքներ""Պատրաստ է""Տեսնել բոլորը""Ընտրել ծրագիր""ԱՆՋԱՏՎԱԾ""ՄԻԱՑՎԱԾ""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""բացատ""Sym+""Menu+""Որոնում...""Մաքրել հարցումը""Որոնման հարցում""Որոնել""Ուղարկել հարցումը""Ձայնային որոնում""Կիսվել""Ուղարկել %s-ին""Թաքցնել""Որոնել""ହୋମ୍ ପେଜ୍‍କୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଉପରକୁ ନେଭିଗେଟ୍ କରନ୍ତୁ""ଅଧିକ ବିକଳ୍ପ""ହୋଇଗଲା""ସବୁ ଦେଖନ୍ତୁ""ଗୋଟିଏ ଆପ୍‍ ବାଛନ୍ତୁ""ଅଫ୍""ଅନ୍""Alt+""Ctrl+""ଡିଲିଟ୍‍""ଏଣ୍ଟର୍""Function+""Meta+""Shift+""ସ୍ପେସ୍‍""Sym+""ମେନୁ""ସର୍ଚ୍ଚ…""କ୍ୱେରୀ ଖାଲି କରନ୍ତୁ""ସର୍ଚ୍ଚ କ୍ୱେରୀ""ସର୍ଚ୍ଚ କରନ୍ତୁ""କ୍ୱେରୀ ଦାଖଲ କରନ୍ତୁ""ଭଏସ୍‌ ସର୍ଚ୍ଚ""ଏହାଙ୍କ ସହ ଶେୟାର୍‌ କରନ୍ତୁ""%s ସହ ଶେୟାର୍‍ କରନ୍ତୁ""ଛୋଟ କରନ୍ତୁ""ସର୍ଚ୍ଚ କରନ୍ତୁ""นำทางไปหน้าแรก""นำทางขึ้น""ตัวเลือกอื่น""เสร็จสิ้น""ดูทั้งหมด""เลือกแอป""ปิด""เปิด""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Space""Sym+""เมนู+""ค้นหา…""ล้างข้อความค้นหา""ข้อความค้นหา""ค้นหา""ส่งข้อความค้นหา""ค้นหาด้วยเสียง""แชร์กับ""แชร์ทาง %s""ยุบ""ค้นหา""Перейти на главный экран""Перейти вверх""Другие параметры""Готово""Показать все""Выбрать приложение""ОТКЛ.""ВКЛ.""Alt +""Ctrl +""Delete""Ввод""Fn +""Meta +""Shift +""Пробел""Sym +""Меню +""Поиск""Удалить запрос""Поисковый запрос""Поиск""Отправить запрос""Голосовой поиск""Открыть доступ""Открыть доступ приложению \"%s\"""Свернуть""Поиск""Prejsť na plochu""Prejsť hore""Ďalšie možnosti""Hotovo""Zobraziť všetko""Zvoľte aplikáciu""VYPNUTÉ""ZAPNUTÉ""Alt+""Ctrl+""odstrániť""enter""Function+""Meta+""Shift+""medzerník""Sym+""Menu+""Vyhľadať…""Vymazať dopyt""Vyhľadávací dopyt""Hľadať""Odoslať dopyt""Hlasové vyhľadávanie""Zdieľať pomocou""Zdieľať s aplikáciou %s""Zbaliť""Vyhľadávanie""Перейти на головний""Перейти вгору""Інші опції""Готово""Переглянути всі""Вибрати програму""ВИМК.""УВІМК.""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""пробіл""Sym+""Menu+""Пошук…""Очистити запит""Пошуковий запит""Пошук""Надіслати запит""Голосовий пошук""Надіслати через""Поділитися через додаток %s""Згорнути""Пошук""ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക""മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക""കൂടുതൽ‍ ഓപ്‌ഷനുകള്‍""പൂർത്തിയാക്കി""എല്ലാം കാണുക""ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക""ഓഫ്""ഓൺ""Alt+""Ctrl+""ഇല്ലാതാക്കുക""enter""ഫംഗ്ഷന്‍+""മെറ്റ+""Shift+""സ്‌പെയ്‌സ്""Sym+""മെനു+""തിരയുക…""അന്വേഷണം മായ്‌ക്കുക""തിരയൽ അന്വേഷണം""തിരയൽ""അന്വേഷണം സമർപ്പിക്കുക""ശബ്ദതിരയൽ""ഇവരുമായി പങ്കിടുക""%s-മായി പങ്കിടുക""ചുരുക്കുക""തിരയുക""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""ಆಫ್""ಆನ್""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ಹುಡುಕಿ…""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಹುಡುಕಿ""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಧ್ವನಿ ಹುಡುಕಾಟ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""%s ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಸಂಕುಚಿಸು""ಹುಡುಕಿ""Navegar a la página principal""Navegar hacia arriba""Más opciones""Listo""Ver todo""Elige una aplicación.""DESACTIVADO""ACTIVADO""Alt+""Ctrl+""borrar""intro""Función+""Meta+""Mayúscula+""espacio""Sym+""Menú+""Buscar…""Eliminar la consulta""Búsqueda""Búsqueda""Enviar consulta""Búsqueda por voz""Compartir con""Compartir con %s""Contraer""Buscar"54dip"Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Navigasi ke beranda""Navigasi naik""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""spasi""Sym+""Menu+""Telusuri...""Hapus kueri""Kueri penelusuran""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan ke %s""Ciutkan""Telusuri""Navigate home""Navigate up""More options""Done""See all""Choose an app""OFF""ON""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""Search…""Clear query""Search query""Search""Submit query""Voice search""Share with""Share with %s""Collapse""Search""Revenir à l\'accueil""Revenir en haut de la page""Plus d\'options""Terminé""Voir toutes les chaînes""Sélectionnez une application""DÉSACTIVÉ""ACTIVÉ""Alt+""Ctrl+""supprimer""entrée""Fonction+""Méta+""Maj+""espace""Sym+""Menu+""Recherche en cours...""Effacer la requête""Requête de recherche""Rechercher""Envoyer la requête""Recherche vocale""Partager""Partager avec %s""Réduire""Rechercher""গৃহ পৃষ্ঠালৈ যাওক""ওপৰলৈ যাওক""অধিক বিকল্প""সম্পন্ন কৰা হ\'ল""সকলো চাওক""এটা এপ্ বাছনি কৰক""অফ কৰক""অন কৰক""Alt+""CTRL+""মচক""এণ্টাৰ""ফাংশ্বন+""মেটা+""শ্বিফ্ট+""স্পেচ""Sym+""মেনু+""অনুসন্ধান কৰক…""প্ৰশ্ন মচক""সন্ধান কৰিব খোজা প্ৰশ্ন""সন্ধান কৰক""প্ৰশ্ন দাখিল কৰক""কণ্ঠধ্বনিৰ যোগেৰে সন্ধান কৰক""ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক""%sৰ জৰিয়তে শ্বেয়াৰ কৰক""সংকুচিত কৰক""অনুসন্ধান কৰক""Evə naviqasiya et""Yuxarı get""Digər variantlar""Hazırdır""Hamısına baxın""Tətbiq seçin""DEAKTİV""AKTİV""Alt+""Ctrl+""silin""daxil olun""Funksiya+""Meta+""Shift+""kosmos""Sym+""Menyu+""Axtarış...""Sorğunu təmizlə""Axtarış sorğusu""Axtarış""Sorğunu göndərin""Səsli axtarış""Bununla paylaşın""%s ilə paylaşın""Yığışdırın""Axtarış"60%90%50%70%45%72%"ወደ መነሻ ይዳስሱ""ወደ ላይ ይዳስሱ""ተጨማሪ አማራጮች""ተከናውኗል""ሁሉንም ይመልከቱ""መተግበሪያ ይምረጡ""ጠፍቷል""በርቷል""Alt+""Ctrl+""ሰርዝ""enter""Function+""Meta+""Shift+""space""Sym+""ምናሌ+""ፈልግ…""መጠይቅ አጽዳ""የፍለጋ ጥያቄ""ፍለጋ""መጠይቅ ያስረክቡ""የድምፅ ፍለጋ""ከሚከተለው ጋር ያጋሩ""ከ%s ጋር አጋራ""ሰብስብ""ፈልግ""រកមើល​ទៅ​ដើម""រកមើល​ឡើងលើ""ជម្រើស​ច្រើន​ទៀត""រួចរាល់""មើល​ទាំងអស់""ជ្រើស​កម្មវិធី​​""បិទ""បើក""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""ស្វែងរក…""សម្អាត​សំណួរ""ស្វែងរក​សំណួរ""ស្វែងរក""ដាក់​​​ស្នើ​សំណួរ""ការស្វែងរក​សំឡេង""ចែករំលែក​ជាមួយ""ចែក​រំលែក​ជា​មួយ %s""បង្រួម""ស្វែងរក""Navegar para a página inicial""Navegar para cima""Mais opções""Concluído""Ver tudo""Escolher uma aplicação""DESATIVADO""ATIVADO""Alt +""Ctrl +""eliminar""enter""Função +""Meta +""Shift +""espaço""Sym +""Menu +""Pesquisar...""Limpar consulta""Consulta de pesquisa""Pesquisar""Enviar consulta""Pesquisa por voz""Partilhar com""Partilhar com a aplicação %s""Reduzir""Pesquisar""Orientohu për në shtëpi""Ngjitu lart""Opsione të tjera""U krye!""Shikoji të gjitha""Zgjidh një aplikacion""JOAKTIV""AKTIV""Alt+""Ctrl+""delete""enter""Funksioni+""Meta+""Shift+""hapësirë""Sym+""Menyja+""Kërko...""Pastro pyetjen""Kërko pyetjen""Kërko""Dërgo pyetjen""Kërkim me zë""Shpërnda publikisht me""Ndaje me %s""Shpalos""Kërko""Одлазак на Почетну""Кретање нагоре""Још опција""Готово""Прикажи све""Избор апликације""ИСКЉУЧИ""УКЉУЧИ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""тастер за размак""Sym+""Menu+""Претражите...""Брисање упита""Упит за претрагу""Претрага""Слање упита""Гласовна претрага""Дели са""Дељење са апликацијом %s""Скупи""Претражи""Revenir à l\'accueil""Revenir en haut de la page""Plus d\'options""OK""Tout afficher""Sélectionner une application""DÉSACTIVÉ""ACTIVÉ""Alt+""Ctrl+""supprimer""entrée""Fonction+""Méta+""Maj+""espace""Sym+""Menu+""Rechercher…""Effacer la requête""Requête de recherche""Rechercher""Envoyer la requête""Recherche vocale""Partager avec""Partager avec %s""Réduire""Rechercher""Boshiga o‘tish""Yuqoriga o‘tish""Boshqa parametrlar""Tayyor""Hammasi""Dastur tanlang""O‘CHIQ""YONIQ""Alt+""Ctrl+""Delete""Enter""Fn+""Meta+""Shift+""Probel""Sym+""Menyu+""Qidirish…""So‘rovni tozalash""So‘rovni izlash""Qidirish""So‘rov yaratish""Ovozli qidiruv""Ruxsat berish""%s orqali ulashish""Yig‘ish""Qidirish""转到主屏幕""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""Alt+""Ctrl+""Delete 键""Enter 键""Fn+""Meta+""Shift+""空格键""Sym+""Menu+""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享方式""使用%s分享""收起""搜索""נווט לדף הבית""נווט למעלה""עוד אפשרויות""בוצע""ראה הכל""בחר אפליקציה""כבוי""פועל""Alt+""Ctrl+‎""delete""Enter""Function+""Meta+""Shift+""מקש רווח""Sym+""תפריט+""חיפוש…""מחק שאילתה""שאילתת חיפוש""חיפוש""שלח שאילתה""חיפוש קולי""שתף עם""שתף עם %s""כווץ""חיפוש""Ana ekrana git""Yukarı git""Diğer seçenekler""Bitti""Tümünü göster""Bir uygulama seçin""KAPAT""AÇ""Alt+""Ctrl+""sil""enter""İşlev+""Meta+""Üst Karakter+""boşluk""Sym+""Menü+""Ara…""Sorguyu temizle""Arama sorgusu""Ara""Sorguyu gönder""Sesli arama""Şununla paylaş""%s ile paylaş""Daralt""Ara""Негізгі бетте қозғалу""Жоғары қозғалу""Басқа опциялар""Дайын""Барлығын көру""Қолданбаны таңдау""ӨШІРУЛІ""ҚОСУЛЫ""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""бос орын""Sym+""Mәзір+""Іздеу…""Сұрақты жою""Сұрақты іздеу""Іздеу""Сұрақты жіберу""Дауыс арқылы іздеу""Бөлісу""%s қолданбасымен бөлісу""Тасалау""Іздеу""ගෙදරට සංචාලනය කරන්න""ඉහලට සංචාලනය කරන්න""තවත් විකල්ප""අවසාන වූ""සියල්ල බලන්න""යෙදුමක් තෝරන්න""ක්‍රියාවිරහිතයි""ක්‍රියාත්මකයි""Alt+""Ctrl+""මකන්න""enter""Function+""Meta+""Shift+""space""Sym+""Menu+""සොයන්න...""විමසුම හිස් කරන්න""සෙවුම් විමසුම""සෙවීම""විමසුම යොමු කරන්න""හඬ සෙවීම""සමඟ බෙදාගන්න""%s සමඟ බෙදා ගන්න""හකුළන්න""සොයන්න""Үйгө багыттоо""Жогору""Көбүрөөк мүмкүнчүлүктөр""Даяр""Бардыгын көрүү""Колдонмо тандоо""ӨЧҮК""КҮЙҮК""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""боштук""Sym+""Menu+""Издөө…""Талаптарды тазалоо""Издөө талаптары""Издөө""Талап жөнөтүү""Үн аркылуу издөө""Бөлүшүү""%s аркылуу бөлүшүү""Жыйнап коюу""Издөө""Ugrás a főoldalra""Felfelé mozgatás""További lehetőségek""Kész""Összes megtekintése""Válasszon ki egy alkalmazást""KI""BE""Alt+""Ctrl+""Delete""Enter""Function+""Meta+""Shift+""Szóköz""Sym+""Menu+""Keresés…""Lekérdezés törlése""Keresési lekérdezés""Keresés""Lekérdezés küldése""Hangalapú keresés""Megosztás a következővel:""Megosztás a következő alkalmazással: %s""Összecsukás""Keresés"falsetruefalsetrue@android:color/black#7fa87f@android:color/black@android:color/black@color/material_deep_teal_200@color/material_deep_teal_500@color/material_grey_800@android:color/white@color/material_grey_850@color/material_grey_50#80ffffff#80000000@color/bright_foreground_material_light@color/bright_foreground_material_dark@android:color/white@android:color/black#ff5a595b#ffd6d7d7#80bebebe#80323232#ffbebebe#ff323232#ff7043#ff5722@android:color/white@android:color/black#6680cbc4#66009688#ff37474f#ff263238#ff21272b#ff80cbc4#ff009688#fff5f5f5#ffe0e0e0#fffafafa#ff757575#ff424242#ff303030#ff212121@android:color/black@color/material_grey_600@color/material_grey_900@color/material_grey_100#ffffffff#de000000#4Dffffff#39000000#33ffffff#1f000000#b3ffffff#8a000000#36ffffff#24000000#ff616161#ffbdbdbd#ffbdbdbd#fff1f1f1#e6616161#e6FFFFFF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 16dp72dp56dp0dp0dp4dp16dp10dp6dp48dp180dp5dp-3dp48dp48dp36dp48dp48dp@dimen/abc_control_inset_material6dp8dp@dimen/abc_control_padding_material720dp320dp2dp4dp4dp2dp80%100%320dp320dp8dp8dp65%95%24dp18dp8dp0.300.2632dip8dip8dip7dp4dp10dp16dp@dimen/abc_action_bar_content_inset_material296dp4dp48dip320dip2dp2dp20dp3dp14sp14sp14sp12sp34sp45sp56sp112sp24sp22sp18sp14sp16sp14sp16sp16dp20sp20dp0.300.260.260.200.120.500.380.700.542dp16dp8dp8dp96dp6.5dp0dp16dp220150127150Navigate homeNavigate upMore optionsDoneSee allChoose an appOFFONsans-serifsans-serif-mediumsans-serif-mediumsans-serifsans-serifsans-serifsans-serifsans-serif-lightsans-serifsans-serifsans-serifsans-serif-mediumAlt+Ctrl+deleteenterFunction+Meta+Shift+spaceSym+Menu+Search…Clear querySearch querySearchSubmit queryVoice searchShare withShare with %sCollapseSearch"હોમ પર નેવિગેટ કરો""ઉપર નૅવિગેટ કરો""વધુ વિકલ્પો""થઈ ગયું""બધું જુઓ""એક ઍપ્લિકેશન પસંદ કરો""બંધ""ચાલુ""Alt+""Ctrl+""ડિલીટ કરો""Enter""Function+""Meta+""Shift+""Spacebar""Sym+""મેનૂ+""શોધો…""ક્વેરી સાફ કરો""શોધ ક્વેરી""શોધો""ક્વેરી સબમિટ કરો""વૉઇસ શોધ""આની સાથે શેર કરો""%sની સાથે શેર કરો""સંકુચિત કરો""શોધો""Idi na početnu""Idi gore""Dodatne opcije""Gotovo""Prikaži sve""Odabir aplikacije""ISKLJUČENO""UKLJUČENO""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""razmaknica""Sym+""Menu+""Pretražite…""Izbriši upit""Upit za pretraživanje""Pretraživanje""Pošalji upit""Glasovno pretraživanje""Dijeljenje sa""Dijeli putem aplikacije %s""Sažmi""Pretraživanje""Visa startsidan""Navigera uppåt""Fler alternativ""Klart""Visa alla""Välj en app""AV""PÅ""Alt + ""Ctrl + ""delete""retur""Funktion + ""Meta + ""Skift + ""blanksteg""Symbol + ""Meny + ""Sök …""Ta bort frågan""Sökfråga""Sök""Skicka fråga""Röstsökning""Dela med""Dela med %s""Komprimera""Sök""Придвижване към „Начало“""Придвижване нагоре""Още опции""Готово""Вижте всички""Изберете приложение""ИЗКЛ.""ВКЛ.""Alt+""Ctrl+""delete""enter""Function+""Meta+""Shift+""клавиша за интервал""Sym+""Menu+""Търсете…""Изчистване на заявката""Заявка за търсене""Търсене""Изпращане на заявката""Гласово търсене""Споделяне със:""Споделяне със: %s""Свиване""Търсене"320dp0dp2dp24dp576dp320dp@dimen/design_snackbar_padding_vertical + 160dp1true#14000000#3F51B5#303F9F@android:color/transparent#14000000#44000000#0A000000#0F000000#1AFFFFFF#2EFFFFFF#323232#1F000000#61000000#00ffffff#52000000#6B000000#1F000000#0A000000#DE000000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4dp168dp96dp14sp8dp56dp24dp96dp56dp8dp1dp12sp16dp64dp0.5dp6dp24dp40dp56dp6dp6dp16dp32dp24dp16dp32dp280dp8dp8dp128dp0dp6dp0dp-1px-1px12dp14dp24dp14sp264dp72dp14sp12sp5dp60dp5dp8dp0dp56dp4dp64dp0dp0dp2dp2dp2dp12dp8dp6dp0.074dp16dp16dp4dp6dp1dp4dp8dp8dp14sp0dp1dp8dp3dp14sp6dp2dp6dp0dp22dp14dp4dp8dp3dp4dp0dp4dp12dp1dp2dp16dp56dp1501502300320100100100250200android.support.design.widget.AppBarLayout$ScrollingViewBehaviorandroid.support.design.widget.BottomSheetBehaviorCharacter limit exceeded %1$d of %2$d%1$d / %2$dandroid.support.design.transformation.FabTransformationScrimBehaviorandroid.support.design.transformation.FabTransformationSheetBehaviorandroid.support.design.behavior.HideBottomViewOnScrollBehaviorRemove %1$sShow passwordM12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3zM2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 ZM2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 ZM3.27,4.27 L19.74,20.74SmartFritzHello world!#3F51B5#303F9F#C5CAE9#03A9F4#212121#727272#FFFFFF#B6B6B6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/mergeReleaseShaders/merger.xml b/SmartFritz/build/intermediates/incremental/mergeReleaseShaders/merger.xml new file mode 100644 index 0000000000000000000000000000000000000000..4ebf4283d6a17001140e064e2a4dc7e2a314d375 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/mergeReleaseShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/incremental/packageDebug/tmp/armeabi-v7aDebug/dex-renamer-state.txt b/SmartFritz/build/intermediates/incremental/packageDebug/tmp/armeabi-v7aDebug/dex-renamer-state.txt new file mode 100644 index 0000000000000000000000000000000000000000..7685a94226efab82b1711de569b1f8191973f2cd --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/packageDebug/tmp/armeabi-v7aDebug/dex-renamer-state.txt @@ -0,0 +1,4 @@ +#Fri Jul 17 03:06:35 CEST 2020 +base.0=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/dex/debug/mergeDexDebug/out +renamed.0=classes.dex +path.0=classes.dex diff --git a/SmartFritz/build/intermediates/incremental/packageDebug/tmp/armeabi-v7aDebug/file-input-save-data.txt b/SmartFritz/build/intermediates/incremental/packageDebug/tmp/armeabi-v7aDebug/file-input-save-data.txt new file mode 100644 index 0000000000000000000000000000000000000000..64ea07c4feef9ef5b558a99f47deefd9a2e8e1d9 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/packageDebug/tmp/armeabi-v7aDebug/file-input-save-data.txt @@ -0,0 +1,23 @@ +#Internal package file, do not edit. +#Fri Jul 17 03:06:33 CEST 2020 +3.set=DEX +3.path=classes.dex +2.base=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0 +0.path=lib/armeabi-v7a/libssl.so +4.path=lib/arm64-v8a/libcontrols.so +count=5 +1.set=NATIVE_RESOURCE +2.path=lib/armeabi-v7a/libcrypto.so +2.baseType=DIRECTORY +0.base=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0 +2.set=NATIVE_RESOURCE +3.base=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/dex/debug/mergeDexDebug/out +1.baseType=DIRECTORY +3.baseType=DIRECTORY +1.path=lib/armeabi-v7a/libcontrols.so +4.base=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0 +4.set=NATIVE_RESOURCE +0.baseType=DIRECTORY +1.base=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0 +4.baseType=DIRECTORY +0.set=NATIVE_RESOURCE diff --git a/SmartFritz/build/intermediates/incremental/packageDebug/tmp/armeabi-v7aDebug/zip-cache/HCYB4jBOrZrFyuCyVUtEomSg2ZI= b/SmartFritz/build/intermediates/incremental/packageDebug/tmp/armeabi-v7aDebug/zip-cache/HCYB4jBOrZrFyuCyVUtEomSg2ZI= new file mode 100644 index 0000000000000000000000000000000000000000..fd13ae66ef402f00ef50df95ea41525913e62f9a Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/packageDebug/tmp/armeabi-v7aDebug/zip-cache/HCYB4jBOrZrFyuCyVUtEomSg2ZI= differ diff --git a/SmartFritz/build/intermediates/incremental/packageDebug/tmp/armeabi-v7aDebug/zip-cache/QORl0WHq1VLMHJJmlGYBUCC6vII= b/SmartFritz/build/intermediates/incremental/packageDebug/tmp/armeabi-v7aDebug/zip-cache/QORl0WHq1VLMHJJmlGYBUCC6vII= new file mode 100644 index 0000000000000000000000000000000000000000..dd8d121fbe1e5bb2fdda5944c16570b482e3af9c Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/packageDebug/tmp/armeabi-v7aDebug/zip-cache/QORl0WHq1VLMHJJmlGYBUCC6vII= differ diff --git a/SmartFritz/build/intermediates/incremental/packageRelease/tmp/armeabi-v7aRelease/dex-renamer-state.txt b/SmartFritz/build/intermediates/incremental/packageRelease/tmp/armeabi-v7aRelease/dex-renamer-state.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee5eaf13ede547932f3d43745c0628862c673420 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/packageRelease/tmp/armeabi-v7aRelease/dex-renamer-state.txt @@ -0,0 +1,4 @@ +#Fri Jul 17 03:06:39 CEST 2020 +base.0=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/dex/release/mergeDexRelease/out +renamed.0=classes.dex +path.0=classes.dex diff --git a/SmartFritz/build/intermediates/incremental/packageRelease/tmp/armeabi-v7aRelease/file-input-save-data.txt b/SmartFritz/build/intermediates/incremental/packageRelease/tmp/armeabi-v7aRelease/file-input-save-data.txt new file mode 100644 index 0000000000000000000000000000000000000000..29522079b5fbf7bf83df68f152645208b306a465 --- /dev/null +++ b/SmartFritz/build/intermediates/incremental/packageRelease/tmp/armeabi-v7aRelease/file-input-save-data.txt @@ -0,0 +1,23 @@ +#Internal package file, do not edit. +#Fri Jul 17 03:06:39 CEST 2020 +3.set=DEX +3.path=classes.dex +2.base=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0 +0.path=lib/armeabi-v7a/libssl.so +4.path=lib/armeabi-v7a/libcrypto.so +count=5 +1.set=NATIVE_RESOURCE +2.path=lib/arm64-v8a/libcontrols.so +2.baseType=DIRECTORY +0.base=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0 +2.set=NATIVE_RESOURCE +3.base=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/dex/release/mergeDexRelease/out +1.baseType=DIRECTORY +3.baseType=DIRECTORY +1.path=lib/armeabi-v7a/libcontrols.so +4.base=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0 +4.set=NATIVE_RESOURCE +0.baseType=DIRECTORY +1.base=/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0 +4.baseType=DIRECTORY +0.set=NATIVE_RESOURCE diff --git a/SmartFritz/build/intermediates/incremental/packageRelease/tmp/armeabi-v7aRelease/zip-cache/Py9gLl+j276ATGlkPyT69qzgG5g= b/SmartFritz/build/intermediates/incremental/packageRelease/tmp/armeabi-v7aRelease/zip-cache/Py9gLl+j276ATGlkPyT69qzgG5g= new file mode 100644 index 0000000000000000000000000000000000000000..002d1decafaf0c91baf21db26d0affcc5e45cf79 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/packageRelease/tmp/armeabi-v7aRelease/zip-cache/Py9gLl+j276ATGlkPyT69qzgG5g= differ diff --git a/SmartFritz/build/intermediates/incremental/packageRelease/tmp/armeabi-v7aRelease/zip-cache/meZfd24gDfKEvJtVcEZQp7K8bT8= b/SmartFritz/build/intermediates/incremental/packageRelease/tmp/armeabi-v7aRelease/zip-cache/meZfd24gDfKEvJtVcEZQp7K8bT8= new file mode 100644 index 0000000000000000000000000000000000000000..e7efabe970cf7e9dcf4a7b05bd12402ef548e582 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/packageRelease/tmp/armeabi-v7aRelease/zip-cache/meZfd24gDfKEvJtVcEZQp7K8bT8= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/merge-state b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/merge-state new file mode 100644 index 0000000000000000000000000000000000000000..a9f45f66f80a5640fd3ad08e114974dcd13bfca7 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/merge-state differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/28nPXP5azBwyl2ZgsREZh711RGQ= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/28nPXP5azBwyl2ZgsREZh711RGQ= new file mode 100644 index 0000000000000000000000000000000000000000..feebff2e34f1a74e5bedbd37448aea1ce57745e6 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/28nPXP5azBwyl2ZgsREZh711RGQ= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/4+G2AcEpuQHVySxBisObncDJaWM= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/4+G2AcEpuQHVySxBisObncDJaWM= new file mode 100644 index 0000000000000000000000000000000000000000..4c8e7d1cfef6ea5255a0279329c1e4a93f3be5a8 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/4+G2AcEpuQHVySxBisObncDJaWM= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/8m4OyOe9jJGWF7LnqbfoaCR9HUI= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/8m4OyOe9jJGWF7LnqbfoaCR9HUI= new file mode 100644 index 0000000000000000000000000000000000000000..d0dcd9ca2cc1eb1d5796f960142be6eddd673e4f Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/8m4OyOe9jJGWF7LnqbfoaCR9HUI= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/B25qNee8_6vBZNzO799QX19_SVs= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/B25qNee8_6vBZNzO799QX19_SVs= new file mode 100644 index 0000000000000000000000000000000000000000..865488d18f192dbb46ce3f0e15a9b81fdae863ea Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/B25qNee8_6vBZNzO799QX19_SVs= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/BDuRgn+v8CICQa7MzoL5__1NqJs= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/BDuRgn+v8CICQa7MzoL5__1NqJs= new file mode 100644 index 0000000000000000000000000000000000000000..e49acf7983a7c79884a94bd0694a471b28e9c1b1 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/BDuRgn+v8CICQa7MzoL5__1NqJs= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/DiIOxxa_zrAqG54j1Qwma03rXtU= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/DiIOxxa_zrAqG54j1Qwma03rXtU= new file mode 100644 index 0000000000000000000000000000000000000000..e9e760818c198724808ab59592b4f9a0e455d662 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/DiIOxxa_zrAqG54j1Qwma03rXtU= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/Hu6J9_P1Gxk2vz3u3VGfEvB7Utk= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/Hu6J9_P1Gxk2vz3u3VGfEvB7Utk= new file mode 100644 index 0000000000000000000000000000000000000000..6bb2c4931c54608370e28c790c0b8421d5d17687 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/Hu6J9_P1Gxk2vz3u3VGfEvB7Utk= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/PpI17wHXkjeW2NVZQ+LBdtqx2BQ= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/PpI17wHXkjeW2NVZQ+LBdtqx2BQ= new file mode 100644 index 0000000000000000000000000000000000000000..8d3e7638baeb3c849d39db433fa0aeb289da3a72 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/PpI17wHXkjeW2NVZQ+LBdtqx2BQ= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ThGtOKHfY8t4m0c3fPXONN+hwEc= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ThGtOKHfY8t4m0c3fPXONN+hwEc= new file mode 100644 index 0000000000000000000000000000000000000000..25547cc989729eb7342fb50a12d5a4e4e9249857 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ThGtOKHfY8t4m0c3fPXONN+hwEc= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/UYENskPSsCzUGp2EZPQ1saEWC4E= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/UYENskPSsCzUGp2EZPQ1saEWC4E= new file mode 100644 index 0000000000000000000000000000000000000000..2b56acdbf38ac42b3f16808ecca74660a39dd4db Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/UYENskPSsCzUGp2EZPQ1saEWC4E= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/Ur2zihNjWXKafsKY_s1yWkXsH4g= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/Ur2zihNjWXKafsKY_s1yWkXsH4g= new file mode 100644 index 0000000000000000000000000000000000000000..a19a2a515c241545db10770191aee62d127a7b2c Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/Ur2zihNjWXKafsKY_s1yWkXsH4g= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/VZd7HZcXiSNqKQD4ChsYI7QVBps= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/VZd7HZcXiSNqKQD4ChsYI7QVBps= new file mode 100644 index 0000000000000000000000000000000000000000..c063f2b9a438be31d268d2f78a4fc87684f50143 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/VZd7HZcXiSNqKQD4ChsYI7QVBps= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/VeUnTgq8KmpeH6p2LKVPsOWGxs8= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/VeUnTgq8KmpeH6p2LKVPsOWGxs8= new file mode 100644 index 0000000000000000000000000000000000000000..fc0a247284ab6436e5b22a2a7e8a9ca3d47a73a5 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/VeUnTgq8KmpeH6p2LKVPsOWGxs8= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/WCbtSpJcj3TMVr4CEF3ReWtbb6g= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/WCbtSpJcj3TMVr4CEF3ReWtbb6g= new file mode 100644 index 0000000000000000000000000000000000000000..2dae2f9b2414bec6ba78cd4a2be6ced63dc43b68 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/WCbtSpJcj3TMVr4CEF3ReWtbb6g= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/XJtESMpD1d26QjAwDtRAP7x28yo= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/XJtESMpD1d26QjAwDtRAP7x28yo= new file mode 100644 index 0000000000000000000000000000000000000000..b12b28712defb538d3a4d1a7b2538f26d016ce1d Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/XJtESMpD1d26QjAwDtRAP7x28yo= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/XRacniRvzIHcPtIa0hJBwo4kf60= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/XRacniRvzIHcPtIa0hJBwo4kf60= new file mode 100644 index 0000000000000000000000000000000000000000..5954c1681f64385cae853e15802902b4cd4c42d8 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/XRacniRvzIHcPtIa0hJBwo4kf60= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ZQuIerbLG_308MV9SPzPA2C_Dbs= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ZQuIerbLG_308MV9SPzPA2C_Dbs= new file mode 100644 index 0000000000000000000000000000000000000000..083d96b02d1ac97b392db8a58c3809011fec3fe0 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ZQuIerbLG_308MV9SPzPA2C_Dbs= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/aWgUWNvZDTTCbJtEAU+toLC+HrY= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/aWgUWNvZDTTCbJtEAU+toLC+HrY= new file mode 100644 index 0000000000000000000000000000000000000000..b6ac9fe4bc9b945b5e4dad64ee91e1f3ec46519a Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/aWgUWNvZDTTCbJtEAU+toLC+HrY= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/bNdaE6pEvOqpV9nROmjUD0qPKUs= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/bNdaE6pEvOqpV9nROmjUD0qPKUs= new file mode 100644 index 0000000000000000000000000000000000000000..06e914d8c5b0714573d2436a408a8955ba62c96e Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/bNdaE6pEvOqpV9nROmjUD0qPKUs= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/bpSydQ++vsdCAiAGwZD+cBH2qSw= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/bpSydQ++vsdCAiAGwZD+cBH2qSw= new file mode 100644 index 0000000000000000000000000000000000000000..1423435f40f6c20d141890fc00bf07a0843421ed Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/bpSydQ++vsdCAiAGwZD+cBH2qSw= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/by6HqMeBl3AMriejnpW98pCTOmE= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/by6HqMeBl3AMriejnpW98pCTOmE= new file mode 100644 index 0000000000000000000000000000000000000000..b178df1b80427afd9b34186b5c5cb58f8f8bcbb7 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/by6HqMeBl3AMriejnpW98pCTOmE= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/cddMg8LpVSqaZ+AKNyl00gPum5Y= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/cddMg8LpVSqaZ+AKNyl00gPum5Y= new file mode 100644 index 0000000000000000000000000000000000000000..2365cb90f9a8e5ae5c9ba28fc6081e6425c71fb5 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/cddMg8LpVSqaZ+AKNyl00gPum5Y= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/cy8BEcobu7FZ1O1oUd7Z7FpJ_FI= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/cy8BEcobu7FZ1O1oUd7Z7FpJ_FI= new file mode 100644 index 0000000000000000000000000000000000000000..4e97c260f8abcdda1473ee737efda27bbd30f6a2 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/cy8BEcobu7FZ1O1oUd7Z7FpJ_FI= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/fI5k8yFixBgxfWM828U+8mzuf3w= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/fI5k8yFixBgxfWM828U+8mzuf3w= new file mode 100644 index 0000000000000000000000000000000000000000..e7159a9acf6fb869f9a03cf359ebebf216ac6c80 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/fI5k8yFixBgxfWM828U+8mzuf3w= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/fn+2So7L6qSWjHFEBrL23LQoUKk= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/fn+2So7L6qSWjHFEBrL23LQoUKk= new file mode 100644 index 0000000000000000000000000000000000000000..f61d7629ed6d22376f6761ee25b5c1fee38c2c48 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/fn+2So7L6qSWjHFEBrL23LQoUKk= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ipiWRYA8T4UESAKyV_A7BL8a8iE= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ipiWRYA8T4UESAKyV_A7BL8a8iE= new file mode 100644 index 0000000000000000000000000000000000000000..a69b1ec0f3c0ac131fb045379a0c29a68fad54a0 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/ipiWRYA8T4UESAKyV_A7BL8a8iE= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/kLUEwkJ1jGKKFyADhtbl_7NT0rA= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/kLUEwkJ1jGKKFyADhtbl_7NT0rA= new file mode 100644 index 0000000000000000000000000000000000000000..32d47c06c1b5cebcfe71d9fcbc9a8f085d231765 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/kLUEwkJ1jGKKFyADhtbl_7NT0rA= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/m29ktPSKU9Flbdip1B9ElbV6rVo= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/m29ktPSKU9Flbdip1B9ElbV6rVo= new file mode 100644 index 0000000000000000000000000000000000000000..27924dd4b8463d7585b390accdb578974522d32f Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/m29ktPSKU9Flbdip1B9ElbV6rVo= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/mJQ766RMvHBx6Q2zjhHw_5KBleA= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/mJQ766RMvHBx6Q2zjhHw_5KBleA= new file mode 100644 index 0000000000000000000000000000000000000000..87586a52124f49da61b71f1cfd5440882d14982a Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/mJQ766RMvHBx6Q2zjhHw_5KBleA= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/nPCj9JL75bkx1xvZB8FkPeetRmA= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/nPCj9JL75bkx1xvZB8FkPeetRmA= new file mode 100644 index 0000000000000000000000000000000000000000..1c79806c654bad3ecaeb245492ba1602fa9a25fa Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/nPCj9JL75bkx1xvZB8FkPeetRmA= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/sH+AMww8667Mr_2bDeZlM_1DHeg= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/sH+AMww8667Mr_2bDeZlM_1DHeg= new file mode 100644 index 0000000000000000000000000000000000000000..371b44143fa1f91248a4859d1fdf5079381c4319 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/sH+AMww8667Mr_2bDeZlM_1DHeg= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/v8OZlqc0m5XBbhWigcLE5AvotTI= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/v8OZlqc0m5XBbhWigcLE5AvotTI= new file mode 100644 index 0000000000000000000000000000000000000000..483b42ca66ca7a395c691c1db662be4130d7f143 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/v8OZlqc0m5XBbhWigcLE5AvotTI= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/wjypeEl8XD+uTpQYSTIJtG7jBfw= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/wjypeEl8XD+uTpQYSTIJtG7jBfw= new file mode 100644 index 0000000000000000000000000000000000000000..3c086f36853f76d821f72d27b069f377e3850ab2 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/wjypeEl8XD+uTpQYSTIJtG7jBfw= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/y83GoHRTgWt8pdPUNeSJVfLOhtI= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/y83GoHRTgWt8pdPUNeSJVfLOhtI= new file mode 100644 index 0000000000000000000000000000000000000000..c3f7927db3e25886858edde5878a859693459c0c Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/y83GoHRTgWt8pdPUNeSJVfLOhtI= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/yn1egIb_IAfUl99sK0ShUyegH9Q= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/yn1egIb_IAfUl99sK0ShUyegH9Q= new file mode 100644 index 0000000000000000000000000000000000000000..0fb7130e1240a71377f5d6cf906b9517228b773e Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/yn1egIb_IAfUl99sK0ShUyegH9Q= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/z4N2nM5RN8eWAZwqj69ueUUN8Is= b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/z4N2nM5RN8eWAZwqj69ueUUN8Is= new file mode 100644 index 0000000000000000000000000000000000000000..e27d24ae5f0ca276b7d85bf70f9d1cbecd52dc1d Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJavaRes/zip-cache/z4N2nM5RN8eWAZwqj69ueUUN8Is= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/merge-state b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/merge-state new file mode 100644 index 0000000000000000000000000000000000000000..986d4996bc97b87ab749a2401cf268c2b44d6f3e Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/merge-state differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/28nPXP5azBwyl2ZgsREZh711RGQ= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/28nPXP5azBwyl2ZgsREZh711RGQ= new file mode 100644 index 0000000000000000000000000000000000000000..feebff2e34f1a74e5bedbd37448aea1ce57745e6 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/28nPXP5azBwyl2ZgsREZh711RGQ= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/4+G2AcEpuQHVySxBisObncDJaWM= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/4+G2AcEpuQHVySxBisObncDJaWM= new file mode 100644 index 0000000000000000000000000000000000000000..4c8e7d1cfef6ea5255a0279329c1e4a93f3be5a8 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/4+G2AcEpuQHVySxBisObncDJaWM= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/8m4OyOe9jJGWF7LnqbfoaCR9HUI= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/8m4OyOe9jJGWF7LnqbfoaCR9HUI= new file mode 100644 index 0000000000000000000000000000000000000000..d0dcd9ca2cc1eb1d5796f960142be6eddd673e4f Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/8m4OyOe9jJGWF7LnqbfoaCR9HUI= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/B25qNee8_6vBZNzO799QX19_SVs= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/B25qNee8_6vBZNzO799QX19_SVs= new file mode 100644 index 0000000000000000000000000000000000000000..865488d18f192dbb46ce3f0e15a9b81fdae863ea Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/B25qNee8_6vBZNzO799QX19_SVs= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/BDuRgn+v8CICQa7MzoL5__1NqJs= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/BDuRgn+v8CICQa7MzoL5__1NqJs= new file mode 100644 index 0000000000000000000000000000000000000000..e49acf7983a7c79884a94bd0694a471b28e9c1b1 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/BDuRgn+v8CICQa7MzoL5__1NqJs= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/DiIOxxa_zrAqG54j1Qwma03rXtU= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/DiIOxxa_zrAqG54j1Qwma03rXtU= new file mode 100644 index 0000000000000000000000000000000000000000..e9e760818c198724808ab59592b4f9a0e455d662 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/DiIOxxa_zrAqG54j1Qwma03rXtU= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/Hu6J9_P1Gxk2vz3u3VGfEvB7Utk= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/Hu6J9_P1Gxk2vz3u3VGfEvB7Utk= new file mode 100644 index 0000000000000000000000000000000000000000..6bb2c4931c54608370e28c790c0b8421d5d17687 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/Hu6J9_P1Gxk2vz3u3VGfEvB7Utk= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/PpI17wHXkjeW2NVZQ+LBdtqx2BQ= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/PpI17wHXkjeW2NVZQ+LBdtqx2BQ= new file mode 100644 index 0000000000000000000000000000000000000000..8d3e7638baeb3c849d39db433fa0aeb289da3a72 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/PpI17wHXkjeW2NVZQ+LBdtqx2BQ= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/ThGtOKHfY8t4m0c3fPXONN+hwEc= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/ThGtOKHfY8t4m0c3fPXONN+hwEc= new file mode 100644 index 0000000000000000000000000000000000000000..25547cc989729eb7342fb50a12d5a4e4e9249857 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/ThGtOKHfY8t4m0c3fPXONN+hwEc= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/UYENskPSsCzUGp2EZPQ1saEWC4E= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/UYENskPSsCzUGp2EZPQ1saEWC4E= new file mode 100644 index 0000000000000000000000000000000000000000..2b56acdbf38ac42b3f16808ecca74660a39dd4db Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/UYENskPSsCzUGp2EZPQ1saEWC4E= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/Ur2zihNjWXKafsKY_s1yWkXsH4g= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/Ur2zihNjWXKafsKY_s1yWkXsH4g= new file mode 100644 index 0000000000000000000000000000000000000000..a19a2a515c241545db10770191aee62d127a7b2c Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/Ur2zihNjWXKafsKY_s1yWkXsH4g= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/VZd7HZcXiSNqKQD4ChsYI7QVBps= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/VZd7HZcXiSNqKQD4ChsYI7QVBps= new file mode 100644 index 0000000000000000000000000000000000000000..c063f2b9a438be31d268d2f78a4fc87684f50143 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/VZd7HZcXiSNqKQD4ChsYI7QVBps= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/VeUnTgq8KmpeH6p2LKVPsOWGxs8= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/VeUnTgq8KmpeH6p2LKVPsOWGxs8= new file mode 100644 index 0000000000000000000000000000000000000000..fc0a247284ab6436e5b22a2a7e8a9ca3d47a73a5 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/VeUnTgq8KmpeH6p2LKVPsOWGxs8= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/WCbtSpJcj3TMVr4CEF3ReWtbb6g= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/WCbtSpJcj3TMVr4CEF3ReWtbb6g= new file mode 100644 index 0000000000000000000000000000000000000000..2dae2f9b2414bec6ba78cd4a2be6ced63dc43b68 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/WCbtSpJcj3TMVr4CEF3ReWtbb6g= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/XJtESMpD1d26QjAwDtRAP7x28yo= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/XJtESMpD1d26QjAwDtRAP7x28yo= new file mode 100644 index 0000000000000000000000000000000000000000..b12b28712defb538d3a4d1a7b2538f26d016ce1d Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/XJtESMpD1d26QjAwDtRAP7x28yo= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/XRacniRvzIHcPtIa0hJBwo4kf60= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/XRacniRvzIHcPtIa0hJBwo4kf60= new file mode 100644 index 0000000000000000000000000000000000000000..5954c1681f64385cae853e15802902b4cd4c42d8 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/XRacniRvzIHcPtIa0hJBwo4kf60= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/ZQuIerbLG_308MV9SPzPA2C_Dbs= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/ZQuIerbLG_308MV9SPzPA2C_Dbs= new file mode 100644 index 0000000000000000000000000000000000000000..083d96b02d1ac97b392db8a58c3809011fec3fe0 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/ZQuIerbLG_308MV9SPzPA2C_Dbs= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/aWgUWNvZDTTCbJtEAU+toLC+HrY= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/aWgUWNvZDTTCbJtEAU+toLC+HrY= new file mode 100644 index 0000000000000000000000000000000000000000..b6ac9fe4bc9b945b5e4dad64ee91e1f3ec46519a Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/aWgUWNvZDTTCbJtEAU+toLC+HrY= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/bNdaE6pEvOqpV9nROmjUD0qPKUs= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/bNdaE6pEvOqpV9nROmjUD0qPKUs= new file mode 100644 index 0000000000000000000000000000000000000000..06e914d8c5b0714573d2436a408a8955ba62c96e Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/bNdaE6pEvOqpV9nROmjUD0qPKUs= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/bpSydQ++vsdCAiAGwZD+cBH2qSw= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/bpSydQ++vsdCAiAGwZD+cBH2qSw= new file mode 100644 index 0000000000000000000000000000000000000000..1423435f40f6c20d141890fc00bf07a0843421ed Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/bpSydQ++vsdCAiAGwZD+cBH2qSw= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/by6HqMeBl3AMriejnpW98pCTOmE= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/by6HqMeBl3AMriejnpW98pCTOmE= new file mode 100644 index 0000000000000000000000000000000000000000..b178df1b80427afd9b34186b5c5cb58f8f8bcbb7 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/by6HqMeBl3AMriejnpW98pCTOmE= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/cddMg8LpVSqaZ+AKNyl00gPum5Y= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/cddMg8LpVSqaZ+AKNyl00gPum5Y= new file mode 100644 index 0000000000000000000000000000000000000000..2365cb90f9a8e5ae5c9ba28fc6081e6425c71fb5 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/cddMg8LpVSqaZ+AKNyl00gPum5Y= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/cy8BEcobu7FZ1O1oUd7Z7FpJ_FI= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/cy8BEcobu7FZ1O1oUd7Z7FpJ_FI= new file mode 100644 index 0000000000000000000000000000000000000000..4e97c260f8abcdda1473ee737efda27bbd30f6a2 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/cy8BEcobu7FZ1O1oUd7Z7FpJ_FI= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/fI5k8yFixBgxfWM828U+8mzuf3w= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/fI5k8yFixBgxfWM828U+8mzuf3w= new file mode 100644 index 0000000000000000000000000000000000000000..e7159a9acf6fb869f9a03cf359ebebf216ac6c80 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/fI5k8yFixBgxfWM828U+8mzuf3w= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/fn+2So7L6qSWjHFEBrL23LQoUKk= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/fn+2So7L6qSWjHFEBrL23LQoUKk= new file mode 100644 index 0000000000000000000000000000000000000000..f61d7629ed6d22376f6761ee25b5c1fee38c2c48 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/fn+2So7L6qSWjHFEBrL23LQoUKk= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/ipiWRYA8T4UESAKyV_A7BL8a8iE= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/ipiWRYA8T4UESAKyV_A7BL8a8iE= new file mode 100644 index 0000000000000000000000000000000000000000..a69b1ec0f3c0ac131fb045379a0c29a68fad54a0 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/ipiWRYA8T4UESAKyV_A7BL8a8iE= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/kLUEwkJ1jGKKFyADhtbl_7NT0rA= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/kLUEwkJ1jGKKFyADhtbl_7NT0rA= new file mode 100644 index 0000000000000000000000000000000000000000..32d47c06c1b5cebcfe71d9fcbc9a8f085d231765 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/kLUEwkJ1jGKKFyADhtbl_7NT0rA= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/m29ktPSKU9Flbdip1B9ElbV6rVo= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/m29ktPSKU9Flbdip1B9ElbV6rVo= new file mode 100644 index 0000000000000000000000000000000000000000..27924dd4b8463d7585b390accdb578974522d32f Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/m29ktPSKU9Flbdip1B9ElbV6rVo= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/mJQ766RMvHBx6Q2zjhHw_5KBleA= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/mJQ766RMvHBx6Q2zjhHw_5KBleA= new file mode 100644 index 0000000000000000000000000000000000000000..87586a52124f49da61b71f1cfd5440882d14982a Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/mJQ766RMvHBx6Q2zjhHw_5KBleA= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/nPCj9JL75bkx1xvZB8FkPeetRmA= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/nPCj9JL75bkx1xvZB8FkPeetRmA= new file mode 100644 index 0000000000000000000000000000000000000000..1c79806c654bad3ecaeb245492ba1602fa9a25fa Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/nPCj9JL75bkx1xvZB8FkPeetRmA= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/sH+AMww8667Mr_2bDeZlM_1DHeg= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/sH+AMww8667Mr_2bDeZlM_1DHeg= new file mode 100644 index 0000000000000000000000000000000000000000..371b44143fa1f91248a4859d1fdf5079381c4319 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/sH+AMww8667Mr_2bDeZlM_1DHeg= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/v8OZlqc0m5XBbhWigcLE5AvotTI= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/v8OZlqc0m5XBbhWigcLE5AvotTI= new file mode 100644 index 0000000000000000000000000000000000000000..483b42ca66ca7a395c691c1db662be4130d7f143 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/v8OZlqc0m5XBbhWigcLE5AvotTI= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/wjypeEl8XD+uTpQYSTIJtG7jBfw= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/wjypeEl8XD+uTpQYSTIJtG7jBfw= new file mode 100644 index 0000000000000000000000000000000000000000..3c086f36853f76d821f72d27b069f377e3850ab2 Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/wjypeEl8XD+uTpQYSTIJtG7jBfw= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/y83GoHRTgWt8pdPUNeSJVfLOhtI= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/y83GoHRTgWt8pdPUNeSJVfLOhtI= new file mode 100644 index 0000000000000000000000000000000000000000..c3f7927db3e25886858edde5878a859693459c0c Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/y83GoHRTgWt8pdPUNeSJVfLOhtI= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/yn1egIb_IAfUl99sK0ShUyegH9Q= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/yn1egIb_IAfUl99sK0ShUyegH9Q= new file mode 100644 index 0000000000000000000000000000000000000000..0fb7130e1240a71377f5d6cf906b9517228b773e Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/yn1egIb_IAfUl99sK0ShUyegH9Q= differ diff --git a/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/z4N2nM5RN8eWAZwqj69ueUUN8Is= b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/z4N2nM5RN8eWAZwqj69ueUUN8Is= new file mode 100644 index 0000000000000000000000000000000000000000..e27d24ae5f0ca276b7d85bf70f9d1cbecd52dc1d Binary files /dev/null and b/SmartFritz/build/intermediates/incremental/release-mergeJniLibs/zip-cache/z4N2nM5RN8eWAZwqj69ueUUN8Is= differ diff --git a/SmartFritz/build/intermediates/instant_app_manifest/debug/armeabi-v7a/AndroidManifest.xml b/SmartFritz/build/intermediates/instant_app_manifest/debug/armeabi-v7a/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..0f99d88f7d5c9be2c58ab566b968138f17219d1c --- /dev/null +++ b/SmartFritz/build/intermediates/instant_app_manifest/debug/armeabi-v7a/AndroidManifest.xml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/instant_app_manifest/debug/output.json b/SmartFritz/build/intermediates/instant_app_manifest/debug/output.json new file mode 100644 index 0000000000000000000000000000000000000000..c4da5b4ba3acd074e74d36f3a9a6bf5a6f40768f --- /dev/null +++ b/SmartFritz/build/intermediates/instant_app_manifest/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"INSTANT_APP_MANIFEST"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-debug.apk","fullName":"armeabi-v7aDebug","baseName":"armeabi-v7a-debug"},"path":"armeabi-v7a/AndroidManifest.xml","properties":{"packageId":"org.muctec.smartfritz","split":"","minSdkVersion":"14"}}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/instant_app_manifest/release/armeabi-v7a/AndroidManifest.xml b/SmartFritz/build/intermediates/instant_app_manifest/release/armeabi-v7a/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..5e41bb9dca16dec3bdbbdc21045123f4231a40b8 --- /dev/null +++ b/SmartFritz/build/intermediates/instant_app_manifest/release/armeabi-v7a/AndroidManifest.xml @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/instant_app_manifest/release/output.json b/SmartFritz/build/intermediates/instant_app_manifest/release/output.json new file mode 100644 index 0000000000000000000000000000000000000000..11aa432dc45cc15c7b394fb763e78f686366c977 --- /dev/null +++ b/SmartFritz/build/intermediates/instant_app_manifest/release/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"INSTANT_APP_MANIFEST"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-release-unsigned.apk","fullName":"armeabi-v7aRelease","baseName":"armeabi-v7a-release"},"path":"armeabi-v7a/AndroidManifest.xml","properties":{"packageId":"org.muctec.smartfritz","split":"","minSdkVersion":"14"}}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/instant_run_merged_manifests/debug/output.json b/SmartFritz/build/intermediates/instant_run_merged_manifests/debug/output.json new file mode 100644 index 0000000000000000000000000000000000000000..49b93c29ac81fa520774dc5d54b4ce9637c7e230 --- /dev/null +++ b/SmartFritz/build/intermediates/instant_run_merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"INSTANT_RUN_MERGED_MANIFESTS"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-debug.apk","fullName":"armeabi-v7aDebug","baseName":"armeabi-v7a-debug"},"path":"armeabi-v7a/AndroidManifest.xml","properties":{"packageId":"org.muctec.smartfritz","split":"","minSdkVersion":"14"}}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/instant_run_merged_manifests/release/output.json b/SmartFritz/build/intermediates/instant_run_merged_manifests/release/output.json new file mode 100644 index 0000000000000000000000000000000000000000..5637a0c52d9f3d2772b3b3515d94eff52d3bd908 --- /dev/null +++ b/SmartFritz/build/intermediates/instant_run_merged_manifests/release/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"INSTANT_RUN_MERGED_MANIFESTS"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-release-unsigned.apk","fullName":"armeabi-v7aRelease","baseName":"armeabi-v7a-release"},"path":"armeabi-v7a/AndroidManifest.xml","properties":{"packageId":"org.muctec.smartfritz","split":"","minSdkVersion":"14"}}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/core/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/core/R.class new file mode 100644 index 0000000000000000000000000000000000000000..f74ab6f11a8cb2225f6af761a83c973bd0165fc0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/core/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/lifecycle/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/lifecycle/R.class new file mode 100644 index 0000000000000000000000000000000000000000..c52407bee10979a39a34f9d26049fdf41fbfa1dd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/lifecycle/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/lifecycle/livedata/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/lifecycle/livedata/R.class new file mode 100644 index 0000000000000000000000000000000000000000..80ab4ab51e4d034159e208b5299c7ee6549dc314 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/lifecycle/livedata/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/lifecycle/livedata/core/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/lifecycle/livedata/core/R.class new file mode 100644 index 0000000000000000000000000000000000000000..85462a4fc3846f2cb9fd033516d658d2088c9175 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/lifecycle/livedata/core/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/lifecycle/viewmodel/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/lifecycle/viewmodel/R.class new file mode 100644 index 0000000000000000000000000000000000000000..53678cf245b67d15072c530d1bdeedb39b33eae4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/arch/lifecycle/viewmodel/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..9b1addaca0abb1bfe94892f3058138dac02f68c6 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..fc951a80ac21afda94eed2d87e3e38036730e277 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..ce22937c9174ff1d115e1fa67bd01517b8e59e21 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..f56b0c8bc3d39763ef1cdac397851bbfa983ca68 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..b6e2c7aa458887b5931145fe44f01d69fa791e24 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..87165ea310f8a22d086c959cb71c8bba1789ab5e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..810b99e804e8e4edc9ab2f8b22efd9d01b31ef40 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..44a86ac0a0f50055fcaf719ef29aabef0c33d9d0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..bf655b7f71b1c58b7594c4d35614ee616af58734 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..04a0d0a74ed4007162f91e711b8602c4a4e29f5d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R.class new file mode 100644 index 0000000000000000000000000000000000000000..0874dd72b022a0aa39888c7d81a9e33133aec112 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/asynclayoutinflater/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..0986c56b17870cd11f564400137f092b6bb618fd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..8d61fc48d0360ee177351756a67960ce15771bd1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..17610e605b49a9fb6097b75460f99104ac6967e3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..73e9fd0cea7a34fc48aa5ef607d5f8d363030da9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..75eb74e4a8664bb70d416f6f85958198f941ef40 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..e0db51e659bd3abcacf863d6e98edc824b6db402 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..9d3884b6c7a9f7652aef6d1a4b24d8bdaa2532cf Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..0ae046887acb1fe1a5ae9b2c8183b9abda438dbd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..3b7b149edfdd6b0f3642d4323ebb65df26202b4b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..3ee26c1d62b94685f1f7ba477045a2d0798dea4c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R.class new file mode 100644 index 0000000000000000000000000000000000000000..57ad7c875d92aab1a65e0f6a3cba4d0f3208fe08 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..63696bfbbe8bb65d74a31531d059c874122c5c8a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..e36397ad639b9925eee68b61ee7db0deb85a360b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..547392442f53fb033988bec5bce713173b076429 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..a06b62719c96d0b36c23eddc04133101e1381e7d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..d618b4f4aefc4b85d3da6b61717989b9c9af24ca Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..e259ac6fc20aff89e0f07f267e9a641287663b4e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..aca9dc936282de0a3bef0217a6a5f4e35f6d7195 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..71d4acac8c897af988316aedd1b274fdf3943f64 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..36957d2dbcec8951de7d8bf15eb5bf800a25f361 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..f3cdb692e47bf7cb2deecf92e8dfd5bc416cafd9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R.class new file mode 100644 index 0000000000000000000000000000000000000000..8fbdcbb932c4992e4775122ff42ed0b3264daece Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coordinatorlayout/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..101fd5647eeee5b3b4c420836251b3fdc17016da Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..c02ff706beb654bd9b60b13a0b1fe676eec03973 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..4f5f51aee457331f96f83f43bd5864c5eefc5125 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..e0506cf323efc2869c36a6b35e159e39fb69f978 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..885575c6cb91999815776ced145894a4649c0fa2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..ea27ffe0efe3f358495fcbde9bc64acbc622afa9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..7b76e32c60ea512962bdd296d6e6bd8ec4416251 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..e072425d3b62a08c54887ab142ed46041e02db8b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..94532e57829fcb185932b46d5a19596357f541ab Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..6f5b4d672a74b9f0dfc4914d808a6d67b2c38327 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R.class new file mode 100644 index 0000000000000000000000000000000000000000..120ef9356182dc7ef142f751600543277380ba0a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..0cc85f5ddd64dde4261941d66866f62669167458 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..8aa8f7bcbb01a3892d0979583968d40c177fbe7d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..7b8a2fa922e1c601567b9fab433ee6fd032171e9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..5b0a7039babb338b9d4f28cfe853f139dc50e1be Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..78f5c73b89dc3079cb9f40bcfd17b1934f70ea36 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..cc760b69f11ebea7bed2abb890c5e0e14cc5ed26 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..bc6984f096e8a6475dca796e99fc9b005c49a9c5 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..430dd2568827be200fc7e13a364f62e9b99fbddb Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..0f292ad546cc56cd77f7f02c59fc28cc51b6b2bd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..da2e997f1d9af32ddcf7ae2c79bbbef0db2f36f6 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R.class new file mode 100644 index 0000000000000000000000000000000000000000..a92c243d303090cdcb137caa7bf13d754d6a5454 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/cursoradapter/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/cursoradapter/R.class new file mode 100644 index 0000000000000000000000000000000000000000..f9da80ed6b30b576104cca25e73412958f45ebd2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/cursoradapter/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..bb983a3062ae872bcaf37a409275b9d56c521c01 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..6de2b21cd7b79a735704fdbf58f5aa433f1aa81f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..b73a61e4c48f8adcbcdc486fbcc9a7e0e368cb4f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..d21243f6306563a4823db86eef10b2fa5c49aaab Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..0d2b2dbb66ce8fb1a756e09eeebd491372f4dfec Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..0a8133573f53d25703973c31ab52320332dbaf4b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..99a1d7a5a11efadc54797aceccf5254fd48b7dfa Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..bf6ba070a5f2ab94f21696b4d0f1a96ab388c2ee Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..75169fd6509a423122f62be666b65790209a91d8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..70a239a87781009aabacfb46dac77b400f62aa2d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R.class new file mode 100644 index 0000000000000000000000000000000000000000..e47774a7e2084b99a5184606671944942eccc906 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/customview/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$anim.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$anim.class new file mode 100644 index 0000000000000000000000000000000000000000..20db283c38269a2ce8cfcb04c6a606973a584f08 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$anim.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$animator.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$animator.class new file mode 100644 index 0000000000000000000000000000000000000000..84f5c882ca861ea804c19c6b62df9c197b995fea Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$animator.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..358972ad96a050bb0cc763a165668cb95fab3c4a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$bool.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$bool.class new file mode 100644 index 0000000000000000000000000000000000000000..aa64aa7217eb8ecf98c1d4c307474383e4cab150 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$bool.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..d2714942d5322c4fc624ae899958f1fc2ebc7d88 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..6ac9031c760eeb81ccfc37573c9e197a92490a1c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..bfbf8afc0f727780139632e834b1dcaa1c9d6f70 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..1df0aafa97599cab65c40807f8b8f5d2f9f3651b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..a1cbf797e8fb90815ffd98b7d3b7cead9be8a985 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$interpolator.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$interpolator.class new file mode 100644 index 0000000000000000000000000000000000000000..818d6a1bdbf787aae990ef0882d242ca2af1ae66 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$interpolator.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..1ea1d10142d9bb10de9e81560fd28a844a4b5565 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..d0aea1cab8c7b98cb7427a258cacc64c4fb83329 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..d3ecf1507df6e964dc15efeb543e28f96d39f093 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..9403ed5c8849551aaf3cbe8cde9f263ce4bca3b1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R.class new file mode 100644 index 0000000000000000000000000000000000000000..d3ada39467504838c8fd4a03ffb2fbf4c7b9d312 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/design/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/documentfile/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/documentfile/R.class new file mode 100644 index 0000000000000000000000000000000000000000..8808028fe4fc508645911b2a8e589a9f6e2fcce5 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/documentfile/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..c4ec9869dccd43401adb440fe178f10b02926cf9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..3964a164c4dcc1cad72bd76095b6a1ab725a79fc Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..c233e64540af0c9e19732897927404556c046c20 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..2e2aa31b57072339ae2fd79ba6f50851e8410b17 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..980caee13101992b5c516084e8aba3810df3251b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..60409999d6bb2cc5d42de62af95ade05a15ac62b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..70a4116d451cd502d279012aaa82e9a3a226b8b2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..c243dacf50cd68475a8d1d9cd7e4bb3f7767f417 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..22c2416940afd85d5e11ef4bdd0ef21c724760a9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..f1d4c5e46f6f22a3b897de77f6aa3f9d4c9ba350 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R.class new file mode 100644 index 0000000000000000000000000000000000000000..ce9c72ab1358f2020f39c7f7f5da0a8241685526 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/drawerlayout/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..a76d3c2de593dbcee5d920702e14822d06118f4d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..124f466813c394b39382173d4e261fac8f4f5e25 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..318c2c6b29f853d1284ddf840c18d56ee92c621c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..62fdcac29e95070a686f03e10083c1163fa972b7 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..4fe5bc5f3c8e94fbfe05ab198e5703beb99dff24 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..a6bb6ecb54ca626c52ae2a60e04defd22f0047a5 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..fbcd25f13ae7e229f4dda3f9b02d41baf3bb5d44 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..0f7ace1b00c068e770e063856f4a30b3b53fc6b2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..93947d7ba4cad076765c45fecd73152ec94d4aa8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..992ae039f9168d3755e36ee992f81dc11c32a4fe Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R.class new file mode 100644 index 0000000000000000000000000000000000000000..030d8ce5b7b02713b1df984957795264e2e2725c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..8a0dd3f2114c8f60751dce746c960bd6d659fc7b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..789c46131de5d09877803ff8ead5d2b34caa685c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..ab98e7b39481da5de39bf75d0039b5afebdc8886 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..229c6b5359ad1cf82f813107a5008445dddb7581 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..fa9d2bc5eabc12fed97a0dc3d8adf1482e9deebb Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..1708a15e99ba69d3897a873dd6ac329a7389b5c9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..1ba578c4df7a946abcf82bf257f6b755862804e0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..b23f9bb7fcca4b541a862d9f3b501eb40d779812 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..0e76c9e438689e1b6c98f94887129c17aebb09c2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..c86a0268a594f7d7160c9fd5a9549de80457a244 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R.class new file mode 100644 index 0000000000000000000000000000000000000000..02194822e069efc8b9fe8ead11a9f5b6b8aa00f9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/interpolator/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/interpolator/R.class new file mode 100644 index 0000000000000000000000000000000000000000..0a83688a25ec6322ced87175edfbdd3f11856e41 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/interpolator/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..f2f4765fd37f7d6a853ce873af25f6bf8cd338fd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..72041bc111888aa0fc60338cf26b454aa436b999 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..ee5374a2155f443cf5ed593314e7bd18440f0c36 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..d66daff58cd59a693763a855abe788e772def628 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..00d19ac0efd6d33d2b6fe483568777fea6553d47 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..36d13807dc452ccc18109318959e664865b87b85 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..f65e6810857bd80cb92022de183e8af181bc4036 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..9980e337011a8c61a4fa2861ee0016ae57f0e156 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..adbf6b6b6dd5a5eaa83c2cc6a42d264bdad035be Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..65f6fb63edc59754eaa88df9625b4e82b436ca8e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R.class new file mode 100644 index 0000000000000000000000000000000000000000..70da916851a4370cf8d972448234c1016eedfd02 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/loader/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/localbroadcastmanager/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/localbroadcastmanager/R.class new file mode 100644 index 0000000000000000000000000000000000000000..a29b9745851083dc50bf1ed421c79b4b67d8c57a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/localbroadcastmanager/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..13fd05cb13ecaea8a917775934485d5204231d45 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..4c39e429a5493104a527b583981f335d883fdb50 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..b1c608a33703980ef964c6329178e45b6cf1bce7 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..992931e829130ba5c6e60f3dd4f911c557874a27 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..0f26106bd6bde7db1dd35a1693e237957a07d7a7 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..b7711eca20e2c5f3bfbdedf2de4ab7eec89a96a0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..66ab73391fea36237f0685fa4ccc0bf2d4e2584d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..528a95b94efc84d3c440f7afdd6266b47742c5cf Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..f70a92b0c96c9e9cc6e1bfc5753ba5c319aa0320 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..3b377b652f4878a5da3172b4681b3980532dd4d9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R.class new file mode 100644 index 0000000000000000000000000000000000000000..9a085d00b2716229649cb8cb628b20695f8a6642 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/print/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/print/R.class new file mode 100644 index 0000000000000000000000000000000000000000..b8761d9be72c593ce4d0143d7f514114ccfa216e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/print/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..4803596d7cede0a583b1cb543cdaa0ac07be3514 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..d732c7d88fd993b616ca20b6fb7c974cd4555aa3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..40a6a19c24f365469931c6a62e6cb447204b6516 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..8effc14dccfe3bcb55f8c575d027153392dcd5ba Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..1d596cf6672affab716e931f63ffacd259e5f4ad Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..caf9fcae7afa189a17830ff7ddd30ed337d7bcde Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..68a394ee010e06d6cc8e8740489e653c77d56479 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..817f1f37337e195300c7dd2e675f40c3b62cddc1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..743f44e5bbdc779c4179357aaac97f9170450c06 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..fb529e882149babf8714b672ced0c7ad071b1666 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R.class new file mode 100644 index 0000000000000000000000000000000000000000..155b8a9c78aee07c1f0088e600a50266a7c1b2cc Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/slidingpanelayout/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..5d16470cc5b99915c36bb803eae85cacd5568781 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..12fbd84025afc6e72c3387e3ff6a2482813f278f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..bba6c82c6fa07ccc75a352268dce47c311e38480 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..7843a924ca8996df0cdeae1ec796342ceb35aeb9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..2f5c6957f4f8b9ca966ac2eeb5a5eef89024b28d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..742f7a6e74197d21694821ac359fc98a8cf8f1dd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..03848f73af4be6d7e4cceb5d58251f12a99b6e52 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..6c49c3076775ce1686db083acc166f0c2840ceb8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..f64d7029db7d4078211b251793d205d7e61743b0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..fc4e1fb5a32507677a8867952107231db9c491c8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R.class new file mode 100644 index 0000000000000000000000000000000000000000..069da82b1ee95355e658c43d0c6cfe64a99db3b3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/swiperefreshlayout/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..bb49984541d040585b03bcc21e1463ddda2ac6e6 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..dec31d26ff26022435919b55c546296a83f1a8f4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..997e36d06168b6aa844d9f0c12137062b4019ab7 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..b1fd8875134c7cab58b77458143ceccfa9291652 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..c801ad0342f3624565e1eccab49bda98a43dab9e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..e8e6475c0519f35a476d1a6dd306a76fc4e4f8a1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..bb0e6357d56619a287bd261ffaec738b48c03837 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..c0af8d26d483d1ffa3204c18b6927aba8e36bf9e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..e03cffe1fe8bf06b7a30740a6af6e75ae44bc4d1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..5590eefee632af23ac0b288967d96a012beacc60 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R.class new file mode 100644 index 0000000000000000000000000000000000000000..889270a78f047b7c76231f3bec891e5910e295cd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/transition/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..b8911501d45c5d9135b4b9685c4a44b431246266 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..cdc0f7036a47d55134221d81bed8b63bb31e73a3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..8b4b7205f4e9c92fe36b2be0bde15bbce3f0f7f3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..7f94ae60fc1cf858387dab285cb358e2dedc3d77 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..97715270c4474ffd11c64a4a0126cc47a637d6a0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..c5ad5810b3f88ccea933de98e628ef1ac1f21f9e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..653d7a7e5ad0b2b0f344d5f87a7af3cc1e2a1128 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..c2feee490f39ef24f10b822e6eba4df8ed88568f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..551bdd777d16716552cd54caa01d29830ca27707 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..40743b2e3bb3554556ac6b57e92d2bb4752fb3a9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R.class new file mode 100644 index 0000000000000000000000000000000000000000..ede3fcf117cdb3c86143dd184fd6428edb4823b2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$anim.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$anim.class new file mode 100644 index 0000000000000000000000000000000000000000..1ab5b251b1280f4b973b8e079808389057104e2a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$anim.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..7b4b88c55682259c15ed7fb8c391bfe5fbf02e31 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$bool.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$bool.class new file mode 100644 index 0000000000000000000000000000000000000000..aefc56914fcf22ad089ab2b3085872576d3724dc Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$bool.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..5d2eecd270f5c018c2b678de5691cae7e5f273b9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..cb9fbbb453122056b698364dbcbb33aea780394d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..e6ec03b12782ce7769725442c12aaca661cd1799 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..c2266b181b0293521e581e8a52694b4e8c5b77ae Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..4a3c2b25bc30fdaf27e537f4df87833da33a252c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..99c6fd6887c32c52c2b9d95b5cfc21cbc522af68 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..7ee9955bd0805c9d58b4fcd78d1c94ce00cbcee0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..c397c08b1b039923a2148d8f04c20543ccb4afaa Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..aaabe66f18768eef0f54a112df2c112fa783e538 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R.class new file mode 100644 index 0000000000000000000000000000000000000000..c2e3955c44fbfdcc86dd4a2313b1eceed957e65a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..70c5283983e6e0011f73b927e37af1093d68e1d9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..0dd8ce50a2a58b122c7c80ba5af0c35cfe8720cd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..90fc1aed03300e3e423554407ee1f84862768e5d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..56febc3ae1352c06535e619d9074ae8834890773 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..3dc7b2c3ddacf53cab87f046b811a80df27eaadc Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R.class new file mode 100644 index 0000000000000000000000000000000000000000..18455b8fdb636f373df7de619fb97d74b196e290 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/cardview/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..99ece252b3402806622869201f4761ad2e6b70cf Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..10cbd753a9cfb9e105df95d823510c9207227326 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..6ebb7f3201f30c3909a5b3f905d0e81e1899a3d1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..fcbb57b95cc64a82158be71fe5c7f5e3c2159e29 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..dda203132801448f8cc72b5bf2a82e8a6c87e424 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..7f54f7192e59c8720b60ffa281c8850b01027797 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..631447a58357b6e4fc94412b9883ec330b91d836 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..9d6fc03e8d2c688722468a8e6d2509a77af055b4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..9a0db56f7bf9b6057dba374b24304b556598c2f4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..261571849095e11ee843b90dffd1e9676eba23f3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R.class new file mode 100644 index 0000000000000000000000000000000000000000..9796eb9f0bd6bbc0c6d871dd21511a14b24b5779 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..61184216df5226a070cb05087e5ca7c951d8dfc1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..a8fd0287f886d92e7d9724ca001a06a6d14aa1bd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..0320f03fc2df7756e5d04a91f18e4616815c4cbd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..d3501ef6f6125f4b62af0da2e844546028e5de01 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..d78d236d19476c25dd0845092e307c835dc26214 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..601bb633c89ede91ead601cbdee6f7035169b2cd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..73d3427930767d28b029476dd36e758829eaa1f0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..65e66adba2feca6ffeae1ca9126abaf62daaee92 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..80e9cb7f2ce4b0209b23d97f64ea0bf684a8f2ce Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..d40181c05ccaafdb314d744d900e7ae3a67ca7d3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R.class new file mode 100644 index 0000000000000000000000000000000000000000..4785c9b11241cd90c6c337880110c144b361dfb2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/viewpager/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/versionedparcelable/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/versionedparcelable/R.class new file mode 100644 index 0000000000000000000000000000000000000000..79a4038d381b645517822d5cacf711426fc720aa Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/androidx/versionedparcelable/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/App$RLAppLayout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/App$RLAppLayout.class new file mode 100644 index 0000000000000000000000000000000000000000..4e9cf580624755939cabcae8770b60cb24882e5b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/App$RLAppLayout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/App.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/App.class new file mode 100644 index 0000000000000000000000000000000000000000..05a9735bfb011d92bd78c765184ef3e0aa4dae18 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/App.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/BuildConfig.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/BuildConfig.class new file mode 100644 index 0000000000000000000000000000000000000000..ebb3574443a8df5a209a6cbe068ea775137cf83e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/BuildConfig.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/ChildInfo.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/ChildInfo.class new file mode 100644 index 0000000000000000000000000000000000000000..7bf7fc12f49fffc91b2534f3c8f01b47363dd01d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/ChildInfo.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/Const.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/Const.class new file mode 100644 index 0000000000000000000000000000000000000000..901ef72d9509f4fddb8e53e399d0a66e1cccbb38 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/Const.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/Controls$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/Controls$1.class new file mode 100644 index 0000000000000000000000000000000000000000..4466e6e72b5c79a084b6a92f6f0bec8ce5292d33 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/Controls$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/Controls.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/Controls.class new file mode 100644 index 0000000000000000000000000000000000000000..61a9f9a87310c7c0ee6d140d9604eff5b579ef7d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/Controls.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/ExpandableListAdapter.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/ExpandableListAdapter.class new file mode 100644 index 0000000000000000000000000000000000000000..469d088ef62a306be3958776318e750ae5fa0a24 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/ExpandableListAdapter.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/HeaderInfo.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/HeaderInfo.class new file mode 100644 index 0000000000000000000000000000000000000000..6664776ee368bd2a4c3b97304e3eeb14a8603d40 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/HeaderInfo.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/LConst.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/LConst.class new file mode 100644 index 0000000000000000000000000000000000000000..1d98a2d596742c4d655984be11c866433a15af79 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/LConst.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$anim.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$anim.class new file mode 100644 index 0000000000000000000000000000000000000000..ddcdfe98b0220a6196b9c5bfaff481ccb819b707 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$anim.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$animator.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$animator.class new file mode 100644 index 0000000000000000000000000000000000000000..0ccb7807fa8816bf41a9ac9798984aafef06cd45 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$animator.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$attr.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..23021614685fc4902f3c9ac55ba84cabf4cb8f87 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$bool.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$bool.class new file mode 100644 index 0000000000000000000000000000000000000000..418d78caa7cd29439af0d54f2b878bc09e988b39 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$bool.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$color.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..94ab31d3c4a3d2721fa0e5d73b984dbbf26d8503 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$dimen.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..4ace5dcb60310d3ecb81f8cd579958196ed1dc98 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$drawable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..e91a5d01751322f9c20d4d166e19f482dae737e5 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$id.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..048b35308a2e5b521b8d8cb67c6b15c96ca65159 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$integer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..456c8124c37e0550a4c0e3dfd9dacffcd120fce7 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$interpolator.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$interpolator.class new file mode 100644 index 0000000000000000000000000000000000000000..69e8b571347fa8c369380b42d55760a4653b6904 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$interpolator.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$layout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..51fce6fc3e20aa090fec0f699a4a33718d70b4e0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$raw.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$raw.class new file mode 100644 index 0000000000000000000000000000000000000000..6947c9e40627a83936cd9cadb969283022d6ada3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$raw.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$string.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..87a08666304e6e32e3d37a8faf2ab0d7ad34b7fa Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$style.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..d2038f15eb079f22fb50ffa4b687e3bd161d53f0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$styleable.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..b0adc4c04dd9b412008043030fd7368e37bdb69f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$xml.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$xml.class new file mode 100644 index 0000000000000000000000000000000000000000..b70bbb3096478c42fbbe1bec81c7169eff6b6e7c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R$xml.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R.class new file mode 100644 index 0000000000000000000000000000000000000000..9329a8eaa11d9dd3f3b2ca4a54636c6e76abe00e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/R.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jButton$1$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jButton$1$1.class new file mode 100644 index 0000000000000000000000000000000000000000..cc60ca9e2bd1722d361ba5f07351bdd71320e461 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jButton$1$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jButton$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jButton$1.class new file mode 100644 index 0000000000000000000000000000000000000000..5f5134da0482870a52768ae4841a3b8f73a9ffcf Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jButton$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jButton.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jButton.class new file mode 100644 index 0000000000000000000000000000000000000000..7ebd7e30bb5466b5c3b602bff51b8b270e7b226a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jButton.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jCheckBox$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jCheckBox$1.class new file mode 100644 index 0000000000000000000000000000000000000000..8f0a779c2eec02348dc3407e50d1aaa9a157aa05 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jCheckBox$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jCheckBox.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jCheckBox.class new file mode 100644 index 0000000000000000000000000000000000000000..18b2d7e87f60298af52fb50f8ec5a45dfaf239ef Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jCheckBox.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jCommons.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jCommons.class new file mode 100644 index 0000000000000000000000000000000000000000..6dd119e072dbf8e4da7cac585115e24219eb712b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jCommons.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$1.class new file mode 100644 index 0000000000000000000000000000000000000000..9aa991d966a904dfb633c9c7659490ce44050c48 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$2.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$2.class new file mode 100644 index 0000000000000000000000000000000000000000..c6b061be264d27be2a0cfd50ba15328600d9646d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$2.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$3.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$3.class new file mode 100644 index 0000000000000000000000000000000000000000..95faf5cbb77f4497c923e56521fdec1434f1160a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$3.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$4.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$4.class new file mode 100644 index 0000000000000000000000000000000000000000..b86c352e92d09843a38aba2111f79c8c9775a560 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$4.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$5.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$5.class new file mode 100644 index 0000000000000000000000000000000000000000..7d7c468607c5f5021e5f484886eec9e8bfc7e8d7 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText$5.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText.class new file mode 100644 index 0000000000000000000000000000000000000000..89578a94ffbb64f907368c85cf49e7ec65fc895c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jEditText.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$1.class new file mode 100644 index 0000000000000000000000000000000000000000..d901997b5b9574f8abdcbcec2b7fb55a3a210408 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$2.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$2.class new file mode 100644 index 0000000000000000000000000000000000000000..b1af507a7155af78c370241f522eeb6894f1d45d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$2.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$3.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$3.class new file mode 100644 index 0000000000000000000000000000000000000000..b2c53861291f82b434c5f8b4e65a45cdfae95895 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$3.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView.class new file mode 100644 index 0000000000000000000000000000000000000000..46c1f8dfe4fe59b982c3d9914c1524bc6fb30ad4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$1.class new file mode 100644 index 0000000000000000000000000000000000000000..ea03edc346975cac58b49be5c6523068c1f5a3d0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$2.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$2.class new file mode 100644 index 0000000000000000000000000000000000000000..00ac1f0e76788266525b32669f166dd2ecc4153e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$2.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$3.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$3.class new file mode 100644 index 0000000000000000000000000000000000000000..dc52586abd198ccabfd6a96a36588d4c1808ff1e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$3.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$4.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$4.class new file mode 100644 index 0000000000000000000000000000000000000000..7365418f56aa2c7470b6dbf14c1455824f804004 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$4.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$5.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$5.class new file mode 100644 index 0000000000000000000000000000000000000000..2aaa72d7c7cfc249f4e186f25b3102374cd3260d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$5.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$MyCountDownTimer.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$MyCountDownTimer.class new file mode 100644 index 0000000000000000000000000000000000000000..a6344e697d8e96bd9f962f3337710c69b4adab62 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm$MyCountDownTimer.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm.class new file mode 100644 index 0000000000000000000000000000000000000000..60ed47eae9443ef5f06802477c9aef8d78de6a57 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jForm.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$AsyncHttpClientGet.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$AsyncHttpClientGet.class new file mode 100644 index 0000000000000000000000000000000000000000..e7cc9f3a242811de5c360c99cb6ac19facdd01a6 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$AsyncHttpClientGet.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$AsyncHttpClientPostNameValueData.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$AsyncHttpClientPostNameValueData.class new file mode 100644 index 0000000000000000000000000000000000000000..06a673775b6c8dab533289a2f99ddd83bcab5812 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$AsyncHttpClientPostNameValueData.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$UploadTask.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$UploadTask.class new file mode 100644 index 0000000000000000000000000000000000000000..07445fef25bf3fe1f172e10d6d459d5510578a7e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$UploadTask.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient.class new file mode 100644 index 0000000000000000000000000000000000000000..40550df2422f14c8adf7a679d504a32f27f279a8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel$1.class new file mode 100644 index 0000000000000000000000000000000000000000..e3326b82693d4db0b12f8c4a6e5f058a4be5e2c4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel$2.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel$2.class new file mode 100644 index 0000000000000000000000000000000000000000..21db44023c90a06742e5a05f202bc5cdb8462d58 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel$2.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel$GestureListener.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel$GestureListener.class new file mode 100644 index 0000000000000000000000000000000000000000..4f6bd862041535632e306befc13048eae4e832af Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel$GestureListener.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel$simpleOnScaleGestureListener.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel$simpleOnScaleGestureListener.class new file mode 100644 index 0000000000000000000000000000000000000000..49672487114af8d5cec9fc613fbcdf10e55f8bd8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel$simpleOnScaleGestureListener.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel.class new file mode 100644 index 0000000000000000000000000000000000000000..290f52ced1ffa5215743921811c122bb02f8cdf5 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPanel.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPreferences.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPreferences.class new file mode 100644 index 0000000000000000000000000000000000000000..1dc9492b63f08e31f487ce8f9c595fbf63479930 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jPreferences.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jSwitchButton$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jSwitchButton$1.class new file mode 100644 index 0000000000000000000000000000000000000000..e6e85bef2df02d160240dc1290622fce91b7ce3c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jSwitchButton$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jSwitchButton.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jSwitchButton.class new file mode 100644 index 0000000000000000000000000000000000000000..c330a56d0e3052e6332be76228d16f8198c0b4f6 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jSwitchButton.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jTextView$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jTextView$1.class new file mode 100644 index 0000000000000000000000000000000000000000..8c68fadcfd092deb22b14600627b3f12bc61b197 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jTextView$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jTextView$2.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jTextView$2.class new file mode 100644 index 0000000000000000000000000000000000000000..c2277feb964d67a797dd18e5f8c642fe35c5a04f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jTextView$2.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jTextView.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jTextView.class new file mode 100644 index 0000000000000000000000000000000000000000..4f249d9bb472022edffa1e8fea91b997673b8ff6 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jTextView.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsBottomNavigationView$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsBottomNavigationView$1.class new file mode 100644 index 0000000000000000000000000000000000000000..b077c0530096110da642bb4dffbac5947f6c193b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsBottomNavigationView$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsBottomNavigationView.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsBottomNavigationView.class new file mode 100644 index 0000000000000000000000000000000000000000..30551751f58863bc8bc4d3aff49c11a08454cfb4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsBottomNavigationView.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsDrawerLayout$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsDrawerLayout$1.class new file mode 100644 index 0000000000000000000000000000000000000000..f100d4dc33d9ba0cc16ff1607dc246798fd051de Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsDrawerLayout$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsDrawerLayout.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsDrawerLayout.class new file mode 100644 index 0000000000000000000000000000000000000000..d166a7e7ff4bac5dbbdbb9751938ca35cda1dd2e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsDrawerLayout.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton$1.class new file mode 100644 index 0000000000000000000000000000000000000000..a8e6205094b9414ce4c6168d344887a1809b6f4f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton$2.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton$2.class new file mode 100644 index 0000000000000000000000000000000000000000..70c165637c82dabdda31b2aa914c5fceeb59a8d8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton$2.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton.class new file mode 100644 index 0000000000000000000000000000000000000000..af572447b82ec831d1def5a21d639a249542a5de Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView$1$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView$1$1.class new file mode 100644 index 0000000000000000000000000000000000000000..7b08733249681a32035c8ab3f2ec0c697b70e0dd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView$1$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView$1.class new file mode 100644 index 0000000000000000000000000000000000000000..491b6a4d7e2b9fed7bb19d208ac77482c57aced0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView.class new file mode 100644 index 0000000000000000000000000000000000000000..9a6eb673a2f827093ce215b202dace70e90851d4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar$1.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar$1.class new file mode 100644 index 0000000000000000000000000000000000000000..afed64f8263a744ee9c76ed2fb2e4094af067a16 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar$1.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar$2.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar$2.class new file mode 100644 index 0000000000000000000000000000000000000000..18db987de3a0779c76cd9c1a8319eab6a25c5710 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar$2.class differ diff --git a/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar.class b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar.class new file mode 100644 index 0000000000000000000000000000000000000000..8dc5245a28ce2b788cd09c4e273c9c7359d8ac5d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/core/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/core/R.class new file mode 100644 index 0000000000000000000000000000000000000000..f74ab6f11a8cb2225f6af761a83c973bd0165fc0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/core/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/lifecycle/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/lifecycle/R.class new file mode 100644 index 0000000000000000000000000000000000000000..c52407bee10979a39a34f9d26049fdf41fbfa1dd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/lifecycle/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/lifecycle/livedata/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/lifecycle/livedata/R.class new file mode 100644 index 0000000000000000000000000000000000000000..80ab4ab51e4d034159e208b5299c7ee6549dc314 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/lifecycle/livedata/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/lifecycle/livedata/core/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/lifecycle/livedata/core/R.class new file mode 100644 index 0000000000000000000000000000000000000000..85462a4fc3846f2cb9fd033516d658d2088c9175 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/lifecycle/livedata/core/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/lifecycle/viewmodel/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/lifecycle/viewmodel/R.class new file mode 100644 index 0000000000000000000000000000000000000000..53678cf245b67d15072c530d1bdeedb39b33eae4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/arch/lifecycle/viewmodel/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..9b1addaca0abb1bfe94892f3058138dac02f68c6 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..fc951a80ac21afda94eed2d87e3e38036730e277 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..ce22937c9174ff1d115e1fa67bd01517b8e59e21 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..f56b0c8bc3d39763ef1cdac397851bbfa983ca68 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..b6e2c7aa458887b5931145fe44f01d69fa791e24 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..87165ea310f8a22d086c959cb71c8bba1789ab5e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..810b99e804e8e4edc9ab2f8b22efd9d01b31ef40 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..44a86ac0a0f50055fcaf719ef29aabef0c33d9d0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..bf655b7f71b1c58b7594c4d35614ee616af58734 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..04a0d0a74ed4007162f91e711b8602c4a4e29f5d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R.class new file mode 100644 index 0000000000000000000000000000000000000000..0874dd72b022a0aa39888c7d81a9e33133aec112 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/asynclayoutinflater/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..0986c56b17870cd11f564400137f092b6bb618fd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..8d61fc48d0360ee177351756a67960ce15771bd1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..17610e605b49a9fb6097b75460f99104ac6967e3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..73e9fd0cea7a34fc48aa5ef607d5f8d363030da9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..75eb74e4a8664bb70d416f6f85958198f941ef40 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..e0db51e659bd3abcacf863d6e98edc824b6db402 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..9d3884b6c7a9f7652aef6d1a4b24d8bdaa2532cf Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..0ae046887acb1fe1a5ae9b2c8183b9abda438dbd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..3b7b149edfdd6b0f3642d4323ebb65df26202b4b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..3ee26c1d62b94685f1f7ba477045a2d0798dea4c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R.class new file mode 100644 index 0000000000000000000000000000000000000000..57ad7c875d92aab1a65e0f6a3cba4d0f3208fe08 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/compat/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..63696bfbbe8bb65d74a31531d059c874122c5c8a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..e36397ad639b9925eee68b61ee7db0deb85a360b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..547392442f53fb033988bec5bce713173b076429 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..a06b62719c96d0b36c23eddc04133101e1381e7d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..d618b4f4aefc4b85d3da6b61717989b9c9af24ca Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..e259ac6fc20aff89e0f07f267e9a641287663b4e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..aca9dc936282de0a3bef0217a6a5f4e35f6d7195 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..71d4acac8c897af988316aedd1b274fdf3943f64 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..36957d2dbcec8951de7d8bf15eb5bf800a25f361 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..f3cdb692e47bf7cb2deecf92e8dfd5bc416cafd9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R.class new file mode 100644 index 0000000000000000000000000000000000000000..8fbdcbb932c4992e4775122ff42ed0b3264daece Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coordinatorlayout/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..101fd5647eeee5b3b4c420836251b3fdc17016da Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..c02ff706beb654bd9b60b13a0b1fe676eec03973 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..4f5f51aee457331f96f83f43bd5864c5eefc5125 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..e0506cf323efc2869c36a6b35e159e39fb69f978 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..885575c6cb91999815776ced145894a4649c0fa2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..ea27ffe0efe3f358495fcbde9bc64acbc622afa9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..7b76e32c60ea512962bdd296d6e6bd8ec4416251 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..e072425d3b62a08c54887ab142ed46041e02db8b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..94532e57829fcb185932b46d5a19596357f541ab Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..6f5b4d672a74b9f0dfc4914d808a6d67b2c38327 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R.class new file mode 100644 index 0000000000000000000000000000000000000000..120ef9356182dc7ef142f751600543277380ba0a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreui/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..0cc85f5ddd64dde4261941d66866f62669167458 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..8aa8f7bcbb01a3892d0979583968d40c177fbe7d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..7b8a2fa922e1c601567b9fab433ee6fd032171e9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..5b0a7039babb338b9d4f28cfe853f139dc50e1be Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..78f5c73b89dc3079cb9f40bcfd17b1934f70ea36 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..cc760b69f11ebea7bed2abb890c5e0e14cc5ed26 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..bc6984f096e8a6475dca796e99fc9b005c49a9c5 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..430dd2568827be200fc7e13a364f62e9b99fbddb Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..0f292ad546cc56cd77f7f02c59fc28cc51b6b2bd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..da2e997f1d9af32ddcf7ae2c79bbbef0db2f36f6 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R.class new file mode 100644 index 0000000000000000000000000000000000000000..a92c243d303090cdcb137caa7bf13d754d6a5454 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/coreutils/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/cursoradapter/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/cursoradapter/R.class new file mode 100644 index 0000000000000000000000000000000000000000..f9da80ed6b30b576104cca25e73412958f45ebd2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/cursoradapter/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..bb983a3062ae872bcaf37a409275b9d56c521c01 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..6de2b21cd7b79a735704fdbf58f5aa433f1aa81f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..b73a61e4c48f8adcbcdc486fbcc9a7e0e368cb4f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..d21243f6306563a4823db86eef10b2fa5c49aaab Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..0d2b2dbb66ce8fb1a756e09eeebd491372f4dfec Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..0a8133573f53d25703973c31ab52320332dbaf4b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..99a1d7a5a11efadc54797aceccf5254fd48b7dfa Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..bf6ba070a5f2ab94f21696b4d0f1a96ab388c2ee Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..75169fd6509a423122f62be666b65790209a91d8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..70a239a87781009aabacfb46dac77b400f62aa2d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R.class new file mode 100644 index 0000000000000000000000000000000000000000..e47774a7e2084b99a5184606671944942eccc906 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/customview/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$anim.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$anim.class new file mode 100644 index 0000000000000000000000000000000000000000..20db283c38269a2ce8cfcb04c6a606973a584f08 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$anim.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$animator.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$animator.class new file mode 100644 index 0000000000000000000000000000000000000000..84f5c882ca861ea804c19c6b62df9c197b995fea Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$animator.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..358972ad96a050bb0cc763a165668cb95fab3c4a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$bool.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$bool.class new file mode 100644 index 0000000000000000000000000000000000000000..aa64aa7217eb8ecf98c1d4c307474383e4cab150 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$bool.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..d2714942d5322c4fc624ae899958f1fc2ebc7d88 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..6ac9031c760eeb81ccfc37573c9e197a92490a1c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..bfbf8afc0f727780139632e834b1dcaa1c9d6f70 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..1df0aafa97599cab65c40807f8b8f5d2f9f3651b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..a1cbf797e8fb90815ffd98b7d3b7cead9be8a985 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$interpolator.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$interpolator.class new file mode 100644 index 0000000000000000000000000000000000000000..818d6a1bdbf787aae990ef0882d242ca2af1ae66 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$interpolator.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..1ea1d10142d9bb10de9e81560fd28a844a4b5565 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..d0aea1cab8c7b98cb7427a258cacc64c4fb83329 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..d3ecf1507df6e964dc15efeb543e28f96d39f093 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..9403ed5c8849551aaf3cbe8cde9f263ce4bca3b1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R.class new file mode 100644 index 0000000000000000000000000000000000000000..d3ada39467504838c8fd4a03ffb2fbf4c7b9d312 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/design/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/documentfile/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/documentfile/R.class new file mode 100644 index 0000000000000000000000000000000000000000..8808028fe4fc508645911b2a8e589a9f6e2fcce5 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/documentfile/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..c4ec9869dccd43401adb440fe178f10b02926cf9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..3964a164c4dcc1cad72bd76095b6a1ab725a79fc Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..c233e64540af0c9e19732897927404556c046c20 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..2e2aa31b57072339ae2fd79ba6f50851e8410b17 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..980caee13101992b5c516084e8aba3810df3251b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..60409999d6bb2cc5d42de62af95ade05a15ac62b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..70a4116d451cd502d279012aaa82e9a3a226b8b2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..c243dacf50cd68475a8d1d9cd7e4bb3f7767f417 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..22c2416940afd85d5e11ef4bdd0ef21c724760a9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..f1d4c5e46f6f22a3b897de77f6aa3f9d4c9ba350 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R.class new file mode 100644 index 0000000000000000000000000000000000000000..ce9c72ab1358f2020f39c7f7f5da0a8241685526 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/drawerlayout/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..a76d3c2de593dbcee5d920702e14822d06118f4d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..124f466813c394b39382173d4e261fac8f4f5e25 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..318c2c6b29f853d1284ddf840c18d56ee92c621c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..62fdcac29e95070a686f03e10083c1163fa972b7 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..4fe5bc5f3c8e94fbfe05ab198e5703beb99dff24 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..a6bb6ecb54ca626c52ae2a60e04defd22f0047a5 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..fbcd25f13ae7e229f4dda3f9b02d41baf3bb5d44 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..0f7ace1b00c068e770e063856f4a30b3b53fc6b2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..93947d7ba4cad076765c45fecd73152ec94d4aa8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..992ae039f9168d3755e36ee992f81dc11c32a4fe Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R.class new file mode 100644 index 0000000000000000000000000000000000000000..030d8ce5b7b02713b1df984957795264e2e2725c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/fragment/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..8a0dd3f2114c8f60751dce746c960bd6d659fc7b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..789c46131de5d09877803ff8ead5d2b34caa685c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..ab98e7b39481da5de39bf75d0039b5afebdc8886 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..229c6b5359ad1cf82f813107a5008445dddb7581 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..fa9d2bc5eabc12fed97a0dc3d8adf1482e9deebb Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..1708a15e99ba69d3897a873dd6ac329a7389b5c9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..1ba578c4df7a946abcf82bf257f6b755862804e0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..b23f9bb7fcca4b541a862d9f3b501eb40d779812 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..0e76c9e438689e1b6c98f94887129c17aebb09c2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..c86a0268a594f7d7160c9fd5a9549de80457a244 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R.class new file mode 100644 index 0000000000000000000000000000000000000000..02194822e069efc8b9fe8ead11a9f5b6b8aa00f9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/graphics/drawable/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/interpolator/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/interpolator/R.class new file mode 100644 index 0000000000000000000000000000000000000000..0a83688a25ec6322ced87175edfbdd3f11856e41 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/interpolator/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..f2f4765fd37f7d6a853ce873af25f6bf8cd338fd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..72041bc111888aa0fc60338cf26b454aa436b999 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..ee5374a2155f443cf5ed593314e7bd18440f0c36 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..d66daff58cd59a693763a855abe788e772def628 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..00d19ac0efd6d33d2b6fe483568777fea6553d47 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..36d13807dc452ccc18109318959e664865b87b85 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..f65e6810857bd80cb92022de183e8af181bc4036 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..9980e337011a8c61a4fa2861ee0016ae57f0e156 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..adbf6b6b6dd5a5eaa83c2cc6a42d264bdad035be Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..65f6fb63edc59754eaa88df9625b4e82b436ca8e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R.class new file mode 100644 index 0000000000000000000000000000000000000000..70da916851a4370cf8d972448234c1016eedfd02 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/loader/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/localbroadcastmanager/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/localbroadcastmanager/R.class new file mode 100644 index 0000000000000000000000000000000000000000..a29b9745851083dc50bf1ed421c79b4b67d8c57a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/localbroadcastmanager/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..13fd05cb13ecaea8a917775934485d5204231d45 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..4c39e429a5493104a527b583981f335d883fdb50 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..b1c608a33703980ef964c6329178e45b6cf1bce7 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..992931e829130ba5c6e60f3dd4f911c557874a27 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..0f26106bd6bde7db1dd35a1693e237957a07d7a7 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..b7711eca20e2c5f3bfbdedf2de4ab7eec89a96a0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..66ab73391fea36237f0685fa4ccc0bf2d4e2584d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..528a95b94efc84d3c440f7afdd6266b47742c5cf Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..f70a92b0c96c9e9cc6e1bfc5753ba5c319aa0320 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..3b377b652f4878a5da3172b4681b3980532dd4d9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R.class new file mode 100644 index 0000000000000000000000000000000000000000..9a085d00b2716229649cb8cb628b20695f8a6642 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/mediacompat/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/print/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/print/R.class new file mode 100644 index 0000000000000000000000000000000000000000..b8761d9be72c593ce4d0143d7f514114ccfa216e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/print/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..4803596d7cede0a583b1cb543cdaa0ac07be3514 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..d732c7d88fd993b616ca20b6fb7c974cd4555aa3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..40a6a19c24f365469931c6a62e6cb447204b6516 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..8effc14dccfe3bcb55f8c575d027153392dcd5ba Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..1d596cf6672affab716e931f63ffacd259e5f4ad Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..caf9fcae7afa189a17830ff7ddd30ed337d7bcde Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..68a394ee010e06d6cc8e8740489e653c77d56479 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..817f1f37337e195300c7dd2e675f40c3b62cddc1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..743f44e5bbdc779c4179357aaac97f9170450c06 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..fb529e882149babf8714b672ced0c7ad071b1666 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R.class new file mode 100644 index 0000000000000000000000000000000000000000..155b8a9c78aee07c1f0088e600a50266a7c1b2cc Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/slidingpanelayout/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..5d16470cc5b99915c36bb803eae85cacd5568781 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..12fbd84025afc6e72c3387e3ff6a2482813f278f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..bba6c82c6fa07ccc75a352268dce47c311e38480 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..7843a924ca8996df0cdeae1ec796342ceb35aeb9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..2f5c6957f4f8b9ca966ac2eeb5a5eef89024b28d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..742f7a6e74197d21694821ac359fc98a8cf8f1dd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..03848f73af4be6d7e4cceb5d58251f12a99b6e52 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..6c49c3076775ce1686db083acc166f0c2840ceb8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..f64d7029db7d4078211b251793d205d7e61743b0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..fc4e1fb5a32507677a8867952107231db9c491c8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R.class new file mode 100644 index 0000000000000000000000000000000000000000..069da82b1ee95355e658c43d0c6cfe64a99db3b3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/swiperefreshlayout/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..bb49984541d040585b03bcc21e1463ddda2ac6e6 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..dec31d26ff26022435919b55c546296a83f1a8f4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..997e36d06168b6aa844d9f0c12137062b4019ab7 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..b1fd8875134c7cab58b77458143ceccfa9291652 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..c801ad0342f3624565e1eccab49bda98a43dab9e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..e8e6475c0519f35a476d1a6dd306a76fc4e4f8a1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..bb0e6357d56619a287bd261ffaec738b48c03837 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..c0af8d26d483d1ffa3204c18b6927aba8e36bf9e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..e03cffe1fe8bf06b7a30740a6af6e75ae44bc4d1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..5590eefee632af23ac0b288967d96a012beacc60 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R.class new file mode 100644 index 0000000000000000000000000000000000000000..889270a78f047b7c76231f3bec891e5910e295cd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/transition/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..b8911501d45c5d9135b4b9685c4a44b431246266 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..cdc0f7036a47d55134221d81bed8b63bb31e73a3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..8b4b7205f4e9c92fe36b2be0bde15bbce3f0f7f3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..7f94ae60fc1cf858387dab285cb358e2dedc3d77 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..97715270c4474ffd11c64a4a0126cc47a637d6a0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..c5ad5810b3f88ccea933de98e628ef1ac1f21f9e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..653d7a7e5ad0b2b0f344d5f87a7af3cc1e2a1128 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..c2feee490f39ef24f10b822e6eba4df8ed88568f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..551bdd777d16716552cd54caa01d29830ca27707 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..40743b2e3bb3554556ac6b57e92d2bb4752fb3a9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R.class new file mode 100644 index 0000000000000000000000000000000000000000..ede3fcf117cdb3c86143dd184fd6428edb4823b2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v4/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$anim.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$anim.class new file mode 100644 index 0000000000000000000000000000000000000000..1ab5b251b1280f4b973b8e079808389057104e2a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$anim.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..7b4b88c55682259c15ed7fb8c391bfe5fbf02e31 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$bool.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$bool.class new file mode 100644 index 0000000000000000000000000000000000000000..aefc56914fcf22ad089ab2b3085872576d3724dc Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$bool.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..5d2eecd270f5c018c2b678de5691cae7e5f273b9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..cb9fbbb453122056b698364dbcbb33aea780394d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..e6ec03b12782ce7769725442c12aaca661cd1799 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..c2266b181b0293521e581e8a52694b4e8c5b77ae Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..4a3c2b25bc30fdaf27e537f4df87833da33a252c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..99c6fd6887c32c52c2b9d95b5cfc21cbc522af68 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..7ee9955bd0805c9d58b4fcd78d1c94ce00cbcee0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..c397c08b1b039923a2148d8f04c20543ccb4afaa Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..aaabe66f18768eef0f54a112df2c112fa783e538 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R.class new file mode 100644 index 0000000000000000000000000000000000000000..c2e3955c44fbfdcc86dd4a2313b1eceed957e65a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/appcompat/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..70c5283983e6e0011f73b927e37af1093d68e1d9 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..0dd8ce50a2a58b122c7c80ba5af0c35cfe8720cd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..90fc1aed03300e3e423554407ee1f84862768e5d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..56febc3ae1352c06535e619d9074ae8834890773 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..3dc7b2c3ddacf53cab87f046b811a80df27eaadc Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R.class new file mode 100644 index 0000000000000000000000000000000000000000..18455b8fdb636f373df7de619fb97d74b196e290 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/cardview/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..99ece252b3402806622869201f4761ad2e6b70cf Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..10cbd753a9cfb9e105df95d823510c9207227326 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..6ebb7f3201f30c3909a5b3f905d0e81e1899a3d1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..fcbb57b95cc64a82158be71fe5c7f5e3c2159e29 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..dda203132801448f8cc72b5bf2a82e8a6c87e424 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..7f54f7192e59c8720b60ffa281c8850b01027797 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..631447a58357b6e4fc94412b9883ec330b91d836 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..9d6fc03e8d2c688722468a8e6d2509a77af055b4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..9a0db56f7bf9b6057dba374b24304b556598c2f4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..261571849095e11ee843b90dffd1e9676eba23f3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R.class new file mode 100644 index 0000000000000000000000000000000000000000..9796eb9f0bd6bbc0c6d871dd21511a14b24b5779 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/recyclerview/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..61184216df5226a070cb05087e5ca7c951d8dfc1 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..a8fd0287f886d92e7d9724ca001a06a6d14aa1bd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..0320f03fc2df7756e5d04a91f18e4616815c4cbd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..d3501ef6f6125f4b62af0da2e844546028e5de01 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..d78d236d19476c25dd0845092e307c835dc26214 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..601bb633c89ede91ead601cbdee6f7035169b2cd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..73d3427930767d28b029476dd36e758829eaa1f0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..65e66adba2feca6ffeae1ca9126abaf62daaee92 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..80e9cb7f2ce4b0209b23d97f64ea0bf684a8f2ce Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..d40181c05ccaafdb314d744d900e7ae3a67ca7d3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R.class new file mode 100644 index 0000000000000000000000000000000000000000..4785c9b11241cd90c6c337880110c144b361dfb2 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/android/support/v7/viewpager/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/versionedparcelable/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/versionedparcelable/R.class new file mode 100644 index 0000000000000000000000000000000000000000..79a4038d381b645517822d5cacf711426fc720aa Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/androidx/versionedparcelable/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/App$RLAppLayout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/App$RLAppLayout.class new file mode 100644 index 0000000000000000000000000000000000000000..4e9cf580624755939cabcae8770b60cb24882e5b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/App$RLAppLayout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/App.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/App.class new file mode 100644 index 0000000000000000000000000000000000000000..05a9735bfb011d92bd78c765184ef3e0aa4dae18 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/App.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/BuildConfig.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/BuildConfig.class new file mode 100644 index 0000000000000000000000000000000000000000..b284cda3d611f41b471725c1a942bf6e68a6e398 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/BuildConfig.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/ChildInfo.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/ChildInfo.class new file mode 100644 index 0000000000000000000000000000000000000000..7bf7fc12f49fffc91b2534f3c8f01b47363dd01d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/ChildInfo.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/Const.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/Const.class new file mode 100644 index 0000000000000000000000000000000000000000..901ef72d9509f4fddb8e53e399d0a66e1cccbb38 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/Const.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/Controls$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/Controls$1.class new file mode 100644 index 0000000000000000000000000000000000000000..4466e6e72b5c79a084b6a92f6f0bec8ce5292d33 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/Controls$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/Controls.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/Controls.class new file mode 100644 index 0000000000000000000000000000000000000000..61a9f9a87310c7c0ee6d140d9604eff5b579ef7d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/Controls.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/ExpandableListAdapter.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/ExpandableListAdapter.class new file mode 100644 index 0000000000000000000000000000000000000000..469d088ef62a306be3958776318e750ae5fa0a24 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/ExpandableListAdapter.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/HeaderInfo.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/HeaderInfo.class new file mode 100644 index 0000000000000000000000000000000000000000..6664776ee368bd2a4c3b97304e3eeb14a8603d40 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/HeaderInfo.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/LConst.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/LConst.class new file mode 100644 index 0000000000000000000000000000000000000000..1d98a2d596742c4d655984be11c866433a15af79 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/LConst.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$anim.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$anim.class new file mode 100644 index 0000000000000000000000000000000000000000..ddcdfe98b0220a6196b9c5bfaff481ccb819b707 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$anim.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$animator.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$animator.class new file mode 100644 index 0000000000000000000000000000000000000000..0ccb7807fa8816bf41a9ac9798984aafef06cd45 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$animator.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$attr.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$attr.class new file mode 100644 index 0000000000000000000000000000000000000000..23021614685fc4902f3c9ac55ba84cabf4cb8f87 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$attr.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$bool.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$bool.class new file mode 100644 index 0000000000000000000000000000000000000000..418d78caa7cd29439af0d54f2b878bc09e988b39 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$bool.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$color.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$color.class new file mode 100644 index 0000000000000000000000000000000000000000..94ab31d3c4a3d2721fa0e5d73b984dbbf26d8503 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$color.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$dimen.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$dimen.class new file mode 100644 index 0000000000000000000000000000000000000000..4ace5dcb60310d3ecb81f8cd579958196ed1dc98 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$dimen.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$drawable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$drawable.class new file mode 100644 index 0000000000000000000000000000000000000000..e91a5d01751322f9c20d4d166e19f482dae737e5 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$drawable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$id.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$id.class new file mode 100644 index 0000000000000000000000000000000000000000..048b35308a2e5b521b8d8cb67c6b15c96ca65159 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$id.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$integer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$integer.class new file mode 100644 index 0000000000000000000000000000000000000000..456c8124c37e0550a4c0e3dfd9dacffcd120fce7 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$integer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$interpolator.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$interpolator.class new file mode 100644 index 0000000000000000000000000000000000000000..69e8b571347fa8c369380b42d55760a4653b6904 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$interpolator.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$layout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$layout.class new file mode 100644 index 0000000000000000000000000000000000000000..51fce6fc3e20aa090fec0f699a4a33718d70b4e0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$layout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$raw.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$raw.class new file mode 100644 index 0000000000000000000000000000000000000000..6947c9e40627a83936cd9cadb969283022d6ada3 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$raw.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$string.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$string.class new file mode 100644 index 0000000000000000000000000000000000000000..87a08666304e6e32e3d37a8faf2ab0d7ad34b7fa Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$string.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$style.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$style.class new file mode 100644 index 0000000000000000000000000000000000000000..d2038f15eb079f22fb50ffa4b687e3bd161d53f0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$style.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$styleable.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$styleable.class new file mode 100644 index 0000000000000000000000000000000000000000..b0adc4c04dd9b412008043030fd7368e37bdb69f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$styleable.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$xml.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$xml.class new file mode 100644 index 0000000000000000000000000000000000000000..b70bbb3096478c42fbbe1bec81c7169eff6b6e7c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R$xml.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R.class new file mode 100644 index 0000000000000000000000000000000000000000..9329a8eaa11d9dd3f3b2ca4a54636c6e76abe00e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/R.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jButton$1$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jButton$1$1.class new file mode 100644 index 0000000000000000000000000000000000000000..cc60ca9e2bd1722d361ba5f07351bdd71320e461 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jButton$1$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jButton$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jButton$1.class new file mode 100644 index 0000000000000000000000000000000000000000..5f5134da0482870a52768ae4841a3b8f73a9ffcf Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jButton$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jButton.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jButton.class new file mode 100644 index 0000000000000000000000000000000000000000..7ebd7e30bb5466b5c3b602bff51b8b270e7b226a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jButton.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jCheckBox$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jCheckBox$1.class new file mode 100644 index 0000000000000000000000000000000000000000..8f0a779c2eec02348dc3407e50d1aaa9a157aa05 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jCheckBox$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jCheckBox.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jCheckBox.class new file mode 100644 index 0000000000000000000000000000000000000000..18b2d7e87f60298af52fb50f8ec5a45dfaf239ef Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jCheckBox.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jCommons.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jCommons.class new file mode 100644 index 0000000000000000000000000000000000000000..6dd119e072dbf8e4da7cac585115e24219eb712b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jCommons.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$1.class new file mode 100644 index 0000000000000000000000000000000000000000..9aa991d966a904dfb633c9c7659490ce44050c48 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$2.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$2.class new file mode 100644 index 0000000000000000000000000000000000000000..c6b061be264d27be2a0cfd50ba15328600d9646d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$2.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$3.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$3.class new file mode 100644 index 0000000000000000000000000000000000000000..95faf5cbb77f4497c923e56521fdec1434f1160a Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$3.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$4.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$4.class new file mode 100644 index 0000000000000000000000000000000000000000..b86c352e92d09843a38aba2111f79c8c9775a560 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$4.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$5.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$5.class new file mode 100644 index 0000000000000000000000000000000000000000..7d7c468607c5f5021e5f484886eec9e8bfc7e8d7 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText$5.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText.class new file mode 100644 index 0000000000000000000000000000000000000000..89578a94ffbb64f907368c85cf49e7ec65fc895c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jEditText.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$1.class new file mode 100644 index 0000000000000000000000000000000000000000..d901997b5b9574f8abdcbcec2b7fb55a3a210408 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$2.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$2.class new file mode 100644 index 0000000000000000000000000000000000000000..b1af507a7155af78c370241f522eeb6894f1d45d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$2.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$3.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$3.class new file mode 100644 index 0000000000000000000000000000000000000000..b2c53861291f82b434c5f8b4e65a45cdfae95895 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView$3.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView.class new file mode 100644 index 0000000000000000000000000000000000000000..46c1f8dfe4fe59b982c3d9914c1524bc6fb30ad4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jExpandableListView.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$1.class new file mode 100644 index 0000000000000000000000000000000000000000..ea03edc346975cac58b49be5c6523068c1f5a3d0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$2.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$2.class new file mode 100644 index 0000000000000000000000000000000000000000..00ac1f0e76788266525b32669f166dd2ecc4153e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$2.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$3.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$3.class new file mode 100644 index 0000000000000000000000000000000000000000..dc52586abd198ccabfd6a96a36588d4c1808ff1e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$3.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$4.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$4.class new file mode 100644 index 0000000000000000000000000000000000000000..7365418f56aa2c7470b6dbf14c1455824f804004 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$4.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$5.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$5.class new file mode 100644 index 0000000000000000000000000000000000000000..2aaa72d7c7cfc249f4e186f25b3102374cd3260d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$5.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$MyCountDownTimer.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$MyCountDownTimer.class new file mode 100644 index 0000000000000000000000000000000000000000..a6344e697d8e96bd9f962f3337710c69b4adab62 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm$MyCountDownTimer.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm.class new file mode 100644 index 0000000000000000000000000000000000000000..60ed47eae9443ef5f06802477c9aef8d78de6a57 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jForm.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$AsyncHttpClientGet.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$AsyncHttpClientGet.class new file mode 100644 index 0000000000000000000000000000000000000000..e7cc9f3a242811de5c360c99cb6ac19facdd01a6 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$AsyncHttpClientGet.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$AsyncHttpClientPostNameValueData.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$AsyncHttpClientPostNameValueData.class new file mode 100644 index 0000000000000000000000000000000000000000..06a673775b6c8dab533289a2f99ddd83bcab5812 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$AsyncHttpClientPostNameValueData.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$UploadTask.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$UploadTask.class new file mode 100644 index 0000000000000000000000000000000000000000..07445fef25bf3fe1f172e10d6d459d5510578a7e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient$UploadTask.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient.class new file mode 100644 index 0000000000000000000000000000000000000000..40550df2422f14c8adf7a679d504a32f27f279a8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jHttpClient.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel$1.class new file mode 100644 index 0000000000000000000000000000000000000000..e3326b82693d4db0b12f8c4a6e5f058a4be5e2c4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel$2.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel$2.class new file mode 100644 index 0000000000000000000000000000000000000000..21db44023c90a06742e5a05f202bc5cdb8462d58 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel$2.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel$GestureListener.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel$GestureListener.class new file mode 100644 index 0000000000000000000000000000000000000000..4f6bd862041535632e306befc13048eae4e832af Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel$GestureListener.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel$simpleOnScaleGestureListener.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel$simpleOnScaleGestureListener.class new file mode 100644 index 0000000000000000000000000000000000000000..49672487114af8d5cec9fc613fbcdf10e55f8bd8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel$simpleOnScaleGestureListener.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel.class new file mode 100644 index 0000000000000000000000000000000000000000..290f52ced1ffa5215743921811c122bb02f8cdf5 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPanel.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPreferences.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPreferences.class new file mode 100644 index 0000000000000000000000000000000000000000..1dc9492b63f08e31f487ce8f9c595fbf63479930 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jPreferences.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jSwitchButton$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jSwitchButton$1.class new file mode 100644 index 0000000000000000000000000000000000000000..e6e85bef2df02d160240dc1290622fce91b7ce3c Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jSwitchButton$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jSwitchButton.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jSwitchButton.class new file mode 100644 index 0000000000000000000000000000000000000000..c330a56d0e3052e6332be76228d16f8198c0b4f6 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jSwitchButton.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jTextView$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jTextView$1.class new file mode 100644 index 0000000000000000000000000000000000000000..8c68fadcfd092deb22b14600627b3f12bc61b197 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jTextView$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jTextView$2.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jTextView$2.class new file mode 100644 index 0000000000000000000000000000000000000000..c2277feb964d67a797dd18e5f8c642fe35c5a04f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jTextView$2.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jTextView.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jTextView.class new file mode 100644 index 0000000000000000000000000000000000000000..4f249d9bb472022edffa1e8fea91b997673b8ff6 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jTextView.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsBottomNavigationView$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsBottomNavigationView$1.class new file mode 100644 index 0000000000000000000000000000000000000000..b077c0530096110da642bb4dffbac5947f6c193b Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsBottomNavigationView$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsBottomNavigationView.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsBottomNavigationView.class new file mode 100644 index 0000000000000000000000000000000000000000..30551751f58863bc8bc4d3aff49c11a08454cfb4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsBottomNavigationView.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsDrawerLayout$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsDrawerLayout$1.class new file mode 100644 index 0000000000000000000000000000000000000000..f100d4dc33d9ba0cc16ff1607dc246798fd051de Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsDrawerLayout$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsDrawerLayout.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsDrawerLayout.class new file mode 100644 index 0000000000000000000000000000000000000000..d166a7e7ff4bac5dbbdbb9751938ca35cda1dd2e Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsDrawerLayout.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton$1.class new file mode 100644 index 0000000000000000000000000000000000000000..a8e6205094b9414ce4c6168d344887a1809b6f4f Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton$2.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton$2.class new file mode 100644 index 0000000000000000000000000000000000000000..70c165637c82dabdda31b2aa914c5fceeb59a8d8 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton$2.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton.class new file mode 100644 index 0000000000000000000000000000000000000000..af572447b82ec831d1def5a21d639a249542a5de Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsFloatingButton.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView$1$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView$1$1.class new file mode 100644 index 0000000000000000000000000000000000000000..7b08733249681a32035c8ab3f2ec0c697b70e0dd Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView$1$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView$1.class new file mode 100644 index 0000000000000000000000000000000000000000..491b6a4d7e2b9fed7bb19d208ac77482c57aced0 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView.class new file mode 100644 index 0000000000000000000000000000000000000000..9a6eb673a2f827093ce215b202dace70e90851d4 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsNavigationView.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar$1.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar$1.class new file mode 100644 index 0000000000000000000000000000000000000000..afed64f8263a744ee9c76ed2fb2e4094af067a16 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar$1.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar$2.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar$2.class new file mode 100644 index 0000000000000000000000000000000000000000..18db987de3a0779c76cd9c1a8319eab6a25c5710 Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar$2.class differ diff --git a/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar.class b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar.class new file mode 100644 index 0000000000000000000000000000000000000000..8dc5245a28ce2b788cd09c4e273c9c7359d8ac5d Binary files /dev/null and b/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes/org/muctec/smartfritz/jsToolbar.class differ diff --git a/SmartFritz/build/intermediates/lint-cache/api-versions-15-30.0.2.bin b/SmartFritz/build/intermediates/lint-cache/api-versions-15-30.0.2.bin new file mode 100644 index 0000000000000000000000000000000000000000..f79a2d025ffd26269d33d2e049d86926881b6f24 Binary files /dev/null and b/SmartFritz/build/intermediates/lint-cache/api-versions-15-30.0.2.bin differ diff --git a/SmartFritz/build/intermediates/lint-cache/maven.google/com/android/support/group-index.xml b/SmartFritz/build/intermediates/lint-cache/maven.google/com/android/support/group-index.xml new file mode 100644 index 0000000000000000000000000000000000000000..c2e0c79c2a24fd0ae6287d3ad60ca5405ccd804d --- /dev/null +++ b/SmartFritz/build/intermediates/lint-cache/maven.google/com/android/support/group-index.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SmartFritz/build/intermediates/lint-cache/maven.google/com/android/tools/build/group-index.xml b/SmartFritz/build/intermediates/lint-cache/maven.google/com/android/tools/build/group-index.xml new file mode 100644 index 0000000000000000000000000000000000000000..fb0acb2d311c7addddcce7c87e74005ef87c9768 --- /dev/null +++ b/SmartFritz/build/intermediates/lint-cache/maven.google/com/android/tools/build/group-index.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/SmartFritz/build/intermediates/lint-cache/maven.google/master-index.xml b/SmartFritz/build/intermediates/lint-cache/maven.google/master-index.xml new file mode 100644 index 0000000000000000000000000000000000000000..561817ea91d45a76d5a106713f0ad87f39be0c67 --- /dev/null +++ b/SmartFritz/build/intermediates/lint-cache/maven.google/master-index.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SmartFritz/build/intermediates/lint-cache/sdk-registry.xml/sdk-registry.xml b/SmartFritz/build/intermediates/lint-cache/sdk-registry.xml/sdk-registry.xml new file mode 100644 index 0000000000000000000000000000000000000000..2cedebf6b25263600e2298701b5ffc1aa0c8267d --- /dev/null +++ b/SmartFritz/build/intermediates/lint-cache/sdk-registry.xml/sdk-registry.xml @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SmartFritz/build/intermediates/lint-cache/typos-en.txt-2.bin b/SmartFritz/build/intermediates/lint-cache/typos-en.txt-2.bin new file mode 100644 index 0000000000000000000000000000000000000000..9ae915ac328bcbf0b87a3ec108e6f829492c8fd1 Binary files /dev/null and b/SmartFritz/build/intermediates/lint-cache/typos-en.txt-2.bin differ diff --git a/SmartFritz/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libcontrols.so b/SmartFritz/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libcontrols.so new file mode 100755 index 0000000000000000000000000000000000000000..76312e18d56e3e210abea68a17c1d2bbe05b87e0 Binary files /dev/null and b/SmartFritz/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libcontrols.so differ diff --git a/SmartFritz/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libcontrols.so b/SmartFritz/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libcontrols.so new file mode 100755 index 0000000000000000000000000000000000000000..6aadf952f99d0580a573988b21095c838cbfdde9 Binary files /dev/null and b/SmartFritz/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libcontrols.so differ diff --git a/SmartFritz/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libcrypto.so b/SmartFritz/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libcrypto.so new file mode 100755 index 0000000000000000000000000000000000000000..32fbd10129d3b9226014c59827766cf7c540da61 Binary files /dev/null and b/SmartFritz/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libcrypto.so differ diff --git a/SmartFritz/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libssl.so b/SmartFritz/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libssl.so new file mode 100755 index 0000000000000000000000000000000000000000..805a6c25cf4c24c1c5bbcd7f214fdd508f2f7f5c Binary files /dev/null and b/SmartFritz/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libssl.so differ diff --git a/SmartFritz/build/intermediates/merged_jni_libs/release/out/arm64-v8a/libcontrols.so b/SmartFritz/build/intermediates/merged_jni_libs/release/out/arm64-v8a/libcontrols.so new file mode 100755 index 0000000000000000000000000000000000000000..76312e18d56e3e210abea68a17c1d2bbe05b87e0 Binary files /dev/null and b/SmartFritz/build/intermediates/merged_jni_libs/release/out/arm64-v8a/libcontrols.so differ diff --git a/SmartFritz/build/intermediates/merged_jni_libs/release/out/armeabi-v7a/libcontrols.so b/SmartFritz/build/intermediates/merged_jni_libs/release/out/armeabi-v7a/libcontrols.so new file mode 100755 index 0000000000000000000000000000000000000000..6aadf952f99d0580a573988b21095c838cbfdde9 Binary files /dev/null and b/SmartFritz/build/intermediates/merged_jni_libs/release/out/armeabi-v7a/libcontrols.so differ diff --git a/SmartFritz/build/intermediates/merged_jni_libs/release/out/armeabi-v7a/libcrypto.so b/SmartFritz/build/intermediates/merged_jni_libs/release/out/armeabi-v7a/libcrypto.so new file mode 100755 index 0000000000000000000000000000000000000000..32fbd10129d3b9226014c59827766cf7c540da61 Binary files /dev/null and b/SmartFritz/build/intermediates/merged_jni_libs/release/out/armeabi-v7a/libcrypto.so differ diff --git a/SmartFritz/build/intermediates/merged_jni_libs/release/out/armeabi-v7a/libssl.so b/SmartFritz/build/intermediates/merged_jni_libs/release/out/armeabi-v7a/libssl.so new file mode 100755 index 0000000000000000000000000000000000000000..805a6c25cf4c24c1c5bbcd7f214fdd508f2f7f5c Binary files /dev/null and b/SmartFritz/build/intermediates/merged_jni_libs/release/out/armeabi-v7a/libssl.so differ diff --git a/SmartFritz/build/intermediates/merged_manifests/debug/armeabi-v7a/AndroidManifest.xml b/SmartFritz/build/intermediates/merged_manifests/debug/armeabi-v7a/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..92057f6c073be526fe2622d090dbcb616bd4e31d --- /dev/null +++ b/SmartFritz/build/intermediates/merged_manifests/debug/armeabi-v7a/AndroidManifest.xml @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/merged_manifests/debug/output.json b/SmartFritz/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000000000000000000000000000000000000..a860c9ea5fda27e03c9a2748d65c671bc820c3f0 --- /dev/null +++ b/SmartFritz/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-debug.apk","fullName":"armeabi-v7aDebug","baseName":"armeabi-v7a-debug"},"path":"armeabi-v7a/AndroidManifest.xml","properties":{"packageId":"org.muctec.smartfritz","split":"","minSdkVersion":"14"}}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/merged_manifests/release/armeabi-v7a/AndroidManifest.xml b/SmartFritz/build/intermediates/merged_manifests/release/armeabi-v7a/AndroidManifest.xml new file mode 100644 index 0000000000000000000000000000000000000000..ec0ff80340e5a557e7f4408d26012a08520b908a --- /dev/null +++ b/SmartFritz/build/intermediates/merged_manifests/release/armeabi-v7a/AndroidManifest.xml @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/SmartFritz/build/intermediates/merged_manifests/release/output.json b/SmartFritz/build/intermediates/merged_manifests/release/output.json new file mode 100644 index 0000000000000000000000000000000000000000..3e5b4b0a63e57022bf3684ceb890f6bd7b40d4b3 --- /dev/null +++ b/SmartFritz/build/intermediates/merged_manifests/release/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-release-unsigned.apk","fullName":"armeabi-v7aRelease","baseName":"armeabi-v7a-release"},"path":"armeabi-v7a/AndroidManifest.xml","properties":{"packageId":"org.muctec.smartfritz","split":"","minSdkVersion":"14"}}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/metadata_feature_manifest/debug/processDebugManifest/metadata-feature/output.json b/SmartFritz/build/intermediates/metadata_feature_manifest/debug/processDebugManifest/metadata-feature/output.json new file mode 100644 index 0000000000000000000000000000000000000000..0be0fb2eb0ed7a3a034b22092d5f09807df9f5e2 --- /dev/null +++ b/SmartFritz/build/intermediates/metadata_feature_manifest/debug/processDebugManifest/metadata-feature/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"METADATA_FEATURE_MANIFEST"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-debug.apk","fullName":"armeabi-v7aDebug","baseName":"armeabi-v7a-debug"},"path":"armeabi-v7a/AndroidManifest.xml","properties":{}}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/metadata_feature_manifest/release/processReleaseManifest/metadata-feature/output.json b/SmartFritz/build/intermediates/metadata_feature_manifest/release/processReleaseManifest/metadata-feature/output.json new file mode 100644 index 0000000000000000000000000000000000000000..c260c3dd3611f8a3262fa208633287e1027e2f29 --- /dev/null +++ b/SmartFritz/build/intermediates/metadata_feature_manifest/release/processReleaseManifest/metadata-feature/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"METADATA_FEATURE_MANIFEST"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-release-unsigned.apk","fullName":"armeabi-v7aRelease","baseName":"armeabi-v7a-release"},"path":"armeabi-v7a/AndroidManifest.xml","properties":{}}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/processed_res/debug/processDebugResources/out/output.json b/SmartFritz/build/intermediates/processed_res/debug/processDebugResources/out/output.json new file mode 100644 index 0000000000000000000000000000000000000000..1b644130be28b02a75a4279b8bdb45015e58fe23 --- /dev/null +++ b/SmartFritz/build/intermediates/processed_res/debug/processDebugResources/out/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"PROCESSED_RES"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-debug.apk","fullName":"armeabi-v7aDebug","baseName":"armeabi-v7a-debug"},"path":"resources-armeabi-v7aDebug.ap_","properties":{"packageId":"org.muctec.smartfritz","split":"","minSdkVersion":"14"}}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/processed_res/debug/processDebugResources/out/resources-armeabi-v7aDebug.ap_ b/SmartFritz/build/intermediates/processed_res/debug/processDebugResources/out/resources-armeabi-v7aDebug.ap_ new file mode 100644 index 0000000000000000000000000000000000000000..fd13ae66ef402f00ef50df95ea41525913e62f9a Binary files /dev/null and b/SmartFritz/build/intermediates/processed_res/debug/processDebugResources/out/resources-armeabi-v7aDebug.ap_ differ diff --git a/SmartFritz/build/intermediates/processed_res/release/processReleaseResources/out/output.json b/SmartFritz/build/intermediates/processed_res/release/processReleaseResources/out/output.json new file mode 100644 index 0000000000000000000000000000000000000000..af975dee3032d705809311c69e382fcd5a4aed81 --- /dev/null +++ b/SmartFritz/build/intermediates/processed_res/release/processReleaseResources/out/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"PROCESSED_RES"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-release-unsigned.apk","fullName":"armeabi-v7aRelease","baseName":"armeabi-v7a-release"},"path":"resources-armeabi-v7aRelease.ap_","properties":{"packageId":"org.muctec.smartfritz","split":"","minSdkVersion":"14"}}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/processed_res/release/processReleaseResources/out/resources-armeabi-v7aRelease.ap_ b/SmartFritz/build/intermediates/processed_res/release/processReleaseResources/out/resources-armeabi-v7aRelease.ap_ new file mode 100644 index 0000000000000000000000000000000000000000..e7efabe970cf7e9dcf4a7b05bd12402ef548e582 Binary files /dev/null and b/SmartFritz/build/intermediates/processed_res/release/processReleaseResources/out/resources-armeabi-v7aRelease.ap_ differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim-v21_design_bottom_sheet_slide_in.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim-v21_design_bottom_sheet_slide_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..229d52556841392ecd23bb3003425becac330464 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim-v21_design_bottom_sheet_slide_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim-v21_design_bottom_sheet_slide_out.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim-v21_design_bottom_sheet_slide_out.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..60a03195def347da6a7ab86066092c8d99a2abb1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim-v21_design_bottom_sheet_slide_out.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..3f6b51cc8565699423b1a584b52100294a2c2018 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d390786501f6a97f303e0f22847f3d54cfbf91fb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..3959549dc9fe2a51c02c6a9c0d660c7b318e4f90 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a3f1a07977c771575d5680cc834f413c5ccbfb1f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..7bd75b81b4e6c718900e405827165f3740824bc9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..19cbb510eeff5b42c837d0c12c449d46dba7925b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_shrink_fade_out_from_bottom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f98aed5e793f4d0b9a27d304387a99fbc6d61c44 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..5a660d0b85b2e585db3143580237bf48afd6752f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1b204470fc7d8948d44ae5720f387d13d035d392 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e1c557ecc2664c55774a45bdd142e01fb7fed280 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_abc_tooltip_enter.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_tooltip_enter.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ae10d7767abf2c8b5b3be794eb0527b1ae884128 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_tooltip_enter.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_abc_tooltip_exit.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_tooltip_exit.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..518fa0585db01a0f850b0c2017202fdbde191c80 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_abc_tooltip_exit.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_design_bottom_sheet_slide_in.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_design_bottom_sheet_slide_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..eac7c008d0a52fc5319c14034f2ca06151066197 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_design_bottom_sheet_slide_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_design_bottom_sheet_slide_out.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_design_bottom_sheet_slide_out.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..aae41ebba9a338a0331e6e10ca0f0af7e5a0ec38 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_design_bottom_sheet_slide_out.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_design_snackbar_in.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_design_snackbar_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d9ee96827bf7ac24640643a9b6da69b942e9f173 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_design_snackbar_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/anim_design_snackbar_out.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/anim_design_snackbar_out.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f085c0accf05dc820086aea927261d9bf0f1cb59 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/anim_design_snackbar_out.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/animator-v21_design_appbar_state_list_animator.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/animator-v21_design_appbar_state_list_animator.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e612e2d090ef8e531deb67474ae1010780942de1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/animator-v21_design_appbar_state_list_animator.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/animator_design_fab_hide_motion_spec.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/animator_design_fab_hide_motion_spec.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b986a743b7ec450a1ab2c0f79b07c5d1cb89b5d6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/animator_design_fab_hide_motion_spec.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/animator_design_fab_show_motion_spec.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/animator_design_fab_show_motion_spec.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..607918080876080cda48a935451d5d64b92e5d6f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/animator_design_fab_show_motion_spec.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_btn_state_list_anim.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_btn_state_list_anim.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d941cb353a6bb6c4b6ac520745593278f1835c33 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_btn_state_list_anim.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_btn_unelevated_state_list_anim.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_btn_unelevated_state_list_anim.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b45d0bd436ac803c6b0f5a242f5d4ec04a17b379 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_btn_unelevated_state_list_anim.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_chip_state_list_anim.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_chip_state_list_anim.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f613665a26ea1b9c22cc9e04ba4f69ed926b02aa Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_chip_state_list_anim.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_hide_motion_spec.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_hide_motion_spec.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..fedf4f277345d8fa91dc00b78ec294decf95376d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_hide_motion_spec.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_show_motion_spec.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_show_motion_spec.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ca3d9ad540267c3c6b4b2f23df8ef25601ea7fe5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_show_motion_spec.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2ecd23350b7e3dff973127e05f9fe32263c1bf9b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_transformation_sheet_expand_spec.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_transformation_sheet_expand_spec.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..edc31b9d4428aee0ee0ceb5436684f3ef856736d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/animator_mtrl_fab_transformation_sheet_expand_spec.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color-v21_abc_btn_colored_borderless_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color-v21_abc_btn_colored_borderless_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..aa0c6026dda3ad0efd64b0add54771568228ea4e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color-v21_abc_btn_colored_borderless_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d3f02cfc0c71c3fa36df8dc07b2c276f2025d748 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_borderless_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..13929d844973cc623dfd9bc7d6457c91232d8bf1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_btn_colored_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6a307876a16277816a4b862d692cb2bf9020ec0d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_color_highlight_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d4a0ed89f0c9c54394a634be9c6610a0f49e6e6a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..9dd748a40408cab2f169acba6bca65c92d135be1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..040799898e086915d05934aeb821ea2226b07212 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e2772bf16c7fd2f87393b2e22811d9aae94c6a55 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..4dc411f15e75d706ec74177101b7633dd73b170a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..126ca1d5adee0ea2e7160c7688e94f074083579a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color-v23_design_tint_password_toggle.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color-v23_design_tint_password_toggle.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..dc0eab9097fad0198b10808e81f74103b086a48e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color-v23_design_tint_password_toggle.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a64774a37c8402a828c82e9d2eb2d2f8e46f12cd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_light.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..01d3c29887774cebdf164af9f3ec51cd6ba7a1e5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_background_cache_hint_selector_material_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_btn_colored_borderless_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_btn_colored_borderless_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..65e805b956e8383e9829504a268c2c6495e2fa3f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_btn_colored_borderless_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6407377afc4a5158d4e731a0c310534b36303e7f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ac7e62dd9acedb2c015950cfdae31ba6e7e27312 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_light.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c34eb0c7fef997ab4f87aa6c38decb0b15b4f98a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_hint_foreground_material_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b087374c5cbe907c73077a981b3c3302616b3a55 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_light.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a0c7d0d787f84cee8579fefca55d0cd87021dbe8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_disable_only_material_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..280ed18a5237e10c7cada7a0e3205480255b701f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_material_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..4aaa5528e2d82a7066e28c0a9b4067a40f58fdd9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_primary_text_material_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..8b4ead0dc514ad93dbd13d29c115c659e912aa0e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..bdff35b231f71ce83ba1ba7916461ff95fa63fa4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_secondary_text_material_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_secondary_text_material_light.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_secondary_text_material_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..8dc700dfb889e027c28bc448d07c680aa1de211b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_secondary_text_material_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a8434988313c7f2aa6ae556abc4b82f10b233c18 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..bdebd9cab4bbf167c1d6b7612f86d745f67686f6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..15acdfdcceded1a1813c6f3ddde6da2908d12ca1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..41ee64288cd88326188af15383c3d2c3efb57267 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..fc98572415b53bbb88f83ab275275b96ff4bf402 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e288e2b024cc30f9621f37f6a3a80a447bf3a502 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_design_error.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_design_error.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..101c18b01a1dd108776e047195ed128586b1791e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_design_error.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_design_tint_password_toggle.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_design_tint_password_toggle.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1dc880d15fd567eb36f2cc68021292e5c6e7e4c9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_design_tint_password_toggle.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_bottom_nav_colored_item_tint.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_bottom_nav_colored_item_tint.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d3980e28325350e897960aa90e193fa8dc0ed5d7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_bottom_nav_colored_item_tint.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_bottom_nav_item_tint.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_bottom_nav_item_tint.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..57d132a23f1b5cbd83d04380a99462d098280494 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_bottom_nav_item_tint.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_bg_color_selector.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_bg_color_selector.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..662da86cb8ddb81e23566015d7b6cd0195476019 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_bg_color_selector.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_ripple_color.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_ripple_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a63be880553cad7954161378d1d4759d63222dae Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_ripple_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_stroke_color_selector.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_stroke_color_selector.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..5b5b903c3ecc8ae0915e3f098d2d16bc1eaf0597 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_stroke_color_selector.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_text_btn_ripple_color.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_text_btn_ripple_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..bd2109fe80fe9b0c728210307443258b0b85323d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_text_btn_ripple_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_text_color_selector.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_text_color_selector.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d0884fe5e9e7d29f70795aac8566a3bdfff2c352 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_btn_text_color_selector.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_background_color.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_background_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..00686057a4785f56ba72fbababd3e8f8e0620eae Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_background_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_close_icon_tint.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_close_icon_tint.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e4c45fe3543eaf39926bbb543f324d14809e59d0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_close_icon_tint.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_ripple_color.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_ripple_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..aa8bfa5c1778e1cc5d6e958645dd5047162adfde Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_ripple_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_text_color.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_text_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..77fcd75e122ff593695e19e6bf2fc17d57a7b27b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_chip_text_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_fab_ripple_color.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_fab_ripple_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b708277cfe2c68867485e8759674877a377dbe0f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_fab_ripple_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_colored_ripple_color.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_colored_ripple_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2a64f34801485921b81f802c9f0fdff62598db3b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_colored_ripple_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_icon_color_selector.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_icon_color_selector.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..fc21f7c1a1add2acd2f8b63a253c0ce64480827a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_icon_color_selector.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_icon_color_selector_colored.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_icon_color_selector_colored.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..12522772806d66e64237e3064abd6218cb354024 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_icon_color_selector_colored.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_legacy_text_color_selector.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_legacy_text_color_selector.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..288fd8ba6f5effc7622c1fd7f3b1f9b20249c283 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_legacy_text_color_selector.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_ripple_color.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_ripple_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1a5c34975037e3592b4bc49d221699c3d85a4452 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_tabs_ripple_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_text_btn_text_color_selector.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_text_btn_text_color_selector.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e69726e7ddbe1240add973d931c508cf4d08fc9f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_mtrl_text_btn_text_color_selector.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a26466055a7d969ac3d79f79de98d311acb845c6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a034428d1dacb55dc36b4bbd2d7e0e24146f365c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-anydpi-v21_design_ic_visibility.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-anydpi-v21_design_ic_visibility.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..94bba8c817fc34bf89da608abc909b71869795bc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-anydpi-v21_design_ic_visibility.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-anydpi-v21_design_ic_visibility_off.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-anydpi-v21_design_ic_visibility_off.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..66302fdf7114f5f4488a7e5eed086209e8afd056 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-anydpi-v21_design_ic_visibility_off.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5fa570cbf208aa1fdacf9e2bfce040254d83ce4a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b0ca075e42a27de21f3d5aac82fcef28effc0b30 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..53da01677297cb24e3b65bdd77f54c0ca2e115c2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c1c943e3dc2a9377a80a2d542bc83d1842f8e723 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5f2fd9c6dd713a116f5f7634b6084bda6f15f2f7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..bdeb55a1329b920999d1236c5a6f420a9dfd7a5b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..93a835679bed7a8ff1ec45675713f387445d883c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5f0554f7a390c9b85d645cf7212e1960cd87f516 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..dff36e9ee22f6d1db641ced84e923b26aaef06c1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5f35752ee0b69ea99eaa35873c1c074c16cad891 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..9d47245882695ff9af676c12b1325ffbf475945a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4123cfb76c1f799a44f39ee7d2a1efe7e3b82884 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..0396428c81e7036d06b5102a0a28133a1371c6a5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d91eb40e8dec10891763961dd684e8cf0099d1c6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..76259957f7875932042cae09153a10c0624839db Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..eca4415d605d12d9cdd00a80e57df76371291c58 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a3dbfce51fd7b8719ee8e293bd551a2cfe82affb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..437a0bd0836516493a3787558412f8689556fe6a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..219f968a472d8be4978c476d07c4b2513d2e3384 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..397b549d71948ecc13384cd272d715cc2ec2d15f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4178c99eb3818b4718876f7e85776ba21908db17 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c37081d768fed4bff8f3c038e5d8e07725415fc8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c29215567efcdd7a4aaf6cbe778e7aee601ebc48 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3e65a4527fe0f4271b5f8653b78217ec2accb199 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a7a699d6bb4d06a7826859d6774baa19d86af8cc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ac46b3b61d72715de0da8b40bb2a2649e57527d7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..410148ead4b70f2927a378fefcfe7062747d77d3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..688acbdea8df0e02ce2fd68a02c2b271cddf786a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1298d71e6846884d89f79657bdad153023cfe953 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..34b89dfc71cc19ea603d4b107e388512dd2a14d3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..35577df2bdf12c5246c6db03e3158c1be85876de Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ce3576ff87c4152e4c8047c2a5a0447b042bc35d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..88a793cf8af9fa743375e64d67dd4cb431616fe8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..62020da81c2cc215ad1526610b17adcf39b408e0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..95283e12d020c0fb4824a889266487229498f087 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d19d6eda2ad872c0b2dec659dcf987ff91519bf0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5bdeb3bfd24d261c68e53a4e8242b94d160b8320 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ca9425268304bfc3fdd653bf5a6f666c8362c751 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..9344a5292bc720db10c1b1d80b47b1ea39c7ed65 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..381cf77e7052c75d0c2b16a507ae235f5e7f6321 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..164fc4e400e62260289ddb4fb3643802451734ff Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..07a2323fbcec9b09c31f6cf581c32230f797eb00 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b6cb69312b28ef0c8c3db5f9ccdcd9dd42a30c92 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..87bb76efb1efa95dcf90c0d5cfc5a5b8c9a6f42b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a2fdf80cd04ca6219894cfc6c68945e95831936f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a42e92bb5e954bc93b9c2725cfac78b6c36b83cf Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..9a5d1b86aaa1e3b124596f4700ff411126269ce5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_design_ic_visibility.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_design_ic_visibility.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e7858b9da6c0727e59b072ff42c4b7b919d13522 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_design_ic_visibility.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_design_ic_visibility_off.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_design_ic_visibility_off.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3949e9f90c828ab230e54ab9fc067a79ebd77d17 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_design_ic_visibility_off.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..83122f1b126643487f2ec7bc5ed488edd4acb96b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2c16aef41ef4c14cab75801983e07e05ee5224a4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f440db3ba7d71662413fa7fe7de393917c9dfa02 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1007e83840d8d79fcc1c286f6f4234eb535c0f4f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d8f7604e2f0aaa12f992f181288418eb51cf8f25 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_call_icon.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_call_icon.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..97e84806db3c4e1abac8cc6fcae25ebf8c04d979 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_call_icon.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_cervantes.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_cervantes.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8d58e97fa5aadad934a914944b310e14900292f5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_cervantes.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_chevron_left_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_chevron_left_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..09f8a686eda8f43dfa8c5c4537513623893feaf4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_chevron_left_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_chevron_right_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_chevron_right_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2ec9e3691d2a3dfe2c26c0e9cc56e64e39718880 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_chevron_right_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_don_quixote.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_don_quixote.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b8530bd586ba43997a7207e6f42cced9c0d5ce78 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_don_quixote.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_fritzbox.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_fritzbox.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..012873a92a19f9c9bb041729cbca934ce4426c29 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_fritzbox.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_fritzbox_icon.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_fritzbox_icon.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8c1bac1619171a235aee480d6860bc60a8815b6a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_fritzbox_icon.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_lance.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_lance.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b6bf2377872b1c9988950308823c5f61076fc278 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_lance.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_launcher.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_launcher.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d5ca524e326d17b8d007ae8bce6a1f78f08fad74 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_launcher.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_log_icon.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_log_icon.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..daf0a65a683bd175919a172fd3376afea8ceef6d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_log_icon.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_menu_white_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_menu_white_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d0d137d45610c4d2b357cb91c6be9bae079bd718 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_menu_white_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_1.jpg.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_1.jpg.flat new file mode 100644 index 0000000000000000000000000000000000000000..36b94b64ce36e4f786d437ba5defe25250bf4b5a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_1.jpg.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_2.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_2.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e27f05c4c8be7337b9144964d8d5e77f8f610eab Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_2.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_3.jpg.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_3.jpg.flat new file mode 100644 index 0000000000000000000000000000000000000000..20e057a720f55a45646f9fc1df90930e5eb81670 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_scene_3.jpg.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_settings_icon.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_settings_icon.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..79a1e0177083818732fd5fd71693bfdde9f6511a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_settings_icon.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_state_icon.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_state_icon.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..22e2a22c54ddb2cc5134dbb44a6692c0ea20c3bf Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_state_icon.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_windmil.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_windmil.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..346e16641608670cba9db2fa106d590c72db135e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-hdpi_ic_windmil.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldpi_ic_launcher.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldpi_ic_launcher.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8f203c820599da944366d87b00455ebcda02a83e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldpi_ic_launcher.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7dcc4f8fd4e59cb3c94e60ee788f87750250382e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a6e1fecb7888781305a0ce50b67b70c70c8113ac Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1fd34435e008f4fe8fabaee264d1bdd5ebbde25c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3405af12b2703d1b52172b123894fbccbd72243a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f2594f3d3f1e11fc4b8346b7b056fd22fa10df3b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8875a99f063b6e1fdff88fd1d0be968e39fffbf7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ecfa083c5eea66e9d46a9a7ca0c41b5bc94c17a2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..04841cce0fb27280a435cfdc989eb91d793e0264 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..cd69553f7179a3dca676d31dae1d30b05913aab5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..44677899118335f1fbf9d935b0997a472e630b5b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b0ea54daa4a4776a6e0538422601c77838ba31be Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b97fee5cfb1d456f57d93616df8c01c650d95015 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1182c5b61afba11deb2c59e54f299cabdf589743 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5e49053c508ea94729635a9eb425329773898636 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c0d8978d02eeab80a8f2b78f5bc0d84a49580a51 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a6a4b0600d80f3af3c14f152b4cb58626668f0f6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e8b132540497d6fcba7b4dfc1a6db0f87eb17d54 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..37a68baf1744a71c22f3fddd7aa75a1777b4015d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..91e76046f00e01bfec149bef74dc07526b2d8eab Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..17ce6b249a8db44167c37864f75eacfd5198ea1d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2cfcf9df74f358c9806fe6ecba6dbd8c99794d18 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5a7e59e5e7c6692c83d8b4c26accc6056b2420e2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3cc4f97d0badcac6209e53f410d8c7298188284e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..0e831dd087c416b8fa388d1bb0cc3ae46a114b79 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..70970e09971bf4d8602483eefa3a159b4cbd2b72 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..06e9a8f912ee714dad76b70ea8bba1c1d091b287 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2f25e70063172ca0dd7a923898b660dd7e8d450c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..209d797d9ccb56538c31d1b2b91a7bab283fad31 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6f05172beac4904b4f88a628559cef21c5ab2b2c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..9611db6e3c16c2c27049edba2d690e0a99fb6cd3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ad7f3d399815e8d2dede4337aded0c52f83a5402 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5550f9d32619eb4a17f712f76863eb5af77bb107 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..9cd95d164d9fbb6b7e43df15a33eb454ff86ee78 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..cf7b958268e582099b1894d30812bfc90adc7684 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ced82e21a052b1b744e385450221a960dfa14dc3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8867281ced8d8be09d71632619a65777bb06f778 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..038047457de222fae754bfae1cc481a23f385936 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..470d576e1d4bb1b9013fbc07a9aff86cb5f94cd7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..adb42852b85993805793719d0d730cfd8ec3461d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7a58d8cc143b4ef368bc6468dca1c616cae59f84 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..33348a463f60a7f339ea66b847d9827194393310 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..fdcd563e4b855136f94f072ef50fd8fc230b0f55 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..698a339680646183bdc4a63a6a70e1a4c610c51a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..960ce54f79433bed5c0e19abb84a9d1b19673acb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..48623b2969216ec8fe62fd218ca2d4eb1844006b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..563060a0032f42f28bcff53c4e310dfb1c965a21 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..bd0800ca64f807db4f5e7cd315311ce708545257 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a6b6b1adc7f9b8ac70c2b2c0467cab1ab0e0894a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7c5009ce1a5e62afa0aa01beed91db71c574d70f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8398e2b5ce0868824540bebaeea53f454677a61b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..61e8ccc433d9ed31a02ec2bc2e427af00767ebfa Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..880794b186a2ffe34a1714ae49de965bc0f5be2e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..006c7df29ad60343139d755cc670e751c6d17f7a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f9f37b02e95f8f03f8c8f7fc9c71ced7996d41df Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..86ac697cb51c8866e183bcbbd7debaceda4dad58 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..00ae2b417e5a938d1982038aaa46b29dcf6a3433 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6ca3a3a66d5398e2f3a86e785c5124a7f4076e6c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..95d0801be5445f76c5d4ddcb1c72422c7585d6f7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..796e3a5f29b7229d4154d640381da123a0e01804 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..028a136e82bfb0d9de43914bec3f6ac267ea7cd6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..fc94e1cea2edeff2c62bba9f55a6e260691718c6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..212e7bea95047d34ac1b6510aae8dbfcaf2a73d2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_design_ic_visibility.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_design_ic_visibility.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4f43b9004b4abd0d0c815ec8683fca30bf0cdee6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_design_ic_visibility.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_design_ic_visibility_off.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_design_ic_visibility_off.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7d47c023df1cabeb96839f94b5c76ccf37db6a7d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_design_ic_visibility_off.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a648e7700d1418acd5de0efb78b94b08023f0a8b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..63da03e521e3eaa852fdda550d9dee2a59cb71a8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..94d2cc1000954ab68b51ee52d9e464906afed640 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..0c0b08935011fe39783dcb969ea42225a567a809 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..fd2f73c44ceaa493997afe4c168789ceb87866aa Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi_ic_launcher.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi_ic_launcher.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f452b4bff87658668f7ca31c1e8d4bcab39ae92d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-mdpi_ic_launcher.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..21e34eb680c3b83c0bb09215032e09771c32f754 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_action_bar_item_background_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f74ebafa427df5e56194d5bc0f2d773a7d19785e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_btn_colored_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_dialog_material_background.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_dialog_material_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..bf37a32640530d1f1c5ac54a9a26a64441537e60 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_dialog_material_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..cec1d1f1524b619e5bcae88949eb3a73b86d41c9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_list_divider_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_list_divider_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e4fe737315f9c981aa2c2ea4a375b529f00c865c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_abc_list_divider_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_avd_hide_password.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_avd_hide_password.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b92b238efa80579f52a3655ea05960257a63d2cb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_avd_hide_password.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_avd_show_password.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_avd_show_password.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b365311d468ecca2cbc57e2c813d88cdbaa09b45 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_avd_show_password.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_design_bottom_navigation_item_background.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_design_bottom_navigation_item_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ea3ac4f931a2b87958f81d0ac3a55005e19c7948 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_design_bottom_navigation_item_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_design_password_eye.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_design_password_eye.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ae43695f1003e93df0f3f98ebdd003accb69aa8b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_design_password_eye.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_notification_action_background.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_notification_action_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e1c1352fe880e51bd1a73e0b945a19dccfbb0d65 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-v21_notification_action_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-v23_abc_control_background_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-v23_abc_control_background_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..31372433e5ceec754cc5039d19c6eabf5a464861 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-v23_abc_control_background_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-watch-v20_abc_dialog_material_background.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-watch-v20_abc_dialog_material_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1fa58cf17639a4903838a9b686cac594849235ac Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-watch-v20_abc_dialog_material_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7c4f89c5e7d34dc22e5d693386ec81732424ead6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..644680b13296d36305304bd3105de0f86914fc21 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..71b624ea7e4dc9171b8e7bed816f21ceb03c0422 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..367b072322c52f054e69a2f4911b595ef71b3074 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c8382427d529e28e4f1698a05983abd3949efa43 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..da3cd74b4ff0ace371cef8864c2fa383fcb27d7d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e59cac6cd7b0305187791a086adc020bb65a4da8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a179967f5885b3244102cebf46efa426b6021da7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f320e45578dac21fe5b24fc8d7adfd3eb24cc96f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f372d08cadf0a56b02d5fc7e3fda2f1b1cc59f20 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..495a21f55db0c248cf3683a7f6104d81a1a22bd5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d6b0529faa224c7a063219922273ff8df5dc7c0d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4738f2659feffb7c0ba3cac4038b45624e763bb1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3ea051216e90ec12d6638386ade04f509a30c83f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b560817b4cc5e566651d86e8d9799b677964d8f4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..756345198b37195f77b87481a00bd5453d2c8e8c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..980fdcf995efefc9715c7cd07634653f30ca0705 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..22d8f2253cd38c0a0dc30da9264589353e6485ad Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ab753c317b803d702dcf7760aa21576b2249758a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..71dbbefdcec6c53e9f8d2baafd7dbc6be0905793 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..996e00fc0784b06a45c5b885a564211788dd354b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c677f5caf189127f8f0989dd8a9db8ceddab13c6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1e8ffd55b6f5391b71f53f8f5f71b5af210408b8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e88968407260cc7d2f7233c20dbc745f255eadd5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..130eebd2e6812767f64956055e200f73fcf4a498 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a67e8e7e14e7907723f8cc7e4ddfeb8fa4f57395 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8157d074688fe8149ab9ed1bc2916a72bc88214b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..274a636639239132966e671229d1ba66810696f1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..966b1c1ca5034da04b9a3eb73b9cf5833b5c0a89 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..9710a7066402afe8f29e7a35f6f78ec6de63bcdd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6ed14477f2518d539d8ef3c916a55b6f2b79186e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..87fe5894db833d6a68ea8a6ffe5060f2a5b779f2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8a8c91770c90e12d560d5c1d64034f836a006615 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7faf5578f43cd2ad96343830dde9166de577dda9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5b7bb14cd2f235448dcb16af03bb88a6c6573936 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ecde1aa2bc7d89a6ace4686334e23f797750bd78 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c68ac589fb738832fbbf55b6e3ed8cb4ec5b09c7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..66a01bb037d958c3492dfe5a356b47c4f1474fb7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..06159b0fa331f6b9d70c24be8af4b845719ce2ec Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..cf574fdcdd390a17b9bfafa33a12243c3faead92 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2d735270c67502b4adc3521ca8f702969bdbf600 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1488baf00235524bf4e8baa56c1a9e1f3f511103 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..edad823e81699e9601ebe427e5b78f64b712e670 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..115a26d4c526d71644fec66e96365b30a7fa2f47 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..573e0ce6492435ae7b7db1cf019eb24a98c73566 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..45858a9bd8f48d2dc901c1db023b380ee4c0508f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..669cd8a3b97498b55a8919a3da179ff84c1927ff Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_design_ic_visibility.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_design_ic_visibility.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1ba3cebd5325b9ce78c7e4ae4d4f9a251ea54cc7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_design_ic_visibility.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_design_ic_visibility_off.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_design_ic_visibility_off.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..adfefe8cdee5e1210edfa6998270e7a5b9877ba0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_design_ic_visibility_off.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..40ad4739ff84976b57581ab78a6e3c072a530ffc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f0b50f58cd1c770d1be06bd444e294a5ecad03f0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..fa4be5f92a00a08c5546a6f4b666a6622dddff94 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2da2995850e3268b4a15318a9a779c004d1dcf88 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..9fc60311b0dd1860a38ac0949f01b7b9ac059309 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_chevron_left_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_chevron_left_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4aeca80483b49987eeae030911126300f201ae72 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_chevron_left_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_chevron_right_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_chevron_right_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2edc5fd84b5d9aee4ec81d6d77245c47ba98cc1d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_chevron_right_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_launcher.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_launcher.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..db6ca8c1a1aef892587201c13186db9fc0d79d66 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_launcher.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_menu_white_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_menu_white_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..77d20ea79d4479557a2b5825d429f702137d2842 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xhdpi_ic_menu_white_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..59cfd67421ab3ca9d2c52d74e2f7e1a3e4433ddd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4f81b521b7b2911e4abe7f6b1a8fb823f2789c2d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f85895f827a36bbd5f456132619d1118809a2e27 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e92bccf733b18df8c08a34f1614c0acdddc7ffb4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4416f268eeea728206cd299ca429433f367b0a11 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..91f863077590541b4230ef7296fc506948864cd0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f263f3ce2ee5460e4146530f3fb6f75e1285dbfe Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f0146852c01bb4ada88eb421849d73e6502766ca Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d43d400683a7d801c10553985951595a7a92fbf7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8c6a99c78ae26975b624cfdd2be237f669c94c74 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..58fef6ce85c1d4b0f981d5f7d37d2739515883e1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..474dcdf3b2c3176a8da8e5ed22a435808a463ca4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a28c94d6f05cf6be62999a5794a4d5031a4fa4c9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..36bc5f0e498eb92f1dfab9cc53d8b835cf9b9708 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..bd73c1dc8b9c5c73b367325a9cb45f347a41737f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..caef6442300c4f04cbd16b4f88b3de8788722d9e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..286e582c272a38a17b396175ee119c1075fd0363 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..041d559f6306fa5e82da9c70d03cba7114a60a32 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..785f229bf12bc1cd55c3f75cf36c839ce749e455 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..dec4a64d467e6abca7909857411c58a9c541148b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..714d032160c761fe3a5b8582f219c692e7675836 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..14924a66a4fde83af901a8cbd6ac955eca0bea95 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..838c1c0197b01232e7876a333a251d8abbe5796e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a2af1552730b00f69a4c19863444799dd070a31e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..47754a23bd565b47a313a6a46de463a7381a6a61 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b136db15f640004a351bbebcc648051b228d0d99 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3c496de72924c9cbe5189447a824de4923495bba Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..62ef15a95a5105bd1ab311e41fcabe69af08d637 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..644777b5486abd5ab464a25cc1d092c1cf9226e4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..90c3de29043d17645bdf62031b72358d107208db Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ff26fe8034fd4c5461de28a1e7990cd0eb33bbed Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..62dcde14764010960325bc5f357e54a584130c05 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c486a5ba53b43e2b476ce18a4a15070caa4cbadb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4cb6b2ae3c1dad30af4f302c977ab3a16e63a165 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6b2bc11e4d1e633fc2afe76a60a51fb9347abe86 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..186feeba9971cd7d812120c3694514034070f3a5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..31922cb3275c42189165bba2899329405dd029d2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..68615e3e9a372bf9a8c945ee4398b73768d90c40 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4fd3b19ef3e40dee97ec334c6cc47642f4e215c5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a2cf2f8ca5982091787bd5166d8eb0733479a7c9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..facaf0d552fb8f2b61bd6994d14e6f5e1872a4fc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1a5f00dcd2a125178b62497ada1a069c894faccb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..cf6399c8d391b444e44243da9f9c930b7038a7a8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b6fb44740ec87ab3806a5bf724261d041d75797f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a189395dda3a72c6386ac1f0387968ffaddf5be4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..65b0cc171e7587a31f648451520d919795dbf1b2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..031d7390c1ecf31f452eaf64bca56f2c2ad21f7f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_design_ic_visibility.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_design_ic_visibility.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..09f96a4060f27b2a4940e439ad6fcdbed47c2886 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_design_ic_visibility.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_design_ic_visibility_off.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_design_ic_visibility_off.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a7f33b708f07ade8f920910caf0455298b32d55a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi-v4_design_ic_visibility_off.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi_ic_launcher.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi_ic_launcher.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..af7e1eb1e8ba3aa9243af0e39e44e7f7caa9e3a0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxhdpi_ic_launcher.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a78448b2ba99ee9d55c2de31efabc499ca436926 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6586b9f756c144eaedaa97c45119723802adf8ef Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b6552b84921791ef0af9f1c90418daaa11fb4dac Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ef540f1a9b8afb531f7621d12316633afcaf8cbe Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..78752624940b0b513192a8f67abb2a0a3a973072 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f3c8dd05c9480aa8350a47a45612a972c4009efa Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4a9779f3c88962457a4960840039c43871fb655a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..560489bda8ab1cb9f9c2a27efc05a860cf003c38 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..cd4bc72aa2aa7651335754001206b483490e2801 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1282774e847176c310077d672d7f7b4da4fb1053 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..61374a657dde5db8ec66153152bf7723d9069f8f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b7485d3236e9c62b93bd496a34553da965e3370c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1acef080307d39777d4de01c134ae127d3290453 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..0e428ea99c2f61fbde70e8abe515f1e44ae1875a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6ce80dcda16195ccfd7893b26c9dcfe319511ff8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6ee16106f9ef80ecbfece5fb71c626199bf109eb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..364524dab0445b5f5436a2df7fe39f0811f53250 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..28c2369a44e57bb384cd79931283ade4162b7439 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..0ca30da9e795bd5a3280f1aeef0b1020cf16bdeb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..cad2cae7a631f4ea9ac34b987e565f09765946ac Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..bb40e46dfd8537f1d43ad0d0818ec698f0ff9d12 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..fc2ce24e49278b71cb20b2da842602e36f530268 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..fb53aa6907544c884b98ed73be856a3ad57fb37e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d95fe42bcbc7fd616acdfa00418703d37854b2a1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..0a2cc16ebcaa541f531fd91e90c51bd138e2b628 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5f6321220a7eec18a704f09d4fd2cc3d5cdfde10 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_design_ic_visibility.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_design_ic_visibility.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1b7d2fb64807b30fbd49c0426832e2d7f4eb297f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_design_ic_visibility.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e7652470335aec6f9441f5abdf4d705af24900ff Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c39fcd9704f203c9f3a16566c8951ff6247c7e2a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_borderless_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..de5de5e67d64b967413a561c011594b7b49fbdaf Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f995add1947319464fe8db25c9f1049640198670 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a7bb55c9b1d7e4db54812efeeb48b06319d03c09 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..df88680b3be10d820a9aed7e6d54695dc97a005e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_cab_background_internal_bg.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_cab_background_internal_bg.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c34ba11553a536e651ea52a73684bbf1b401a2f9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_cab_background_internal_bg.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_cab_background_top_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_cab_background_top_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..80c063ea77427d6d48e264da320a696301f32300 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_cab_background_top_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_dialog_material_background.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_dialog_material_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c1be0076f4b849a40eeb1d9d6bdfb9eb2f070786 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_dialog_material_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..856ee6cd30bb907fbb833f82d792231f25e6c493 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..803fd3a3f5294353bf46f5ba3e8b9124d30b9b42 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2a7a1adf66005dcd37d3d3a5c4fba9eb7270b91f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..794aaae16d291ab6b2b64e07d780d93fde257e4b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_go_search_api_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_go_search_api_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..413b36bf511f48ecd1f291623164a3a096333b65 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_go_search_api_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_menu_overflow_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_menu_overflow_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..cf52d719af141080e8a058ac7e69a1fb8e2d22ab Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_menu_overflow_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..625dda50ae26265a29f0202129df8ec4ce458fbb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_voice_search_api_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_voice_search_api_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ae8f414ccd901b7dac2beeda0caf1caed404deff Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ic_voice_search_api_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ce6a6da56220ebc977c0666bf1c4c0e6685d1213 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_light.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..410f23eb00de19cc330d0bf658d7be1f9455f9f9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_item_background_holo_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_divider_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_divider_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..adf733193ee9d618bb1fcad86f2ba5e4ad3a3205 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_divider_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..0f34d9fb4f8257f622d68b46e0c177701077dd3d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..38e277a23ab710d6b05dfd844acb00edd5770e35 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_background_transition_holo_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..764c2dba5c6709cda0e43ea12313c6ed4f589962 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_light.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..8a1346841c080dfea8cf8365eb35760032096430 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_list_selector_holo_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_indicator_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_indicator_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..af1191403ae6a3dcdb8548bb7a18d0e125617965 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_indicator_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f444780fd283d71f21de30a59c25fb63ecfde017 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_small_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_small_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..eb6d96518e299d452d91be28f25df7a29bd61f92 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_ratingbar_small_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1be9977902cd09291074406b8a43fd6fda3e0588 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_tick_mark_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_tick_mark_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..32e18f698af028dbc0d9c9f949fd02732635a960 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_tick_mark_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..df8920ed3fb5a88c572fa3e1ade007330b8895e7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_spinner_textfield_background_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_spinner_textfield_background_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..06459aca5744b078b6ba2eba32f067a945c906e1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_spinner_textfield_background_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..3f232c238587e18c27668d3fb2150c35fdff2df7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f6a376ecadf70161a95bf0303b64237f7c124957 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a9a8927579e727054114a6a76105cf6600a0951c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_textfield_search_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_textfield_search_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..da2b8c47d3156df998eb0b04d9ebd6610a7c189d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_textfield_search_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..9d34aca5f650c4a11b4a980fde3fdfde62f78676 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_bg_material.png.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_bg_material.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..fa7ff0f18b832abf70031d10c07be65680b8e672 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_bg_material.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_design_bottom_navigation_item_background.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_design_bottom_navigation_item_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..fbd6fe553f4fcb27e5c841d3e3c337e42ac2f5f1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_design_bottom_navigation_item_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_design_fab_background.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_design_fab_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d4f5ecb8a9054b5be6ed7fa1a40bec5cb535a87b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_design_fab_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_design_password_eye.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_design_password_eye.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ecd5471a6b16bfe21eb19e7976f08efaf210e503 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_design_password_eye.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_design_snackbar_background.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_design_snackbar_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1d3df853d1838461c9c2bd3f12d90c9502a10c4f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_design_snackbar_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_checked_black.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_checked_black.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..fcd258f1420dde70c8f1a0611d503467ea1a336b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_checked_black.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_checked_circle.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_checked_circle.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2d1cc92ce87b9d48c07ae1bd062828a1b940c2be Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_checked_circle.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_close_circle.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_close_circle.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..68300319edcdc92cb6e3cd6cdff09ae551e30df1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_ic_mtrl_chip_close_circle.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_mtrl_snackbar_background.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_mtrl_snackbar_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..7a1a3a5c31b9d043fdf6a7a9dc84ffb5993604f6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_mtrl_snackbar_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_mtrl_tabs_default_indicator.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_mtrl_tabs_default_indicator.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6dc543e0bfe9820ab83f74dc0211090ecdcfb81a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_mtrl_tabs_default_indicator.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_navigation_empty_icon.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_navigation_empty_icon.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..7cfb9b1dd4cd72d801265c6bc4a2e512e83bdd74 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_navigation_empty_icon.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..7a0757fa5add4379190b360871463bf6415a2c73 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..be0c2edb68bf1738b9e4cacaf0249db9586e2883 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_icon_background.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_icon_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b666063d6cdd42914ab9d56622e921d6aa0b1574 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_icon_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..65fd4fabd8a2b1c98f8b3f0c920ec58f3e5d0328 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..3c7a48aed2f3bd9cada31301c03e5143f7c74b80 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..797a004b6b205cf81269f9826c4a00bce4217647 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_fast_out_linear_in.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_fast_out_linear_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..324abdc2c0db6bb5f3bae75641434adbf0c5075a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_fast_out_linear_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_fast_out_slow_in.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_fast_out_slow_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..286636e6b67b193892655e99a8edddde5af74131 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_fast_out_slow_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_linear_out_slow_in.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_linear_out_slow_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..644c4424abe97dd0e5275a018a92c26d9c717fbe Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/interpolator-v21_mtrl_linear_out_slow_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_fast_out_linear_in.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_fast_out_linear_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..050c2b94885584a01de82e0d4a5f6928505ef97d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_fast_out_linear_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_fast_out_slow_in.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_fast_out_slow_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6805f698ed4c6f358ee5c72722a72631e77d2b76 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_fast_out_slow_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_linear.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_linear.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..5023aa81ccb751645d989618589d711e1d09b4f5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_linear.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_linear_out_slow_in.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_linear_out_slow_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ea96e906712fcb847e906db8ee2e09f8c5a84cb9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/interpolator_mtrl_linear_out_slow_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout-sw600dp-v13_design_layout_snackbar.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout-sw600dp-v13_design_layout_snackbar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..0bf68a99a825afe4e12f68f184d79c4c576fdcb1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout-sw600dp-v13_design_layout_snackbar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout-sw600dp-v13_mtrl_layout_snackbar.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout-sw600dp-v13_mtrl_layout_snackbar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..bd926c820bbf3740d06a29ac296cdfe9543d0819 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout-sw600dp-v13_mtrl_layout_snackbar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout-v16_notification_template_custom_big.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout-v16_notification_template_custom_big.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..9df3582cfb613963e2c3e0a711a289bfe919d7fd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout-v16_notification_template_custom_big.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..61942a2aa7994742d94a93f523b96684412fdd3d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_action_tombstone.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_action_tombstone.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ccd1fa855343dca6624bf559a7f3a4958c624069 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_action_tombstone.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_template_custom_big.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_template_custom_big.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..0dc4c7c65978a136228a00e6568f2e039af1e7e8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_template_custom_big.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_template_icon_group.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_template_icon_group.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..41ae4da907ead6048889fa4927b33c26873dd150 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout-v21_notification_template_icon_group.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..55da9eacb8c03166d3637445eb56e199ef62f1d7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f591e00e790c383c107e72c316731b4279939d8f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_title_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_title_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ce7bf9680de4cdd9c5e892fe0e624224064b6f97 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout-watch-v20_abc_alert_dialog_title_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..4be0891bb8afdfb7dc76c0d4b644e78f8f011404 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..9153ac9e43dff376e4921a0005e48f9e0e11669d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d322872673d8cff54b320ff797529d4271072c40 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..cb551c999c49a98b777f6267eda7b2a38ac6e927 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..490bcc68d1796a6bc5a2a8056f14e6925fa54e86 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_mode_close_item_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_mode_close_item_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a397668097eac01b698de1f933e06c24268fa189 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_action_mode_close_item_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..397bd89501cfba0a71fc274e285f474035993892 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view_list_item.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view_list_item.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2ae4cf13c92574f29ee55062847584015c0fe46a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view_list_item.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_button_bar_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_button_bar_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2bdfc7d7b76f35376ec044854bce4d501618a5bc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_button_bar_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..25aaf5fae56f4952298f7aebe86846d12eb5f8a9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_title_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_title_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..5646f8ede090f83227691710e239227f0f5c2952 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_alert_dialog_title_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_cascading_menu_item_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_cascading_menu_item_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..82e4685db31a58eb7c4353be48a890a1e98ae439 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_cascading_menu_item_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..4867f337afb648996670aff6dc0bfcfe9f5cf45b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..833d4ee93828e964a525b73079b1a62c4cea952e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1467326ea00fed3cda96801d97fcb9bab5f5626a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..5c00b3b5f5200840886599bee0ab56f19e367163 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d0dfbec24c17fd03cd476574856d2890daa75a51 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..500c9ad7892f5fb2191ed6f1ab14623f151a4501 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_popup_menu_header_item_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_popup_menu_header_item_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1ef2ac1b95f1e10c84102b5aabe3a1e81a2fad9a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_popup_menu_header_item_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2c4e5ae965c3f06746f47946647d043e884e0770 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6e3980b2ccb47df22bf5a10f28baf1cb06177d9f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a0a33b063e8f188940d4e10546a19e9345d30b6d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..63eb23ade73d351afc36fec7edf6d6512931e14e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_simple_overlay_action_mode.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2ec8a2630e32c1a01342a733a3d8be2d35c7b48d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..755286f270fd5d93a7afa63777b1b6bfeae690ea Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_search_dropdown_item_icons_2line.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..46f643c31ad623c922f58c0e8ff3362d7fad2859 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6db8e74ebb80a20a2a544bd2202e2d28a8214509 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_abc_tooltip.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_tooltip.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..de632bbe70dd23f1ab57244aeac4dfe062bd0fad Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_abc_tooltip.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_activity_app.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_activity_app.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2bd9ac537db5832f7d5bf438d51ff2b91442ba7b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_activity_app.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_bottom_navigation_item.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_bottom_navigation_item.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ee7e4685ebde4539cbcc47ee0743a96aa1348c09 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_bottom_navigation_item.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_bottom_sheet_dialog.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_bottom_sheet_dialog.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..21b352f7569051c3ee756f010e028887c0de6bb6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_bottom_sheet_dialog.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_snackbar.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_snackbar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..8ce241c2a31bbfb7890504642cfef46f317c8ca6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_snackbar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_snackbar_include.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_snackbar_include.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..856818419dc1db5abae0afaf4e4ae78127dc1096 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_snackbar_include.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_tab_icon.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_tab_icon.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..3d4797975d5a3a368c652ec81a5fea205fc3ac15 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_tab_icon.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_tab_text.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_tab_text.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c524df6c59b3c4cbc62c8f89414779769a005bc6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_layout_tab_text.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_menu_item_action_area.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_menu_item_action_area.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ec0d94435e09d8ea839bdbcfbaf23206e812a098 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_menu_item_action_area.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..84329f81182f74d709fb3b0f788386f19db974fb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_header.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_header.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..cd53e4be75edfaf77010ea0d2b71e9b1181de861 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_header.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_separator.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_separator.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d6a7dd0443e81df33ed689611698ce7eb2944764 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_separator.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_subheader.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_subheader.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b34ffe7fd7d8dcb31412da8ebf2276ad60e064cf Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_item_subheader.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_menu.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_menu.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..7a23afc7ad4bd2bae2ee3b4c2ba8cd0d0c1d95f5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_menu.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_menu_item.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_menu_item.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..9cf379481ff937e92ee6eeab2396550c55a5ebeb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_navigation_menu_item.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_design_text_input_password_icon.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_design_text_input_password_icon.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6117e729e69d3d2eefae4b3cbb0221e39aeca338 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_design_text_input_password_icon.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_mtrl_layout_snackbar.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_mtrl_layout_snackbar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..4449f6c2dd6afb8596a2ee17168f9cec623e9eca Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_mtrl_layout_snackbar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_mtrl_layout_snackbar_include.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_mtrl_layout_snackbar_include.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f4c8f450ee371abca77118b3aec989cc087b58cd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_mtrl_layout_snackbar_include.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_action.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_action.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..67e12e29679e2619289bc8e20f506a2ccdcaea51 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_action.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_action_tombstone.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_action_tombstone.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ff7c978adbe64aed2f083bdda76bd18dca2e9db4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_action_tombstone.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_media_action.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_media_action.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a443f2ef5a091ac13abb7e848c66407cb3742ff0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_media_action.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_media_cancel_action.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_media_cancel_action.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a00a291ab58e0842d940330b79e5192b9e09b19e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_media_cancel_action.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c88bcee5dbdec5fecc2db50f7cc16f54225fa304 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_custom.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_custom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6d35f14b57698e674c0c51a7f5e858e9a070b5c9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_custom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..3257297aae28070fe462117e259c37f124c0a3a5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow_custom.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow_custom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2eff6516afc968e08abba92244f7434e30e22163 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_big_media_narrow_custom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_custom_big.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_custom_big.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..dcbca8bfa3d94c615b26c2085507be469ccae21f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_custom_big.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_icon_group.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_icon_group.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..289f37b2895ad135529c2a09de0d82c8e368d833 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_icon_group.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_lines_media.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_lines_media.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2b349041395dd215606beca2d43ed7453f203b00 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_lines_media.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_media.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_media.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..0aee22abd9fd7f69067a3884a64c50a4fe949409 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_media.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_media_custom.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_media_custom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c40057fdeac11a771b47560835a0820c849dbfe5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_media_custom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_part_chronometer.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_part_chronometer.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ae73a165d4974f401fb885cbef66840732795834 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_part_chronometer.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_part_time.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_part_time.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1c5e49d82a60ae960fd939803eb554e2853fd89a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_notification_template_part_time.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1d1d7d47cf56ac0a78a156c1a6841b9e513fffbc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_multichoice_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_multichoice_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..8859196b692e472b0cafd4a9de5d49277a99ca7a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_multichoice_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_singlechoice_material.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_singlechoice_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..423db283b6018bd64fd69d3b72b30c7599fcdaff Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_select_dialog_singlechoice_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/layout_support_simple_spinner_dropdown_item.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/layout_support_simple_spinner_dropdown_item.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c45c807d6bca450ee7ef460234b5c9def76131bd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/layout_support_simple_spinner_dropdown_item.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/raw_my_ca.flat b/SmartFritz/build/intermediates/res/merged/debug/raw_my_ca.flat new file mode 100644 index 0000000000000000000000000000000000000000..4488ede43247d97d8e09a086011f1f0fb32b24e3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/raw_my_ca.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..e267686699c4c5d597b3ad35043ff9e06df60dd8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..2b7159a5b16408f8ed1a28a9ed5deb0af37e8bcc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..d4ad04c1761812a2d567dbbcec287179168c18b7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-as_values-as.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-as_values-as.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..b568e699b82c52b0722e796c11dd9966371b374c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-as_values-as.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a8b37322bfe06cfb86d2375dc5b191e95d8eadd0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..fb5d6559b1b306ab7d44cd1b0ea5984b3bf8be26 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..7a89ddfe3e08ae97d6d9cf925230f8388701493e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..e7bd471448f9a30b82f5ab24fdd4ffefd2d3bb00 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..7b50a44ea2b01d30cf6d016b892d614f0ccb2865 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..5372db04297211ccc9810c21101615604faccc90 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..64f47a726f7054ec2f703e447c2500b5b1af8ccb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..b973c60c2f0ee6e00491b06b47d085bc485ff78d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..9d246358c1197d5ced56c0b60ffb7ae81fcda5a7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..0736275d4307746a3e28557ebb76281877747429 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c32c8c369e91ab26c1246ccfba58760e10c438f1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..498d751cb4d68d34311ac5956dd160f03eedb272 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-en-rCA_values-en-rCA.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-en-rCA_values-en-rCA.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..31dc01e95bf7e0e947880437585f93694abffa5d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-en-rCA_values-en-rCA.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..859ddbc294afb2ab82d7b1607f71e2895457d8b3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..f95c8c312964ee97eb3c5732ef33a6f9870405c9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-en-rXC_values-en-rXC.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-en-rXC_values-en-rXC.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..25ef61bb7fc50add4a6483d8892bb5a3d253a507 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-en-rXC_values-en-rXC.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a632cf815cc11628d7d9057f0336ec4b3836234b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..44c4207e082ac7da12248fce94a27ea2132caee8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..277dc0ff5db05405e923888d82f496eea51166ed Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..9636dee1098e186aeb68d6eceaab6cc7dc6e2a24 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..dd93a109e1e5becbdab31e13bded175ab243cae7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..7f1269d488b3a5ff198792c639a0d9215b89a78e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..dd2b0ad065dcc9833aab102fa948ea7b98fbc694 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a5ba15973430a617926c87a596ee154be365f5c7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..7dc8b6d288eeebf675fbb8e5b204adf15a6811cf Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..3a6d304ae23ce459d220b8f13fdac7ea39661308 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..5f83786993d08fc1cccb01e8bcdf1523fd969942 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..008ffce991ac128db041831dddf1ed435c1e1957 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..fd7e448d881485bd2daf1129ea52d57a8cac75bc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..764ff657c25b6154d80a2fbf00dbd2d9ef35a0ed Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..1b723c8a9098cd22e279a3e0c75cc975431b233f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a5af3c500430393b72ae278ce33d72f3868690c2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..3100a32f7644547bf8900d95bda6011e921fe9b7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..fae2348c5fd3c6269e1a14af1cb01fda80e3aae8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..e50d760b02265baefbb0963a124d2347db10f944 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..065cc7bb7f72dffe7dc224e4169235fc7ffb1dd2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..cdc89ba83b87931ce40c0d2c94649704945d0712 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..85509a8c64925458f884b116d1f498c84b71fa24 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..0d644a41c0604f1506ba4c0295ce5e2d4b532c03 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..9619eada99d790a667829edb5f1d3f75d1f68050 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..6d02f182d1a4e1ec4ac8365fd5ff54ae7417fd1d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..3e04c37f2539003bca4faf89d335634e8b88c24f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..67765112be1428988ae78c4129abe5699a4ddb8b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..9082c5f5cb61e505154a4f751aa8094a3bdb2280 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..f8afa8bebcfc515115c33f2da06db68aefb1c012 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..41cf2763298c6bfb5dc49bde7dfd7d31dab84dd0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..5c7700a6e424bd1aed9614e800130e6ae54bc337 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..2ab1fe724d6b5bcda4fe18cb5e7791341a8fa4d4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..3633ed12815e5ed4913575641e6b0212377d08a2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..187634392a45a0995d03946a4068d1e792f96404 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a97c1b75db7c63c0a88ed253999de594a98a537e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..697feeef175d21b847fa90f94124a4efc4b6648b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..798d5631615fceea79e807fadbd9a6ca7f090fad Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..d31e86ef0af559cf73273f651816b8b2728da40e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..efe5033c2c152a25c9f92c9b3c6458999f5ac57d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..475e9fb2f6f1de9d711e92aa960101e564ce1d3f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..ac0f471072c4fb6fdb91e82c45b0ddede2f696ca Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..7718498c40681902e5d51a90418f78e8c89a95fd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c7c030938c4a6b20618f8776b8c91402347c3621 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-or_values-or.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-or_values-or.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..6b618c0774e42164c24d0214e5666ffc03738962 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-or_values-or.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..9fc426534f10a2b0829823d37c059f96de3afc56 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..dca7cd3617500d77b128142dab632916c8bc214f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..6b936e4a4eb3f12c6377da8da2d65e615b724711 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..8a4c4325879b88f4bc8fefcc27a3a955a84309f6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..832dfdf08a3c1443d79a8c30d0615dd117a0792f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..6fcf8684a854d4b8a3728ac1af565e2a3e70800b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..ea34faef03e0f90e5b5ec225b8c59c29f63d783c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..ab1bfb885f9ec6e25274115454fdca660bff091c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..10a22df3d5354b3dbaa49460ba2523d1e41d97cd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a748c60f02dcb13e70c64626a17d6dd7ff49db42 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..2a5068e3ca93f4802e57c8711bc6178b4e7f630d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..b483db00beab7dbb4d4866f76bfbaa5b4fdc4737 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c5bf8e4d5f70f4747932397c2c8a9c844c94a006 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c4cadc7942cecd5ad4f16cf7865d3585262de893 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..90fbee27e37ca0d77b47287466b4710071f50333 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..146ec76a82d7bf1101e4f2cec9a825ec0ff8f6a4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..6d8ac0389b5234ad72fa1da1abf70bd41d79c687 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..0c3a3cc0acc1a9a496f480dbe112d04be427a25a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..582f74e2185d429c7e306d0ee79918a085dd6299 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..ab26fd150d9387df54d999ad5776f615a77859f1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..cc05f7d59267e3bf60517354e2501b4f1a110a6a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..b2d03bb22d2c172bf5e0c8ce96ee6bb688c852d8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..d638c6d24e59dfd946dfa93fbe573c9fd92389ad Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..826605d0d92a17a4f3f0edb9970786b0df7e3e47 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-v14_values-v14.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-v14_values-v14.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..0640577b19a7faacd1d2323151a3a2855ef7fdfd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-v14_values-v14.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..da5f4fa939f72af7b28b55e16535dc3b8394c8d8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..bf009962c7d08dd425445866f82d7389277ea58e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..0b7e7fdd6c3f6693a9714ed456f9618d85c061bd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..9f46adc277a80d2542bd240b5fbf171a7734f444 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..43678c673cce6c2854c1b33df5c4e76b1322092d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..f2d95ee568865c41b3b7e5484a5cdedaaa98b41d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..ff9473126b97dbbf8dc5301fc6c65e492e5f4f0b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a3ac760c35ae25f4eca2e072db0232b8962cbf08 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a451da5aa4cc13a3d12d25ea2247b8dad98a5fa6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-v28_values-v28.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-v28_values-v28.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..fbc6dd4084d4f1320371535ef452393f3db3e986 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-v28_values-v28.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..6f9fa6fa6727b06f554bd241b5c954b11c408512 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-watch-v20_values-watch-v20.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-watch-v20_values-watch-v20.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..e360fd509b8fe8b5bed0871353328f469cc65106 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-watch-v20_values-watch-v20.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-watch-v21_values-watch-v21.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-watch-v21_values-watch-v21.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..e7ecdc9fec528bafafc79dc15a68f3c8f13cfe7e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-watch-v21_values-watch-v21.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..7605279b865d979b95f8039dedff1c7234dc77e3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..5b0f70a8421ab07f392eb8fa405a2be849d484a3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..ed32242e07b3b9b9fd812b4766767fe72a869156 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..9e8e19455af397776092d2f2dcaf7bf5c50e3c52 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c8f4393aa9842bd879bfcf7a7869c693b5410de3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/values_values.arsc.flat b/SmartFritz/build/intermediates/res/merged/debug/values_values.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..57b350f670b3ae92cdd9cf075b037dc74519cc8b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/values_values.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/debug/xml_network_security_config.xml.flat b/SmartFritz/build/intermediates/res/merged/debug/xml_network_security_config.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..80f7c01e91f02c678ad29433c1b3066b937fa683 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/debug/xml_network_security_config.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim-v21_design_bottom_sheet_slide_in.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim-v21_design_bottom_sheet_slide_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..229d52556841392ecd23bb3003425becac330464 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim-v21_design_bottom_sheet_slide_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim-v21_design_bottom_sheet_slide_out.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim-v21_design_bottom_sheet_slide_out.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..60a03195def347da6a7ab86066092c8d99a2abb1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim-v21_design_bottom_sheet_slide_out.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_abc_fade_in.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_abc_fade_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..3f6b51cc8565699423b1a584b52100294a2c2018 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_abc_fade_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_abc_fade_out.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_abc_fade_out.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d390786501f6a97f303e0f22847f3d54cfbf91fb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_abc_fade_out.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_abc_grow_fade_in_from_bottom.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_abc_grow_fade_in_from_bottom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..3959549dc9fe2a51c02c6a9c0d660c7b318e4f90 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_abc_grow_fade_in_from_bottom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_abc_popup_enter.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_abc_popup_enter.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a3f1a07977c771575d5680cc834f413c5ccbfb1f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_abc_popup_enter.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_abc_popup_exit.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_abc_popup_exit.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..7bd75b81b4e6c718900e405827165f3740824bc9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_abc_popup_exit.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_abc_shrink_fade_out_from_bottom.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_abc_shrink_fade_out_from_bottom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..19cbb510eeff5b42c837d0c12c449d46dba7925b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_abc_shrink_fade_out_from_bottom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_in_bottom.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_in_bottom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f98aed5e793f4d0b9a27d304387a99fbc6d61c44 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_in_bottom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_in_top.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_in_top.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..5a660d0b85b2e585db3143580237bf48afd6752f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_in_top.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_out_bottom.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_out_bottom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1b204470fc7d8948d44ae5720f387d13d035d392 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_out_bottom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_out_top.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_out_top.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e1c557ecc2664c55774a45bdd142e01fb7fed280 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_abc_slide_out_top.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_abc_tooltip_enter.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_abc_tooltip_enter.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ae10d7767abf2c8b5b3be794eb0527b1ae884128 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_abc_tooltip_enter.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_abc_tooltip_exit.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_abc_tooltip_exit.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..518fa0585db01a0f850b0c2017202fdbde191c80 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_abc_tooltip_exit.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_design_bottom_sheet_slide_in.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_design_bottom_sheet_slide_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..eac7c008d0a52fc5319c14034f2ca06151066197 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_design_bottom_sheet_slide_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_design_bottom_sheet_slide_out.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_design_bottom_sheet_slide_out.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..aae41ebba9a338a0331e6e10ca0f0af7e5a0ec38 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_design_bottom_sheet_slide_out.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_design_snackbar_in.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_design_snackbar_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d9ee96827bf7ac24640643a9b6da69b942e9f173 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_design_snackbar_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/anim_design_snackbar_out.xml.flat b/SmartFritz/build/intermediates/res/merged/release/anim_design_snackbar_out.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f085c0accf05dc820086aea927261d9bf0f1cb59 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/anim_design_snackbar_out.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/animator-v21_design_appbar_state_list_animator.xml.flat b/SmartFritz/build/intermediates/res/merged/release/animator-v21_design_appbar_state_list_animator.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e612e2d090ef8e531deb67474ae1010780942de1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/animator-v21_design_appbar_state_list_animator.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/animator_design_fab_hide_motion_spec.xml.flat b/SmartFritz/build/intermediates/res/merged/release/animator_design_fab_hide_motion_spec.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b986a743b7ec450a1ab2c0f79b07c5d1cb89b5d6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/animator_design_fab_hide_motion_spec.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/animator_design_fab_show_motion_spec.xml.flat b/SmartFritz/build/intermediates/res/merged/release/animator_design_fab_show_motion_spec.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..607918080876080cda48a935451d5d64b92e5d6f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/animator_design_fab_show_motion_spec.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_btn_state_list_anim.xml.flat b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_btn_state_list_anim.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d941cb353a6bb6c4b6ac520745593278f1835c33 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_btn_state_list_anim.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_btn_unelevated_state_list_anim.xml.flat b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_btn_unelevated_state_list_anim.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b45d0bd436ac803c6b0f5a242f5d4ec04a17b379 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_btn_unelevated_state_list_anim.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_chip_state_list_anim.xml.flat b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_chip_state_list_anim.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f613665a26ea1b9c22cc9e04ba4f69ed926b02aa Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_chip_state_list_anim.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_hide_motion_spec.xml.flat b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_hide_motion_spec.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..fedf4f277345d8fa91dc00b78ec294decf95376d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_hide_motion_spec.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_show_motion_spec.xml.flat b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_show_motion_spec.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ca3d9ad540267c3c6b4b2f23df8ef25601ea7fe5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_show_motion_spec.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2ecd23350b7e3dff973127e05f9fe32263c1bf9b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_transformation_sheet_collapse_spec.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_transformation_sheet_expand_spec.xml.flat b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_transformation_sheet_expand_spec.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..edc31b9d4428aee0ee0ceb5436684f3ef856736d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/animator_mtrl_fab_transformation_sheet_expand_spec.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color-v21_abc_btn_colored_borderless_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color-v21_abc_btn_colored_borderless_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..aa0c6026dda3ad0efd64b0add54771568228ea4e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color-v21_abc_btn_colored_borderless_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_btn_colored_borderless_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_btn_colored_borderless_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d3f02cfc0c71c3fa36df8dc07b2c276f2025d748 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_btn_colored_borderless_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_btn_colored_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_btn_colored_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..13929d844973cc623dfd9bc7d6457c91232d8bf1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_btn_colored_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_color_highlight_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_color_highlight_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6a307876a16277816a4b862d692cb2bf9020ec0d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_color_highlight_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_btn_checkable.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_btn_checkable.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d4a0ed89f0c9c54394a634be9c6610a0f49e6e6a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_btn_checkable.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_default.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_default.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..9dd748a40408cab2f169acba6bca65c92d135be1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_default.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_edittext.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_edittext.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..040799898e086915d05934aeb821ea2226b07212 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_edittext.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_seek_thumb.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_seek_thumb.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e2772bf16c7fd2f87393b2e22811d9aae94c6a55 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_seek_thumb.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_spinner.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_spinner.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..4dc411f15e75d706ec74177101b7633dd73b170a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_spinner.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_switch_track.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_switch_track.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..126ca1d5adee0ea2e7160c7688e94f074083579a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color-v23_abc_tint_switch_track.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color-v23_design_tint_password_toggle.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color-v23_design_tint_password_toggle.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..dc0eab9097fad0198b10808e81f74103b086a48e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color-v23_design_tint_password_toggle.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_background_cache_hint_selector_material_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_background_cache_hint_selector_material_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a64774a37c8402a828c82e9d2eb2d2f8e46f12cd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_background_cache_hint_selector_material_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_background_cache_hint_selector_material_light.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_background_cache_hint_selector_material_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..01d3c29887774cebdf164af9f3ec51cd6ba7a1e5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_background_cache_hint_selector_material_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_btn_colored_borderless_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_btn_colored_borderless_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..65e805b956e8383e9829504a268c2c6495e2fa3f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_btn_colored_borderless_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_btn_colored_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_btn_colored_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6407377afc4a5158d4e731a0c310534b36303e7f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_btn_colored_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_hint_foreground_material_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_hint_foreground_material_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ac7e62dd9acedb2c015950cfdae31ba6e7e27312 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_hint_foreground_material_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_hint_foreground_material_light.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_hint_foreground_material_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c34eb0c7fef997ab4f87aa6c38decb0b15b4f98a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_hint_foreground_material_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_disable_only_material_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_disable_only_material_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b087374c5cbe907c73077a981b3c3302616b3a55 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_disable_only_material_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_disable_only_material_light.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_disable_only_material_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a0c7d0d787f84cee8579fefca55d0cd87021dbe8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_disable_only_material_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_material_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_material_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..280ed18a5237e10c7cada7a0e3205480255b701f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_material_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_material_light.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_material_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..4aaa5528e2d82a7066e28c0a9b4067a40f58fdd9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_primary_text_material_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_search_url_text.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_search_url_text.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..8b4ead0dc514ad93dbd13d29c115c659e912aa0e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_search_url_text.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_secondary_text_material_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_secondary_text_material_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..bdff35b231f71ce83ba1ba7916461ff95fa63fa4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_secondary_text_material_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_secondary_text_material_light.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_secondary_text_material_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..8dc700dfb889e027c28bc448d07c680aa1de211b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_secondary_text_material_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_btn_checkable.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_btn_checkable.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a8434988313c7f2aa6ae556abc4b82f10b233c18 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_btn_checkable.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_default.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_default.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..bdebd9cab4bbf167c1d6b7612f86d745f67686f6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_default.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_edittext.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_edittext.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..15acdfdcceded1a1813c6f3ddde6da2908d12ca1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_edittext.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_seek_thumb.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_seek_thumb.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..41ee64288cd88326188af15383c3d2c3efb57267 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_seek_thumb.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_spinner.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_spinner.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..fc98572415b53bbb88f83ab275275b96ff4bf402 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_spinner.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_switch_track.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_switch_track.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e288e2b024cc30f9621f37f6a3a80a447bf3a502 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_abc_tint_switch_track.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_design_error.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_design_error.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..101c18b01a1dd108776e047195ed128586b1791e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_design_error.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_design_tint_password_toggle.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_design_tint_password_toggle.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1dc880d15fd567eb36f2cc68021292e5c6e7e4c9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_design_tint_password_toggle.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_bottom_nav_colored_item_tint.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_bottom_nav_colored_item_tint.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d3980e28325350e897960aa90e193fa8dc0ed5d7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_bottom_nav_colored_item_tint.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_bottom_nav_item_tint.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_bottom_nav_item_tint.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..57d132a23f1b5cbd83d04380a99462d098280494 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_bottom_nav_item_tint.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_bg_color_selector.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_bg_color_selector.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..662da86cb8ddb81e23566015d7b6cd0195476019 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_bg_color_selector.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_ripple_color.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_ripple_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a63be880553cad7954161378d1d4759d63222dae Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_ripple_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_stroke_color_selector.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_stroke_color_selector.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..5b5b903c3ecc8ae0915e3f098d2d16bc1eaf0597 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_stroke_color_selector.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_text_btn_ripple_color.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_text_btn_ripple_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..bd2109fe80fe9b0c728210307443258b0b85323d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_text_btn_ripple_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_text_color_selector.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_text_color_selector.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d0884fe5e9e7d29f70795aac8566a3bdfff2c352 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_btn_text_color_selector.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_background_color.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_background_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..00686057a4785f56ba72fbababd3e8f8e0620eae Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_background_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_close_icon_tint.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_close_icon_tint.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e4c45fe3543eaf39926bbb543f324d14809e59d0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_close_icon_tint.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_ripple_color.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_ripple_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..aa8bfa5c1778e1cc5d6e958645dd5047162adfde Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_ripple_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_text_color.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_text_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..77fcd75e122ff593695e19e6bf2fc17d57a7b27b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_chip_text_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_fab_ripple_color.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_fab_ripple_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b708277cfe2c68867485e8759674877a377dbe0f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_fab_ripple_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_colored_ripple_color.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_colored_ripple_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2a64f34801485921b81f802c9f0fdff62598db3b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_colored_ripple_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_icon_color_selector.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_icon_color_selector.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..fc21f7c1a1add2acd2f8b63a253c0ce64480827a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_icon_color_selector.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_icon_color_selector_colored.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_icon_color_selector_colored.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..12522772806d66e64237e3064abd6218cb354024 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_icon_color_selector_colored.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_legacy_text_color_selector.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_legacy_text_color_selector.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..288fd8ba6f5effc7622c1fd7f3b1f9b20249c283 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_legacy_text_color_selector.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_ripple_color.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_ripple_color.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1a5c34975037e3592b4bc49d221699c3d85a4452 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_tabs_ripple_color.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_mtrl_text_btn_text_color_selector.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_text_btn_text_color_selector.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e69726e7ddbe1240add973d931c508cf4d08fc9f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_mtrl_text_btn_text_color_selector.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_switch_thumb_material_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_switch_thumb_material_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a26466055a7d969ac3d79f79de98d311acb845c6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_switch_thumb_material_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/color_switch_thumb_material_light.xml.flat b/SmartFritz/build/intermediates/res/merged/release/color_switch_thumb_material_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a034428d1dacb55dc36b4bbd2d7e0e24146f365c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/color_switch_thumb_material_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-anydpi-v21_design_ic_visibility.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-anydpi-v21_design_ic_visibility.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..94bba8c817fc34bf89da608abc909b71869795bc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-anydpi-v21_design_ic_visibility.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-anydpi-v21_design_ic_visibility_off.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-anydpi-v21_design_ic_visibility_off.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..66302fdf7114f5f4488a7e5eed086209e8afd056 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-anydpi-v21_design_ic_visibility_off.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5fa570cbf208aa1fdacf9e2bfce040254d83ce4a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..faec1436747e49e8f86785fcde2ee87b0c7afa8b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1bc015a877e05130e16dcb1d0f01ab76fb72bf90 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1586c8b4a73cdcf2ac20ce0e96562e9e13eb0ac8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1afd8b99de7ffe5a2b2aa5924b020b57704c06b1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..bdeb55a1329b920999d1236c5a6f420a9dfd7a5b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..93a835679bed7a8ff1ec45675713f387445d883c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5f0554f7a390c9b85d645cf7212e1960cd87f516 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..77d8f85796b19360eafd0917b20c51d1a1c77f96 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4e44fb2d4475aa9e83bd7732b2fde2238e6c5aa5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..542a542332377d24b13f4d479c89c907953d474b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..707efe4ea08fc6432c8979568d6a2544460ba77b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3c60af729224618e0ef5482f4c0e1ca8e5a215d7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..96a34293f81bf51c7c315904471b354ba6b3d069 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..268f2113a33e492634e540ae30d0e96068c64386 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3b1affdc8694eacc52375c2307c4e2bebf626673 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ebb71beefeee517b6e465ac4459d2120468d9307 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c4224eb51f73301335f87b3eaf61cadb459dbb4f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..cef636e53ae579e538c14dd0d565ac5cb2913793 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..52f83224d5883c0b3ff1990c8721ad4217607069 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4178c99eb3818b4718876f7e85776ba21908db17 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c37081d768fed4bff8f3c038e5d8e07725415fc8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_focused_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c29215567efcdd7a4aaf6cbe778e7aee601ebc48 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3e65a4527fe0f4271b5f8653b78217ec2accb199 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a7a699d6bb4d06a7826859d6774baa19d86af8cc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ac46b3b61d72715de0da8b40bb2a2649e57527d7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..410148ead4b70f2927a378fefcfe7062747d77d3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..688acbdea8df0e02ce2fd68a02c2b271cddf786a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1298d71e6846884d89f79657bdad153023cfe953 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e605d46e8325edc72bb96ae845ab31f36a135d8b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..de49909dcd5a21b442e9ca8ea40593b74032a434 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..adb5934d200b9c9b54f9217331debfc9f6709bcd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..88a793cf8af9fa743375e64d67dd4cb431616fe8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..62020da81c2cc215ad1526610b17adcf39b408e0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..95283e12d020c0fb4824a889266487229498f087 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d19d6eda2ad872c0b2dec659dcf987ff91519bf0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5bdeb3bfd24d261c68e53a4e8242b94d160b8320 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c77a498b197d6a5310ed9144c13cd2a35aeb7511 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b7d275c779e23f72216d9a892c833a97532b9a42 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..10df5217cfb03ed25130a81b5c04106064568ffd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7a8fc702e9f9102352fa36023a1b53a38f08d208 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d1f0d3e49b7beb7667d08e8677f51c75fcb5d4cd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..598ad8163bec59a034587158b5df5a365e46cc47 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..87bb76efb1efa95dcf90c0d5cfc5a5b8c9a6f42b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a2fdf80cd04ca6219894cfc6c68945e95831936f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a42e92bb5e954bc93b9c2725cfac78b6c36b83cf Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..9a5d1b86aaa1e3b124596f4700ff411126269ce5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_design_ic_visibility.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_design_ic_visibility.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a57ef141676c24fee8dd155852af88f696a33e95 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_design_ic_visibility.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_design_ic_visibility_off.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_design_ic_visibility_off.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..31f61e817c40dff84540bdd5f19aa2bcccfe5fd4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_design_ic_visibility_off.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..83122f1b126643487f2ec7bc5ed488edd4acb96b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_low_normal.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2c16aef41ef4c14cab75801983e07e05ee5224a4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_normal.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_normal.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f440db3ba7d71662413fa7fe7de393917c9dfa02 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_normal.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1007e83840d8d79fcc1c286f6f4234eb535c0f4f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..dceafbed6c241c94746d6847a97947ccbe6c99af Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_call_icon.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_call_icon.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..96f1f33527d5c25a9d591692de65ec9442788ef8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_call_icon.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_cervantes.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_cervantes.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..31b54fcb6ec7172f1459c08ea2d678ad70153bac Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_cervantes.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_chevron_left_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_chevron_left_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..cd53deee8cd61fa3bce1bf72e35a713ee7555599 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_chevron_left_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_chevron_right_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_chevron_right_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8f8a5fb777b58081bc5810f5edc68933cd7fd687 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_chevron_right_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_don_quixote.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_don_quixote.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c53c931a5939198014eb4ab22c6cee8a00f0e380 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_don_quixote.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_fritzbox.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_fritzbox.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..9556b13357f3bed979922640510234853f36657d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_fritzbox.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_fritzbox_icon.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_fritzbox_icon.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..25425ebe626f40d2fa2094e2c512842e1114f43c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_fritzbox_icon.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_lance.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_lance.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e2ac39ae7d9f7fbb7b3c576fda9e75d2b543bb2c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_lance.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_launcher.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_launcher.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..75934392a8f8945327d74b0dd5010053505c071a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_launcher.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_log_icon.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_log_icon.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b49673c5624048ca2978695b6c1e5a2d160fe194 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_log_icon.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_menu_white_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_menu_white_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..84e222c72ecaf4fd1257d68d6b4a5cfca5aacfdf Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_menu_white_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_1.jpg.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_1.jpg.flat new file mode 100644 index 0000000000000000000000000000000000000000..36b94b64ce36e4f786d437ba5defe25250bf4b5a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_1.jpg.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_2.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_2.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..9ad13798bf43ca17e5d00e6434c16ba50b1ae4b6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_2.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_3.jpg.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_3.jpg.flat new file mode 100644 index 0000000000000000000000000000000000000000..20e057a720f55a45646f9fc1df90930e5eb81670 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_scene_3.jpg.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_settings_icon.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_settings_icon.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..0a92578b2898c5e783f6a8fa6d329135dda55906 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_settings_icon.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_state_icon.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_state_icon.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6521d084eb48ef2f9996832f5b9c20eaece45c8d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_state_icon.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_windmil.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_windmil.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..bf95aa3015a1f221f260327cb8679ef807d59ea0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-hdpi_ic_windmil.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldpi_ic_launcher.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldpi_ic_launcher.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5886f7c436ab4e23641094a1ea0ebbd2b065d9ce Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldpi_ic_launcher.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6dbbae3fee0b46535d552a1e7063c049f78d0a23 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..350087dbc15f4dd5c5a8ba47e0061c653455fdc5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1fd34435e008f4fe8fabaee264d1bdd5ebbde25c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..649dfcc1a52954989964dc9f8a35e76a6859ca9b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..9cfa7ad8919d02d59be3e2730fbcb3ec4e1deae4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8875a99f063b6e1fdff88fd1d0be968e39fffbf7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..119a6a9e6e9973771ea793c4c0b9cb901d3a3116 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a7744d2a7ed0db01f31f37c2803180158e51263c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..cd69553f7179a3dca676d31dae1d30b05913aab5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..aae03ae4d34eca4fe82942c46dd3060584002161 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..fa2d9a4cdf3ebb8755725afefc8cb585f4fb9938 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b97fee5cfb1d456f57d93616df8c01c650d95015 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4be333646d9dc9ed507d74d35f98847507ec7c7e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..db6f2e6c86de9be6ee686d6a8297f0c6f274bbaa Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c0d8978d02eeab80a8f2b78f5bc0d84a49580a51 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a6a4b0600d80f3af3c14f152b4cb58626668f0f6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2c8a3e522d28d552b7f90851bca057b2e15720fe Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e8ec56d79e8846af71c8fccdf3a9c358bc55a8bf Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..56a5e69e4217eed755a29a2ac40d2d188024ea0d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..283a821cba7f00b87ae56fdf43448f57abfcb319 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2cfcf9df74f358c9806fe6ecba6dbd8c99794d18 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5a7e59e5e7c6692c83d8b4c26accc6056b2420e2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3cc4f97d0badcac6209e53f410d8c7298188284e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..cd85cbe1ba2889dee3bc95aa1592406efd32299e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1cc877c46316c92964cfdb31999aa614253dab69 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d1e248563e06b0d72492aab7310c9ebe892fe116 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..22e8f470e16069cdfa4900bb32457435ca06ed0e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b32a99cf6337fadbf879f8dfaedbf669a7a5e3ee Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..667fc6c824be86dbc303d7f4d8e7b63c861e3e15 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..afca391344267cd0d7ae5aeb522e1d551d06d460 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..be410f13c043dbf68f9812939ccd2500d85ecd11 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..31438e51ac1ef64437706747c108c65f7484c23c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3e52fe0269ab16c880b914a28102b869be0bec19 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..66b23962f04466c662888737584766ef72c316df Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a944f32d4eb1871eaae009b47f29be07af92937e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8867281ced8d8be09d71632619a65777bb06f778 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..038047457de222fae754bfae1cc481a23f385936 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_focused_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..470d576e1d4bb1b9013fbc07a9aff86cb5f94cd7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..adb42852b85993805793719d0d730cfd8ec3461d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7a58d8cc143b4ef368bc6468dca1c616cae59f84 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..33348a463f60a7f339ea66b847d9827194393310 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..fdcd563e4b855136f94f072ef50fd8fc230b0f55 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..698a339680646183bdc4a63a6a70e1a4c610c51a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..960ce54f79433bed5c0e19abb84a9d1b19673acb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d4426142f2d20690fae9053b9e5fa31e0ca29116 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ce981e9d78983a85de4f4ec5a8226ed194b04f0b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..0c1f90dbdac056e268f10c02511e1bd6e96df042 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a6b6b1adc7f9b8ac70c2b2c0467cab1ab0e0894a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7c5009ce1a5e62afa0aa01beed91db71c574d70f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8398e2b5ce0868824540bebaeea53f454677a61b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..61e8ccc433d9ed31a02ec2bc2e427af00767ebfa Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..880794b186a2ffe34a1714ae49de965bc0f5be2e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4f1f3d5bba86309d6d31e1ccc8659bde07da3977 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..23bb8c46b1efdd433852df3d4a6ef4d3072bc6d1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4c5701ebb1e898df3b1244c444a0f2f781ada3f1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..cb3aa9ba5878655ce1e5f321822e4e2a96d1e012 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d96adf59a9c13d0f7fd1f964e3a06c155e602633 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..00c45e0f4c61808a53e4854dcddadf57137371bd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..796e3a5f29b7229d4154d640381da123a0e01804 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..028a136e82bfb0d9de43914bec3f6ac267ea7cd6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..fc94e1cea2edeff2c62bba9f55a6e260691718c6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..212e7bea95047d34ac1b6510aae8dbfcaf2a73d2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_design_ic_visibility.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_design_ic_visibility.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b47e7a97d93261667495266127ae3b1618e33492 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_design_ic_visibility.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_design_ic_visibility_off.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_design_ic_visibility_off.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7bf9c953a453382029d927bc7dea8a8209762a5b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_design_ic_visibility_off.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a648e7700d1418acd5de0efb78b94b08023f0a8b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_low_normal.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..63da03e521e3eaa852fdda550d9dee2a59cb71a8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_normal.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_normal.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..94d2cc1000954ab68b51ee52d9e464906afed640 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_normal.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..0c0b08935011fe39783dcb969ea42225a567a809 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..822b1a01c6c493374b04fb9575bae652316b9ac1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi_ic_launcher.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi_ic_launcher.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..65849b76cd39c750d178a02e315d6d418f4405c8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-mdpi_ic_launcher.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_action_bar_item_background_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_action_bar_item_background_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..21e34eb680c3b83c0bb09215032e09771c32f754 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_action_bar_item_background_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_btn_colored_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_btn_colored_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f74ebafa427df5e56194d5bc0f2d773a7d19785e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_btn_colored_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_dialog_material_background.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_dialog_material_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..bf37a32640530d1f1c5ac54a9a26a64441537e60 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_dialog_material_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_edit_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_edit_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..cec1d1f1524b619e5bcae88949eb3a73b86d41c9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_edit_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_list_divider_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_list_divider_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e4fe737315f9c981aa2c2ea4a375b529f00c865c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_abc_list_divider_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-v21_avd_hide_password.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_avd_hide_password.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b92b238efa80579f52a3655ea05960257a63d2cb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_avd_hide_password.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-v21_avd_show_password.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_avd_show_password.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b365311d468ecca2cbc57e2c813d88cdbaa09b45 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_avd_show_password.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-v21_design_bottom_navigation_item_background.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_design_bottom_navigation_item_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ea3ac4f931a2b87958f81d0ac3a55005e19c7948 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_design_bottom_navigation_item_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-v21_design_password_eye.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_design_password_eye.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ae43695f1003e93df0f3f98ebdd003accb69aa8b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_design_password_eye.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-v21_notification_action_background.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_notification_action_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..e1c1352fe880e51bd1a73e0b945a19dccfbb0d65 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-v21_notification_action_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-v23_abc_control_background_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-v23_abc_control_background_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..31372433e5ceec754cc5039d19c6eabf5a464861 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-v23_abc_control_background_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-watch-v20_abc_dialog_material_background.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-watch-v20_abc_dialog_material_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1fa58cf17639a4903838a9b686cac594849235ac Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-watch-v20_abc_dialog_material_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7c4f89c5e7d34dc22e5d693386ec81732424ead6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..aad5f2346c6c6eefb5ac861546a992b498168f03 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..234d2fab1db2f3b796b44e449fb9ab055eeb5e0a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7e34e6095080771789669890e597e9e15ce874bc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8c00c15214c80d577501bebc5d7708b688aa34f2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..da3cd74b4ff0ace371cef8864c2fa383fcb27d7d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e59cac6cd7b0305187791a086adc020bb65a4da8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a179967f5885b3244102cebf46efa426b6021da7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..30301592afc1d92fc92247a64ea0c55112a8c6fd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..418b699b549cb389c21591e9ce925639162c1f88 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..bd3e1a7838153e54b6408d84a924586e7eca3796 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..51e309af731e909c15cfdf6f1c8fbef659357638 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b5ab99a116721e6a627d70b45b6f6f234f7ff83e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..333f7973e312edc0fa5199f9ac4360780a7e837e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7426b32472520beed75798a6e6f4797b19982ddc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..aa714c6f555eded86648d01fa9b75671027a89f6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..76263b64fbf9215908657afd222378814eb6e6cb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6c1a82b3f0321fa228383b1a1dfeb1f0cfed5b88 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..59d4834798e03406cd19c81194599edb7bcce7c6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..dd54c644403c4fb4d26cb550af683ec5d5b47f17 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..996e00fc0784b06a45c5b885a564211788dd354b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c677f5caf189127f8f0989dd8a9db8ceddab13c6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..1e8ffd55b6f5391b71f53f8f5f71b5af210408b8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e88968407260cc7d2f7233c20dbc745f255eadd5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..130eebd2e6812767f64956055e200f73fcf4a498 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a67e8e7e14e7907723f8cc7e4ddfeb8fa4f57395 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8157d074688fe8149ab9ed1bc2916a72bc88214b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..274a636639239132966e671229d1ba66810696f1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..966b1c1ca5034da04b9a3eb73b9cf5833b5c0a89 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2850e56baec9b469d2cc1e9cf8468393300eae5c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..801aa8756f2874d7ca1cfd0b050cdbfaf75a5f51 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..94452706f6533ec5f1d38431d2bf147db5df5e86 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8a8c91770c90e12d560d5c1d64034f836a006615 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7faf5578f43cd2ad96343830dde9166de577dda9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5b7bb14cd2f235448dcb16af03bb88a6c6573936 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..ecde1aa2bc7d89a6ace4686334e23f797750bd78 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c68ac589fb738832fbbf55b6e3ed8cb4ec5b09c7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6b812b6785140af65c04f843d3d515dee86e3de7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..409daa4df21c06f9bfd75737136244acd2abfa5a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..19dc845229327ff835fc86a710de3c74ab056bbb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7870a10b3a7ab78b6efd7a6620d200dfbcc17065 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..28afb12966398d19d4463e7870a775030eae3f64 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f5e56a7a0ecc4f101679eeb161867c7ef2dcca83 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..115a26d4c526d71644fec66e96365b30a7fa2f47 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..573e0ce6492435ae7b7db1cf019eb24a98c73566 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..45858a9bd8f48d2dc901c1db023b380ee4c0508f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..669cd8a3b97498b55a8919a3da179ff84c1927ff Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_design_ic_visibility.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_design_ic_visibility.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..411cb30f2543e8efda81c001ef84100bf4ebaace Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_design_ic_visibility.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_design_ic_visibility_off.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_design_ic_visibility_off.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..12694d0f00069d0330ba9a9c9d2828f4df4331d5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_design_ic_visibility_off.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..40ad4739ff84976b57581ab78a6e3c072a530ffc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f0b50f58cd1c770d1be06bd444e294a5ecad03f0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_normal.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_normal.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..fa4be5f92a00a08c5546a6f4b666a6622dddff94 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_normal.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2da2995850e3268b4a15318a9a779c004d1dcf88 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..108e5f9a8f11257c435df56b6774478c4ff73a11 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_chevron_left_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_chevron_left_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4a421cb51b6e80a50f79eb3c36138f3bf3e83f86 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_chevron_left_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_chevron_right_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_chevron_right_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..173142bbf866cba70b1e5a52c7bffe1f39a5ed57 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_chevron_right_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_launcher.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_launcher.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2911be7a893a52b3486ede373f5ca961dc002be5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_launcher.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_menu_white_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_menu_white_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..72890a02e21b9adbce7bb76d1ba15accbe71ddd2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xhdpi_ic_menu_white_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..59cfd67421ab3ca9d2c52d74e2f7e1a3e4433ddd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b94a91c07762f320cd404c47c3d6d0d1a073185a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..db1b7e9514aba50a753d67bbcfddc70e03dfcf66 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..601d709bfa8d76d6abedeb7998abf0fa85bb1e90 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e2f112d600d7252f64c7228aea3beafe526f2a9e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..91f863077590541b4230ef7296fc506948864cd0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f263f3ce2ee5460e4146530f3fb6f75e1285dbfe Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f0146852c01bb4ada88eb421849d73e6502766ca Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c48d8ebbdec6b3a3b46242fdb1be76703d28e23d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4884f171fff6f0731dfeda5e27629ee205dbe55c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b404e69f2291ebca5aa4cddcda3acaa2128801d9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3f2787651ccd8b5015e03291c0ee2cb2d7519d34 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3e26ae1abbf7f5d71d6cedf99b01c0e67fa5587f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..58edc4c48188973a47718c39e4c86ace7422212f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..214cde9a4553ef65070ec4c2833a3d9bf3f1dcae Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b44866f96adda7745577f504540b09cf0b8cc75a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..98c7d7250aeb523210b34e86400b46ed45ea92bf Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c568c3e3e95b1d6d60532ef4720e6bbdec402918 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..5e9e09a21a4b920521824028aeaec63b746a122a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..30629dc85ddfdedc86f258101b46f47154b95df1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..714d032160c761fe3a5b8582f219c692e7675836 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..14924a66a4fde83af901a8cbd6ac955eca0bea95 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..838c1c0197b01232e7876a333a251d8abbe5796e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a2af1552730b00f69a4c19863444799dd070a31e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..47754a23bd565b47a313a6a46de463a7381a6a61 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b136db15f640004a351bbebcc648051b228d0d99 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..3c496de72924c9cbe5189447a824de4923495bba Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..62ef15a95a5105bd1ab311e41fcabe69af08d637 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..644777b5486abd5ab464a25cc1d092c1cf9226e4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..164f02864fca130b20981fd8512998d04b72f329 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..e08950bbcd99fe61e4ea21bc58ca87114a38a1d4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8ce3ea7b1850b174a8d3f5dd9500b98eeeb9975b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..c486a5ba53b43e2b476ce18a4a15070caa4cbadb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4cb6b2ae3c1dad30af4f302c977ab3a16e63a165 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6b2bc11e4d1e633fc2afe76a60a51fb9347abe86 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..186feeba9971cd7d812120c3694514034070f3a5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..31922cb3275c42189165bba2899329405dd029d2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f0e150ea81832b1a6237d5f00203b169a7854808 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..9fdec72a25a0ba8ac2e101f404f777ca078e29b4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..11e4c6d82a7314e44de9c499daf530a0d025c283 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..89baac167682d26740d47e9dfdf39bd3720d38c9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2ad4f8e5fd43bceea6fa8a37863ac0f886031c11 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..d70ed974a13f188f5a29afb37b5461f4eff5f2e1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b6fb44740ec87ab3806a5bf724261d041d75797f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..a189395dda3a72c6386ac1f0387968ffaddf5be4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..65b0cc171e7587a31f648451520d919795dbf1b2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..031d7390c1ecf31f452eaf64bca56f2c2ad21f7f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_design_ic_visibility.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_design_ic_visibility.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6b95b278c6858bcf8751db17baca583233f46132 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_design_ic_visibility.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_design_ic_visibility_off.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_design_ic_visibility_off.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b3b0c0c33271c6c75004f1235051e325f5bc2de2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi-v4_design_ic_visibility_off.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi_ic_launcher.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi_ic_launcher.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..59162b13659178fe0e757b7bdcf9b931362dd7f8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxhdpi_ic_launcher.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7187fa17b771b0e8ecc07c4e3642d9c4f1ca46aa Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..4d5d1401b22ff6612d421b714880ef2e696f863b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..086dc4393ed20daa56d130a8158560735740df28 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7971f9ddbab5b500ab7d24180a47dec85eda8173 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..78752624940b0b513192a8f67abb2a0a3a973072 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f3c8dd05c9480aa8350a47a45612a972c4009efa Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..dca883d2efe4e60e9bb9e23e8041f5f29f0172c6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b365ed1e6f73d5fba1e7e9a0d0b74bd5465fdd49 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..8f4ac1695f64b27a42900331a37fb74b9f38194f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..b8ea64f52975df1690502bf6dc9bd99071a1e817 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..040b469814b8aeda309d9352db62050c03ba4147 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..005bd1c02009bac0c711534c50513d724baeccf0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..6007ad045e290cb7791eec0179577292e65b5471 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..f92bd3edad05cc3085ab7ee36aaf4f3ef8c4f8c0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..874a8914f0a9001dabdc8b8ced4fe2eba11a0d2c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..50f436b888684fa5d89a624ddf88ad60d3257b9c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7dddce96002c1c03c7bb9ed59058912c231bc2eb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..2dcf7c4fc292e45cd59c234da57762633e0aa05e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..be5ceeb973b770d850f244fe919ea819905e0142 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..cad2cae7a631f4ea9ac34b987e565f09765946ac Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..bb40e46dfd8537f1d43ad0d0818ec698f0ff9d12 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..fc2ce24e49278b71cb20b2da842602e36f530268 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..61bb73fd97f60feb1f19fac2fcfdd9d576a893d9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..44bf4457f94ee64ab36d4ba4e19ac0ae4712264e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..7f7f56d1ef3e238236413227d1279aab0bb00b4d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..54757bdad22f596f02553f1b2bff4d4320ae27b3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_design_ic_visibility.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_design_ic_visibility.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..14baca5e6755f789ca6f1c5fa90dae742d6fcc1a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_design_ic_visibility.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..dba82aee6925ba18453305877f09c51f3a0f5102 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable-xxxhdpi-v4_design_ic_visibility_off.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_borderless_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_borderless_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c39fcd9704f203c9f3a16566c8951ff6247c7e2a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_borderless_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_check_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_check_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..de5de5e67d64b967413a561c011594b7b49fbdaf Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_check_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_colored_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_colored_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f995add1947319464fe8db25c9f1049640198670 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_colored_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_default_mtrl_shape.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_default_mtrl_shape.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a7bb55c9b1d7e4db54812efeeb48b06319d03c09 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_default_mtrl_shape.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_radio_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_radio_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..df88680b3be10d820a9aed7e6d54695dc97a005e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_btn_radio_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_cab_background_internal_bg.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_cab_background_internal_bg.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c34ba11553a536e651ea52a73684bbf1b401a2f9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_cab_background_internal_bg.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_cab_background_top_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_cab_background_top_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..80c063ea77427d6d48e264da320a696301f32300 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_cab_background_top_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_dialog_material_background.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_dialog_material_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c1be0076f4b849a40eeb1d9d6bdfb9eb2f070786 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_dialog_material_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_edit_text_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_edit_text_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..856ee6cd30bb907fbb833f82d792231f25e6c493 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_edit_text_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_ab_back_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_ab_back_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..803fd3a3f5294353bf46f5ba3e8b9124d30b9b42 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_ab_back_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2a7a1adf66005dcd37d3d3a5c4fba9eb7270b91f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_clear_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_clear_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..794aaae16d291ab6b2b64e07d780d93fde257e4b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_clear_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_go_search_api_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_go_search_api_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..413b36bf511f48ecd1f291623164a3a096333b65 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_go_search_api_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_menu_overflow_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_menu_overflow_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..cf52d719af141080e8a058ac7e69a1fb8e2d22ab Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_menu_overflow_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_search_api_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_search_api_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..625dda50ae26265a29f0202129df8ec4ce458fbb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_search_api_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_voice_search_api_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_voice_search_api_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ae8f414ccd901b7dac2beeda0caf1caed404deff Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ic_voice_search_api_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_item_background_holo_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_item_background_holo_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ce6a6da56220ebc977c0666bf1c4c0e6685d1213 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_item_background_holo_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_item_background_holo_light.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_item_background_holo_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..410f23eb00de19cc330d0bf658d7be1f9455f9f9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_item_background_holo_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_divider_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_divider_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..adf733193ee9d618bb1fcad86f2ba5e4ad3a3205 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_divider_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_background_transition_holo_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_background_transition_holo_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..0f34d9fb4f8257f622d68b46e0c177701077dd3d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_background_transition_holo_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_background_transition_holo_light.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_background_transition_holo_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..38e277a23ab710d6b05dfd844acb00edd5770e35 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_background_transition_holo_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_holo_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_holo_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..764c2dba5c6709cda0e43ea12313c6ed4f589962 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_holo_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_holo_light.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_holo_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..8a1346841c080dfea8cf8365eb35760032096430 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_list_selector_holo_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_indicator_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_indicator_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..af1191403ae6a3dcdb8548bb7a18d0e125617965 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_indicator_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f444780fd283d71f21de30a59c25fb63ecfde017 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_small_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_small_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..eb6d96518e299d452d91be28f25df7a29bd61f92 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_ratingbar_small_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_thumb_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_thumb_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1be9977902cd09291074406b8a43fd6fda3e0588 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_thumb_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_tick_mark_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_tick_mark_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..32e18f698af028dbc0d9c9f949fd02732635a960 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_tick_mark_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_track_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_track_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..df8920ed3fb5a88c572fa3e1ade007330b8895e7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_seekbar_track_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_spinner_textfield_background_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_spinner_textfield_background_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..06459aca5744b078b6ba2eba32f067a945c906e1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_spinner_textfield_background_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_switch_thumb_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_switch_thumb_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..3f232c238587e18c27668d3fb2150c35fdff2df7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_switch_thumb_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_tab_indicator_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_tab_indicator_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f6a376ecadf70161a95bf0303b64237f7c124957 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_tab_indicator_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_text_cursor_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_text_cursor_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a9a8927579e727054114a6a76105cf6600a0951c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_text_cursor_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_textfield_search_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_textfield_search_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..da2b8c47d3156df998eb0b04d9ebd6610a7c189d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_textfield_search_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_abc_vector_test.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_vector_test.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..9d34aca5f650c4a11b4a980fde3fdfde62f78676 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_abc_vector_test.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_bg_material.png.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_bg_material.png.flat new file mode 100644 index 0000000000000000000000000000000000000000..bc61e456f89e1608d8ca65f4695605113d859d53 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_bg_material.png.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_design_bottom_navigation_item_background.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_design_bottom_navigation_item_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..fbd6fe553f4fcb27e5c841d3e3c337e42ac2f5f1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_design_bottom_navigation_item_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_design_fab_background.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_design_fab_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d4f5ecb8a9054b5be6ed7fa1a40bec5cb535a87b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_design_fab_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_design_password_eye.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_design_password_eye.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ecd5471a6b16bfe21eb19e7976f08efaf210e503 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_design_password_eye.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_design_snackbar_background.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_design_snackbar_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1d3df853d1838461c9c2bd3f12d90c9502a10c4f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_design_snackbar_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_checked_black.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_checked_black.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..fcd258f1420dde70c8f1a0611d503467ea1a336b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_checked_black.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_checked_circle.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_checked_circle.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2d1cc92ce87b9d48c07ae1bd062828a1b940c2be Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_checked_circle.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_close_circle.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_close_circle.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..68300319edcdc92cb6e3cd6cdff09ae551e30df1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_ic_mtrl_chip_close_circle.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_mtrl_snackbar_background.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_mtrl_snackbar_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..7a1a3a5c31b9d043fdf6a7a9dc84ffb5993604f6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_mtrl_snackbar_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_mtrl_tabs_default_indicator.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_mtrl_tabs_default_indicator.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6dc543e0bfe9820ab83f74dc0211090ecdcfb81a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_mtrl_tabs_default_indicator.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_navigation_empty_icon.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_navigation_empty_icon.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..7cfb9b1dd4cd72d801265c6bc4a2e512e83bdd74 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_navigation_empty_icon.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_notification_bg.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_notification_bg.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..7a0757fa5add4379190b360871463bf6415a2c73 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_notification_bg.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_notification_bg_low.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_notification_bg_low.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..be0c2edb68bf1738b9e4cacaf0249db9586e2883 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_notification_bg_low.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_notification_icon_background.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_notification_icon_background.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b666063d6cdd42914ab9d56622e921d6aa0b1574 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_notification_icon_background.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_notification_tile_bg.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_notification_tile_bg.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..65fd4fabd8a2b1c98f8b3f0c920ec58f3e5d0328 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_notification_tile_bg.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_tooltip_frame_dark.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_tooltip_frame_dark.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..3c7a48aed2f3bd9cada31301c03e5143f7c74b80 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_tooltip_frame_dark.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/drawable_tooltip_frame_light.xml.flat b/SmartFritz/build/intermediates/res/merged/release/drawable_tooltip_frame_light.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..797a004b6b205cf81269f9826c4a00bce4217647 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/drawable_tooltip_frame_light.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_fast_out_linear_in.xml.flat b/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_fast_out_linear_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..324abdc2c0db6bb5f3bae75641434adbf0c5075a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_fast_out_linear_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_fast_out_slow_in.xml.flat b/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_fast_out_slow_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..286636e6b67b193892655e99a8edddde5af74131 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_fast_out_slow_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_linear_out_slow_in.xml.flat b/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_linear_out_slow_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..644c4424abe97dd0e5275a018a92c26d9c717fbe Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/interpolator-v21_mtrl_linear_out_slow_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_fast_out_linear_in.xml.flat b/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_fast_out_linear_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..050c2b94885584a01de82e0d4a5f6928505ef97d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_fast_out_linear_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_fast_out_slow_in.xml.flat b/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_fast_out_slow_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6805f698ed4c6f358ee5c72722a72631e77d2b76 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_fast_out_slow_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_linear.xml.flat b/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_linear.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..5023aa81ccb751645d989618589d711e1d09b4f5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_linear.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_linear_out_slow_in.xml.flat b/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_linear_out_slow_in.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ea96e906712fcb847e906db8ee2e09f8c5a84cb9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/interpolator_mtrl_linear_out_slow_in.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout-sw600dp-v13_design_layout_snackbar.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout-sw600dp-v13_design_layout_snackbar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..0bf68a99a825afe4e12f68f184d79c4c576fdcb1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout-sw600dp-v13_design_layout_snackbar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout-sw600dp-v13_mtrl_layout_snackbar.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout-sw600dp-v13_mtrl_layout_snackbar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..bd926c820bbf3740d06a29ac296cdfe9543d0819 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout-sw600dp-v13_mtrl_layout_snackbar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout-v16_notification_template_custom_big.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout-v16_notification_template_custom_big.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..9df3582cfb613963e2c3e0a711a289bfe919d7fd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout-v16_notification_template_custom_big.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_action.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_action.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..61942a2aa7994742d94a93f523b96684412fdd3d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_action.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_action_tombstone.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_action_tombstone.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ccd1fa855343dca6624bf559a7f3a4958c624069 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_action_tombstone.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_template_custom_big.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_template_custom_big.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..0dc4c7c65978a136228a00e6568f2e039af1e7e8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_template_custom_big.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_template_icon_group.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_template_icon_group.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..41ae4da907ead6048889fa4927b33c26873dd150 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout-v21_notification_template_icon_group.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout-v26_abc_screen_toolbar.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout-v26_abc_screen_toolbar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..55da9eacb8c03166d3637445eb56e199ef62f1d7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout-v26_abc_screen_toolbar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f591e00e790c383c107e72c316731b4279939d8f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout-watch-v20_abc_alert_dialog_title_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout-watch-v20_abc_alert_dialog_title_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ce7bf9680de4cdd9c5e892fe0e624224064b6f97 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout-watch-v20_abc_alert_dialog_title_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_bar_title_item.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_bar_title_item.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..4be0891bb8afdfb7dc76c0d4b644e78f8f011404 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_bar_title_item.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_bar_up_container.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_bar_up_container.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..9153ac9e43dff376e4921a0005e48f9e0e11669d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_bar_up_container.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_menu_item_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_menu_item_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d322872673d8cff54b320ff797529d4271072c40 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_menu_item_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_menu_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_menu_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..cb551c999c49a98b777f6267eda7b2a38ac6e927 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_menu_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_mode_bar.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_mode_bar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..490bcc68d1796a6bc5a2a8056f14e6925fa54e86 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_mode_bar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_mode_close_item_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_mode_close_item_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a397668097eac01b698de1f933e06c24268fa189 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_action_mode_close_item_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_activity_chooser_view.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_activity_chooser_view.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..397bd89501cfba0a71fc274e285f474035993892 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_activity_chooser_view.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_activity_chooser_view_list_item.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_activity_chooser_view_list_item.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2ae4cf13c92574f29ee55062847584015c0fe46a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_activity_chooser_view_list_item.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_button_bar_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_button_bar_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2bdfc7d7b76f35376ec044854bce4d501618a5bc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_button_bar_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..25aaf5fae56f4952298f7aebe86846d12eb5f8a9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_title_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_title_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..5646f8ede090f83227691710e239227f0f5c2952 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_alert_dialog_title_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_cascading_menu_item_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_cascading_menu_item_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..82e4685db31a58eb7c4353be48a890a1e98ae439 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_cascading_menu_item_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_dialog_title_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_dialog_title_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..4867f337afb648996670aff6dc0bfcfe9f5cf45b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_dialog_title_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_expanded_menu_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_expanded_menu_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..833d4ee93828e964a525b73079b1a62c4cea952e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_expanded_menu_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_checkbox.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_checkbox.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1467326ea00fed3cda96801d97fcb9bab5f5626a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_checkbox.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_icon.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_icon.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..5c00b3b5f5200840886599bee0ab56f19e367163 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_icon.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d0dfbec24c17fd03cd476574856d2890daa75a51 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_radio.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_radio.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..500c9ad7892f5fb2191ed6f1ab14623f151a4501 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_list_menu_item_radio.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_popup_menu_header_item_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_popup_menu_header_item_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1ef2ac1b95f1e10c84102b5aabe3a1e81a2fad9a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_popup_menu_header_item_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_popup_menu_item_layout.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_popup_menu_item_layout.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2c4e5ae965c3f06746f47946647d043e884e0770 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_popup_menu_item_layout.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_content_include.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_content_include.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6e3980b2ccb47df22bf5a10f28baf1cb06177d9f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_content_include.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_simple.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_simple.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a0a33b063e8f188940d4e10546a19e9345d30b6d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_simple.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_simple_overlay_action_mode.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_simple_overlay_action_mode.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..63eb23ade73d351afc36fec7edf6d6512931e14e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_simple_overlay_action_mode.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_toolbar.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_toolbar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2ec8a2630e32c1a01342a733a3d8be2d35c7b48d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_screen_toolbar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_search_dropdown_item_icons_2line.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_search_dropdown_item_icons_2line.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..755286f270fd5d93a7afa63777b1b6bfeae690ea Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_search_dropdown_item_icons_2line.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_search_view.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_search_view.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..46f643c31ad623c922f58c0e8ff3362d7fad2859 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_search_view.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_select_dialog_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_select_dialog_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6db8e74ebb80a20a2a544bd2202e2d28a8214509 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_select_dialog_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_abc_tooltip.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_abc_tooltip.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..de632bbe70dd23f1ab57244aeac4dfe062bd0fad Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_abc_tooltip.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_activity_app.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_activity_app.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2bd9ac537db5832f7d5bf438d51ff2b91442ba7b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_activity_app.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_bottom_navigation_item.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_bottom_navigation_item.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ee7e4685ebde4539cbcc47ee0743a96aa1348c09 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_bottom_navigation_item.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_bottom_sheet_dialog.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_bottom_sheet_dialog.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..21b352f7569051c3ee756f010e028887c0de6bb6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_bottom_sheet_dialog.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_snackbar.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_snackbar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..8ce241c2a31bbfb7890504642cfef46f317c8ca6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_snackbar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_snackbar_include.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_snackbar_include.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..856818419dc1db5abae0afaf4e4ae78127dc1096 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_snackbar_include.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_tab_icon.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_tab_icon.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..3d4797975d5a3a368c652ec81a5fea205fc3ac15 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_tab_icon.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_tab_text.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_tab_text.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c524df6c59b3c4cbc62c8f89414779769a005bc6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_layout_tab_text.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_menu_item_action_area.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_menu_item_action_area.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ec0d94435e09d8ea839bdbcfbaf23206e812a098 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_menu_item_action_area.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..84329f81182f74d709fb3b0f788386f19db974fb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_header.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_header.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..cd53e4be75edfaf77010ea0d2b71e9b1181de861 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_header.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_separator.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_separator.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..d6a7dd0443e81df33ed689611698ce7eb2944764 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_separator.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_subheader.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_subheader.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..b34ffe7fd7d8dcb31412da8ebf2276ad60e064cf Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_item_subheader.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_menu.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_menu.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..7a23afc7ad4bd2bae2ee3b4c2ba8cd0d0c1d95f5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_menu.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_menu_item.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_menu_item.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..9cf379481ff937e92ee6eeab2396550c55a5ebeb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_navigation_menu_item.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_design_text_input_password_icon.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_design_text_input_password_icon.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6117e729e69d3d2eefae4b3cbb0221e39aeca338 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_design_text_input_password_icon.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_mtrl_layout_snackbar.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_mtrl_layout_snackbar.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..4449f6c2dd6afb8596a2ee17168f9cec623e9eca Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_mtrl_layout_snackbar.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_mtrl_layout_snackbar_include.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_mtrl_layout_snackbar_include.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..f4c8f450ee371abca77118b3aec989cc087b58cd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_mtrl_layout_snackbar_include.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_action.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_action.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..67e12e29679e2619289bc8e20f506a2ccdcaea51 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_action.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_action_tombstone.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_action_tombstone.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ff7c978adbe64aed2f083bdda76bd18dca2e9db4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_action_tombstone.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_media_action.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_media_action.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a443f2ef5a091ac13abb7e848c66407cb3742ff0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_media_action.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_media_cancel_action.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_media_cancel_action.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..a00a291ab58e0842d940330b79e5192b9e09b19e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_media_cancel_action.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c88bcee5dbdec5fecc2db50f7cc16f54225fa304 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_custom.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_custom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..6d35f14b57698e674c0c51a7f5e858e9a070b5c9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_custom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_narrow.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_narrow.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..3257297aae28070fe462117e259c37f124c0a3a5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_narrow.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_narrow_custom.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_narrow_custom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2eff6516afc968e08abba92244f7434e30e22163 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_big_media_narrow_custom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_custom_big.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_custom_big.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..dcbca8bfa3d94c615b26c2085507be469ccae21f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_custom_big.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_icon_group.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_icon_group.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..289f37b2895ad135529c2a09de0d82c8e368d833 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_icon_group.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_lines_media.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_lines_media.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..2b349041395dd215606beca2d43ed7453f203b00 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_lines_media.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_media.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_media.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..0aee22abd9fd7f69067a3884a64c50a4fe949409 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_media.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_media_custom.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_media_custom.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c40057fdeac11a771b47560835a0820c849dbfe5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_media_custom.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_part_chronometer.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_part_chronometer.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..ae73a165d4974f401fb885cbef66840732795834 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_part_chronometer.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_part_time.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_part_time.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1c5e49d82a60ae960fd939803eb554e2853fd89a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_notification_template_part_time.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_item_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_item_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..1d1d7d47cf56ac0a78a156c1a6841b9e513fffbc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_item_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_multichoice_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_multichoice_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..8859196b692e472b0cafd4a9de5d49277a99ca7a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_multichoice_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_singlechoice_material.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_singlechoice_material.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..423db283b6018bd64fd69d3b72b30c7599fcdaff Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_select_dialog_singlechoice_material.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/layout_support_simple_spinner_dropdown_item.xml.flat b/SmartFritz/build/intermediates/res/merged/release/layout_support_simple_spinner_dropdown_item.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..c45c807d6bca450ee7ef460234b5c9def76131bd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/layout_support_simple_spinner_dropdown_item.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/raw_my_ca.flat b/SmartFritz/build/intermediates/res/merged/release/raw_my_ca.flat new file mode 100644 index 0000000000000000000000000000000000000000..4488ede43247d97d8e09a086011f1f0fb32b24e3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/raw_my_ca.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-af_values-af.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-af_values-af.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..dfe14d3b09aa19b2ded5332e07dd669f761a07e9 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-af_values-af.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-am_values-am.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-am_values-am.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c538a2c0ee35aa6b2be9ad271982092af454cb13 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-am_values-am.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ar_values-ar.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ar_values-ar.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..6a67efde93fbd377c8f9d5eef88630655598d9bd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ar_values-ar.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-as_values-as.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-as_values-as.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..9c265b0c6097d09b1fe813ee5adfdd63a71f8ea4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-as_values-as.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-az_values-az.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-az_values-az.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..8f5417a23f3bf4f7fa8f914856b58dc1a2b04c45 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-az_values-az.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-b+sr+Latn_values-b+sr+Latn.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..67548029bfb0cad6d615b16d093ed88f2d0dcb71 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-be_values-be.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-be_values-be.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..e021f3dd4ca4be2d113242bed9c34cbcd4e36684 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-be_values-be.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-bg_values-bg.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-bg_values-bg.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..17ca169cb00d04a6914084da32d9b8d3b31795fc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-bg_values-bg.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-bn_values-bn.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-bn_values-bn.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..b79d484d473c250a1b44b05a20dd69380e4cfce4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-bn_values-bn.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-bs_values-bs.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-bs_values-bs.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..12f020171b085f70d525a93a5cf0306cf4725195 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-bs_values-bs.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ca_values-ca.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ca_values-ca.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..dea68506dd9bf083fa17ff77618c40e70657a0b3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ca_values-ca.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-cs_values-cs.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-cs_values-cs.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..17e315d5a632d55879a9fa15bf3af40a1a76b83c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-cs_values-cs.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-da_values-da.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-da_values-da.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..d253609dda4a0a8db769e733de61e443501c7aa7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-da_values-da.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-de_values-de.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-de_values-de.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..03f624f837ee2daa1e46a4255921a8c81988cb8d Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-de_values-de.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-el_values-el.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-el_values-el.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..b149b3911a16897068bd02feeee8215e9fc07112 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-el_values-el.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-en-rAU_values-en-rAU.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-en-rAU_values-en-rAU.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..22d91a22f626f46dc611aecebf2e1eb7f398bd02 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-en-rAU_values-en-rAU.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-en-rCA_values-en-rCA.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-en-rCA_values-en-rCA.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..049b591a50cd920f1eddcc7e61ea9627d2c272b7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-en-rCA_values-en-rCA.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-en-rGB_values-en-rGB.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-en-rGB_values-en-rGB.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..05986afc4bdf90925266ed3738d4cd82ae9ec497 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-en-rGB_values-en-rGB.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-en-rIN_values-en-rIN.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-en-rIN_values-en-rIN.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..2c3e7721f33769da61779d340a293d46869988e4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-en-rIN_values-en-rIN.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-en-rXC_values-en-rXC.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-en-rXC_values-en-rXC.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..befc954a27f39c25b178b9496a9bb6292c6ea2c7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-en-rXC_values-en-rXC.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-es-rUS_values-es-rUS.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-es-rUS_values-es-rUS.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..3df4ad5ca66f58ae8d11d30a3a79c5c142ab0cb3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-es-rUS_values-es-rUS.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-es_values-es.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-es_values-es.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c7b13f5c875abec2ff73e5d611cd1698fbf9963a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-es_values-es.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-et_values-et.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-et_values-et.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..bb35605a77a38081e8669d33f5b223602b204e82 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-et_values-et.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-eu_values-eu.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-eu_values-eu.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..f529f2200e706fd0095b4ca90b33423e8f14badb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-eu_values-eu.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-fa_values-fa.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-fa_values-fa.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..d4ccd043277d8b6fc62eb3600178a09316189e2f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-fa_values-fa.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-fi_values-fi.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-fi_values-fi.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c4ff5c51bfda3539f2ae97e0e5999e2de87c27d6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-fi_values-fi.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-fr-rCA_values-fr-rCA.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-fr-rCA_values-fr-rCA.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..4736ca9b33571e52c3d6696a574f3252609cf2af Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-fr-rCA_values-fr-rCA.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-fr_values-fr.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-fr_values-fr.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..09f72f36fc3d17eed0577856999c6b9f2f3ffc39 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-fr_values-fr.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-gl_values-gl.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-gl_values-gl.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..8a6ccaa3e4a080be8e4b9f25e7f40d4e9fd989cb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-gl_values-gl.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-gu_values-gu.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-gu_values-gu.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..2e6cbe70becb68437eea770e8c569473ac34ab8a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-gu_values-gu.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-h720dp-v13_values-h720dp-v13.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-h720dp-v13_values-h720dp-v13.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..6c603ada94262638fb32be77e6ea9f4ef761773c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-h720dp-v13_values-h720dp-v13.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-hdpi-v4_values-hdpi-v4.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-hdpi-v4_values-hdpi-v4.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a822872a1bee5562947d2fcd23c88d45aefd3b12 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-hdpi-v4_values-hdpi-v4.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-hi_values-hi.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-hi_values-hi.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..1d5d2e4ce915f611bf1f141fbb455d050ebb500e Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-hi_values-hi.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-hr_values-hr.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-hr_values-hr.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..f6b77dc6068ce6aa9d7955fa1789fe050dc73946 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-hr_values-hr.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-hu_values-hu.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-hu_values-hu.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..52ca9e296b2b3c1062d99132e0032fe6095eb9a0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-hu_values-hu.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-hy_values-hy.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-hy_values-hy.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..0f1c4062bad46ec0b6b303fe34a2bd02f41a185b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-hy_values-hy.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-in_values-in.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-in_values-in.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..9f5c2d8dc59ce9b0cd7a4bafe925d42480fb2fc5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-in_values-in.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-is_values-is.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-is_values-is.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..d73358516f715e9276839dc3b627a2bf38e9b6e8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-is_values-is.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-it_values-it.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-it_values-it.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c5add8d78b3012a332f25f991b5b3b7ce0b75112 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-it_values-it.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-iw_values-iw.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-iw_values-iw.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..ce4269ac2d1bda7570882d5ba3419894bc349a5b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-iw_values-iw.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ja_values-ja.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ja_values-ja.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..2268da0f99366bd4bec00224da8d6b9d6a6c69f3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ja_values-ja.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ka_values-ka.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ka_values-ka.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..920da7797f0b3779f52530676a35f51ba7b31f88 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ka_values-ka.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-kk_values-kk.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-kk_values-kk.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..1fd3bc96e4da8907f18d8458b0116131e71026c4 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-kk_values-kk.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-km_values-km.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-km_values-km.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a74a25fee19f32e39cc98757cb69da36a5429353 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-km_values-km.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-kn_values-kn.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-kn_values-kn.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..11ef23f8f16dbb876968ee0d00b6a1d4bfadeac5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-kn_values-kn.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ko_values-ko.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ko_values-ko.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..37b88a654f07cdf67a83e78b1cfd2c8d7ee70d59 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ko_values-ko.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ky_values-ky.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ky_values-ky.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..83477132f5c88b9cb3229290f7aa24c9b6856a7b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ky_values-ky.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-land_values-land.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-land_values-land.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..87e54edce6dcf9d92b3d167f3361bf68c88c0029 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-land_values-land.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-large-v4_values-large-v4.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-large-v4_values-large-v4.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..650426978c2d21227fd73f1acca8b1bcc8a4be3f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-large-v4_values-large-v4.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ldltr-v21_values-ldltr-v21.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ldltr-v21_values-ldltr-v21.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..dccaf43bd2ea58bdeb7666e4868f8c886b119157 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ldltr-v21_values-ldltr-v21.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-lo_values-lo.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-lo_values-lo.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..0451673c76859ed718d6d79a274c54482afb3fec Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-lo_values-lo.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-lt_values-lt.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-lt_values-lt.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..da725fc07f13e74f3d6060b60b8ba95f47ea6a89 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-lt_values-lt.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-lv_values-lv.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-lv_values-lv.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..7c748644a20dfc7b6bf954e27ad2468d4b90c4da Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-lv_values-lv.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-mk_values-mk.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-mk_values-mk.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c9913c5e4fb1e910c4307e2aad5b621900e376f0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-mk_values-mk.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ml_values-ml.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ml_values-ml.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a3cd6ce4138dab4aa93a02c30382381913aa613c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ml_values-ml.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-mn_values-mn.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-mn_values-mn.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..bf21079167a1d1a0744308060df236fd5163bb0f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-mn_values-mn.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-mr_values-mr.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-mr_values-mr.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..e7380328e75456a4ce1bbc970a4cea23dd2ff959 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-mr_values-mr.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ms_values-ms.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ms_values-ms.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..378ac94b6adfbbae1b506c6b87dd22be85a87fb1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ms_values-ms.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-my_values-my.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-my_values-my.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..84683b58968b5192353a92453a9f15b5a2844064 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-my_values-my.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-nb_values-nb.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-nb_values-nb.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..e1833ba6f869a4afbe3559d0c103085f1e99d3e3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-nb_values-nb.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ne_values-ne.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ne_values-ne.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..157c3a636c711f4706ee9cc159a42748445e3e27 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ne_values-ne.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-night-v8_values-night-v8.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-night-v8_values-night-v8.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..978a6168aba3ef01ab14058b6cafea00151e1736 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-night-v8_values-night-v8.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-nl_values-nl.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-nl_values-nl.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..f3092e29700ffdf41cdaed4d7455862b1e311a06 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-nl_values-nl.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-or_values-or.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-or_values-or.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..50135a43ef9f2fc1c0303676eb99fe8547ada04a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-or_values-or.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-pa_values-pa.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-pa_values-pa.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..d28cf1eb5e822f71d337590e0cace2ce101be489 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-pa_values-pa.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-pl_values-pl.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-pl_values-pl.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..61b0f266d3e992815f45eab705f4c971c56aa4ba Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-pl_values-pl.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-port_values-port.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-port_values-port.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..afdaff06246614d09491ae347a1b66209cb81e13 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-port_values-port.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-pt-rBR_values-pt-rBR.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-pt-rBR_values-pt-rBR.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..27dfb05ea9d0166c0a1b3e024579867fd9cd443a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-pt-rBR_values-pt-rBR.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-pt-rPT_values-pt-rPT.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-pt-rPT_values-pt-rPT.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..f2e03cd6359f05e7a6484653b2f33fe220400824 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-pt-rPT_values-pt-rPT.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-pt_values-pt.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-pt_values-pt.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..3efea863f8c1656ab892ef057b4245d90eb36060 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-pt_values-pt.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ro_values-ro.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ro_values-ro.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..40a2b1d32e7ab8c9f4635957ac38ebffcd185d75 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ro_values-ro.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ru_values-ru.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ru_values-ru.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..9cfc9de89637bf7d9605f4f8992babd95fb66d81 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ru_values-ru.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-si_values-si.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-si_values-si.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..cea8736362491b9af6cbf83cd0f154cd29cb6259 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-si_values-si.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-sk_values-sk.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-sk_values-sk.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c12d3b18ecfd44e6aca486061f1d154501f087e7 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-sk_values-sk.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-sl_values-sl.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-sl_values-sl.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..8be96ad59ecc029853e6212aba92e7bf6b5b45c0 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-sl_values-sl.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-sq_values-sq.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-sq_values-sq.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..9f3a10d907cfd1c7a31a18138273628209ad19cd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-sq_values-sq.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-sr_values-sr.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-sr_values-sr.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a9d50f27bc02621bfcf4eaa055554ee2a3ca48f8 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-sr_values-sr.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-sv_values-sv.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-sv_values-sv.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..2c2e1dce042489a3b8c237a613c78354a3e01326 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-sv_values-sv.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-sw600dp-v13_values-sw600dp-v13.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..3062f9c5fbdc6ffef73bc4c33c89ae1e21507661 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-sw600dp-v13_values-sw600dp-v13.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-sw_values-sw.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-sw_values-sw.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..1d282da21c2f3a8e541207c802256e8d31b6e439 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-sw_values-sw.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ta_values-ta.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ta_values-ta.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c76f8b7fff88a657aeb36fb2b4c468c0049b1353 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ta_values-ta.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-te_values-te.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-te_values-te.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..03c6d8ea9dd1ea8117504c152413b5fa44df9be3 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-te_values-te.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-th_values-th.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-th_values-th.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a4dcf7fe07eaa3beaab3e1adc0d0be4788ef81ba Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-th_values-th.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-tl_values-tl.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-tl_values-tl.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..eadc07d516f834772f80339a56486c882cfbd945 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-tl_values-tl.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-tr_values-tr.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-tr_values-tr.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..aa0e31832d4731ded93dfcf93087931cbad87bfc Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-tr_values-tr.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-uk_values-uk.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-uk_values-uk.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..3b4217c347f61e9deb079bc399cef2dd5683edfd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-uk_values-uk.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-ur_values-ur.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-ur_values-ur.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..d17cbfc01126ca6f30e7b64341a7d72924509af5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-ur_values-ur.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-uz_values-uz.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-uz_values-uz.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c1a2db8731a62deb2660ead27cc0ae58cf3352eb Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-uz_values-uz.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-v14_values-v14.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-v14_values-v14.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..eda6200ddbb3f340f5d7e6931dce36cbbb5d612c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-v14_values-v14.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-v16_values-v16.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-v16_values-v16.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..ca6143a6a25d7427c8590bfb89177661000cd80f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-v16_values-v16.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-v17_values-v17.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-v17_values-v17.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..a44a8237ba834d83e26415229db1677ece9fbbb2 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-v17_values-v17.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-v18_values-v18.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-v18_values-v18.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..8f9c56746c96dd4abe92ca6932f23b56e01a9824 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-v18_values-v18.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-v21_values-v21.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-v21_values-v21.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..d6509f3569ce150c5e4e3cab896d88dadbc16cb1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-v21_values-v21.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-v22_values-v22.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-v22_values-v22.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..f856014227c76481fc1bde07ccc9a22224533b21 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-v22_values-v22.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-v23_values-v23.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-v23_values-v23.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c966bb8e739a70e4a19edea73afc5e85ba880273 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-v23_values-v23.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-v24_values-v24.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-v24_values-v24.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..59b8f236ba78932bf70f9f71a60c80f0445e5eae Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-v24_values-v24.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-v25_values-v25.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-v25_values-v25.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..98e30645d62edfa621ab849d27925d0ccdc90ac1 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-v25_values-v25.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-v26_values-v26.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-v26_values-v26.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..c19a2282b0efcdd91df962b2a47277f167f86103 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-v26_values-v26.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-v28_values-v28.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-v28_values-v28.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..e76926414f9165e46e50a4436ebb4140dc250e6b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-v28_values-v28.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-vi_values-vi.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-vi_values-vi.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..967f34f320992b141753cf308f3b0072d7968c2b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-vi_values-vi.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-watch-v20_values-watch-v20.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-watch-v20_values-watch-v20.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..311295f28e10b7d8b5e7e473a31d2a57f6e7bedd Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-watch-v20_values-watch-v20.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-watch-v21_values-watch-v21.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-watch-v21_values-watch-v21.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..518ec08c16c7bec6f36c97bb908b568f740dbfb5 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-watch-v21_values-watch-v21.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-xlarge-v4_values-xlarge-v4.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-xlarge-v4_values-xlarge-v4.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..53dcef9758c09a1ed2485ac08a6162fa1571ba6f Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-xlarge-v4_values-xlarge-v4.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-zh-rCN_values-zh-rCN.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-zh-rCN_values-zh-rCN.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..0bdd8ae5d617deffb77b83b05ac410fc67b7b44b Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-zh-rCN_values-zh-rCN.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-zh-rHK_values-zh-rHK.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-zh-rHK_values-zh-rHK.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..b15c0fc568dc70a23aad1324f377dc1bdeaded3c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-zh-rHK_values-zh-rHK.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-zh-rTW_values-zh-rTW.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-zh-rTW_values-zh-rTW.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..4c665a24bf87c1f06db9b534c272a7641fe3c9b6 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-zh-rTW_values-zh-rTW.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values-zu_values-zu.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values-zu_values-zu.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..b4c48836158c993c4902fae0f68bef1caec9311a Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values-zu_values-zu.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/values_values.arsc.flat b/SmartFritz/build/intermediates/res/merged/release/values_values.arsc.flat new file mode 100644 index 0000000000000000000000000000000000000000..422698a04ae921d5d4fc46fe5f66f9e1c23ac09c Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/values_values.arsc.flat differ diff --git a/SmartFritz/build/intermediates/res/merged/release/xml_network_security_config.xml.flat b/SmartFritz/build/intermediates/res/merged/release/xml_network_security_config.xml.flat new file mode 100644 index 0000000000000000000000000000000000000000..80f7c01e91f02c678ad29433c1b3066b937fa683 Binary files /dev/null and b/SmartFritz/build/intermediates/res/merged/release/xml_network_security_config.xml.flat differ diff --git a/SmartFritz/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/SmartFritz/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa0dcc5c04b9fe7b81c46489aadeb28d0d384410 --- /dev/null +++ b/SmartFritz/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1,1899 @@ +org.muctec.smartfritz +anim abc_fade_in +anim abc_fade_out +anim abc_grow_fade_in_from_bottom +anim abc_popup_enter +anim abc_popup_exit +anim abc_shrink_fade_out_from_bottom +anim abc_slide_in_bottom +anim abc_slide_in_top +anim abc_slide_out_bottom +anim abc_slide_out_top +anim abc_tooltip_enter +anim abc_tooltip_exit +anim design_bottom_sheet_slide_in +anim design_bottom_sheet_slide_out +anim design_snackbar_in +anim design_snackbar_out +animator design_appbar_state_list_animator +animator design_fab_hide_motion_spec +animator design_fab_show_motion_spec +animator mtrl_btn_state_list_anim +animator mtrl_btn_unelevated_state_list_anim +animator mtrl_chip_state_list_anim +animator mtrl_fab_hide_motion_spec +animator mtrl_fab_show_motion_spec +animator mtrl_fab_transformation_sheet_collapse_spec +animator mtrl_fab_transformation_sheet_expand_spec +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModePopupWindowStyle +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionViewClass +attr activityChooserViewStyle +attr alertDialogButtonGroupStyle +attr alertDialogCenterButtons +attr alertDialogStyle +attr alertDialogTheme +attr allowStacking +attr alpha +attr alphabeticModifiers +attr arrowHeadLength +attr arrowShaftLength +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr background +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr barLength +attr behavior_autoHide +attr behavior_fitToContents +attr behavior_hideable +attr behavior_overlapTop +attr behavior_peekHeight +attr behavior_skipCollapsed +attr borderWidth +attr borderlessButtonStyle +attr bottomAppBarStyle +attr bottomNavigationStyle +attr bottomSheetDialogTheme +attr bottomSheetStyle +attr boxBackgroundColor +attr boxBackgroundMode +attr boxCollapsedPaddingTop +attr boxCornerRadiusBottomEnd +attr boxCornerRadiusBottomStart +attr boxCornerRadiusTopEnd +attr boxCornerRadiusTopStart +attr boxStrokeColor +attr boxStrokeWidth +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonGravity +attr buttonIconDimen +attr buttonPanelSideLayout +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr cardBackgroundColor +attr cardCornerRadius +attr cardElevation +attr cardMaxElevation +attr cardPreventCornerOverlap +attr cardUseCompatPadding +attr cardViewStyle +attr checkboxStyle +attr checkedChip +attr checkedIcon +attr checkedIconEnabled +attr checkedIconVisible +attr checkedTextViewStyle +attr chipBackgroundColor +attr chipCornerRadius +attr chipEndPadding +attr chipGroupStyle +attr chipIcon +attr chipIconEnabled +attr chipIconSize +attr chipIconTint +attr chipIconVisible +attr chipMinHeight +attr chipSpacing +attr chipSpacingHorizontal +attr chipSpacingVertical +attr chipStandaloneStyle +attr chipStartPadding +attr chipStrokeColor +attr chipStrokeWidth +attr chipStyle +attr closeIcon +attr closeIconEnabled +attr closeIconEndPadding +attr closeIconSize +attr closeIconStartPadding +attr closeIconTint +attr closeIconVisible +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr collapsedTitleGravity +attr collapsedTitleTextAppearance +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorPrimary +attr colorPrimaryDark +attr colorSecondary +attr colorSwitchThumbNormal +attr commitIcon +attr contentDescription +attr contentInsetEnd +attr contentInsetEndWithActions +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr contentInsetStartWithNavigation +attr contentPadding +attr contentPaddingBottom +attr contentPaddingLeft +attr contentPaddingRight +attr contentPaddingTop +attr contentScrim +attr controlBackground +attr coordinatorLayoutStyle +attr cornerRadius +attr counterEnabled +attr counterMaxLength +attr counterOverflowTextAppearance +attr counterTextAppearance +attr customNavigationLayout +attr defaultQueryHint +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr displayOptions +attr divider +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr drawableSize +attr drawerArrowStyle +attr dropDownListViewStyle +attr dropdownListPreferredItemHeight +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elevation +attr enforceMaterialTheme +attr enforceTextAppearance +attr errorEnabled +attr errorTextAppearance +attr expandActivityOverflowButtonDrawable +attr expanded +attr expandedTitleGravity +attr expandedTitleMargin +attr expandedTitleMarginBottom +attr expandedTitleMarginEnd +attr expandedTitleMarginStart +attr expandedTitleMarginTop +attr expandedTitleTextAppearance +attr fabAlignmentMode +attr fabCradleMargin +attr fabCradleRoundedCornerRadius +attr fabCradleVerticalOffset +attr fabCustomSize +attr fabSize +attr fastScrollEnabled +attr fastScrollHorizontalThumbDrawable +attr fastScrollHorizontalTrackDrawable +attr fastScrollVerticalThumbDrawable +attr fastScrollVerticalTrackDrawable +attr firstBaselineToTopHeight +attr floatingActionButtonStyle +attr font +attr fontFamily +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr foregroundInsidePadding +attr gapBetweenBars +attr goIcon +attr headerLayout +attr height +attr helperText +attr helperTextEnabled +attr helperTextTextAppearance +attr hideMotionSpec +attr hideOnContentScroll +attr hideOnScroll +attr hintAnimationEnabled +attr hintEnabled +attr hintTextAppearance +attr homeAsUpIndicator +attr homeLayout +attr hoveredFocusedTranslationZ +attr icon +attr iconEndPadding +attr iconGravity +attr iconPadding +attr iconSize +attr iconStartPadding +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr imageButtonStyle +attr indeterminateProgressStyle +attr initialActivityCount +attr insetForeground +attr isLightTheme +attr itemBackground +attr itemHorizontalPadding +attr itemHorizontalTranslationEnabled +attr itemIconPadding +attr itemIconSize +attr itemIconTint +attr itemPadding +attr itemSpacing +attr itemTextAppearance +attr itemTextAppearanceActive +attr itemTextAppearanceInactive +attr itemTextColor +attr keylines +attr labelVisibilityMode +attr lastBaselineToBottomHeight +attr layout +attr layoutManager +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_collapseMode +attr layout_collapseParallaxMultiplier +attr layout_dodgeInsetEdges +attr layout_insetEdge +attr layout_keyline +attr layout_scrollFlags +attr layout_scrollInterpolator +attr liftOnScroll +attr lineHeight +attr lineSpacing +attr listChoiceBackgroundIndicator +attr listDividerAlertDialog +attr listItemLayout +attr listLayout +attr listMenuViewStyle +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr logo +attr logoDescription +attr materialButtonStyle +attr materialCardViewStyle +attr maxActionInlineWidth +attr maxButtonHeight +attr maxImageSize +attr measureWithLargestChild +attr menu +attr multiChoiceItemLayout +attr navigationContentDescription +attr navigationIcon +attr navigationMode +attr navigationViewStyle +attr numericModifiers +attr overlapAnchor +attr paddingBottomNoButtons +attr paddingEnd +attr paddingStart +attr paddingTopNoTitle +attr panelBackground +attr panelMenuListTheme +attr panelMenuListWidth +attr passwordToggleContentDescription +attr passwordToggleDrawable +attr passwordToggleEnabled +attr passwordToggleTint +attr passwordToggleTintMode +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr preserveIconSpacing +attr pressedTranslationZ +attr progressBarPadding +attr progressBarStyle +attr queryBackground +attr queryHint +attr radioButtonStyle +attr ratingBarStyle +attr ratingBarStyleIndicator +attr ratingBarStyleSmall +attr reverseLayout +attr rippleColor +attr scrimAnimationDuration +attr scrimBackground +attr scrimVisibleHeightTrigger +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr showAsAction +attr showDividers +attr showMotionSpec +attr showText +attr showTitle +attr singleChoiceItemLayout +attr singleLine +attr singleSelection +attr snackbarButtonStyle +attr snackbarStyle +attr spanCount +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr srcCompat +attr stackFromEnd +attr state_above_anchor +attr state_collapsed +attr state_collapsible +attr state_liftable +attr state_lifted +attr statusBarBackground +attr statusBarScrim +attr strokeColor +attr strokeWidth +attr subMenuArrow +attr submitBackground +attr subtitle +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suggestionRowLayout +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr tabBackground +attr tabContentStart +attr tabGravity +attr tabIconTint +attr tabIconTintMode +attr tabIndicator +attr tabIndicatorAnimationDuration +attr tabIndicatorColor +attr tabIndicatorFullWidth +attr tabIndicatorGravity +attr tabIndicatorHeight +attr tabInlineLabel +attr tabMaxWidth +attr tabMinWidth +attr tabMode +attr tabPadding +attr tabPaddingBottom +attr tabPaddingEnd +attr tabPaddingStart +attr tabPaddingTop +attr tabRippleColor +attr tabSelectedTextColor +attr tabStyle +attr tabTextAppearance +attr tabTextColor +attr tabUnboundedRipple +attr textAllCaps +attr textAppearanceBody1 +attr textAppearanceBody2 +attr textAppearanceButton +attr textAppearanceCaption +attr textAppearanceHeadline1 +attr textAppearanceHeadline2 +attr textAppearanceHeadline3 +attr textAppearanceHeadline4 +attr textAppearanceHeadline5 +attr textAppearanceHeadline6 +attr textAppearanceLargePopupMenu +attr textAppearanceListItem +attr textAppearanceListItemSecondary +attr textAppearanceListItemSmall +attr textAppearanceOverline +attr textAppearancePopupMenuHeader +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textAppearanceSubtitle1 +attr textAppearanceSubtitle2 +attr textColorAlertDialogListItem +attr textColorSearchUrl +attr textEndPadding +attr textInputStyle +attr textStartPadding +attr theme +attr thickness +attr thumbTextPadding +attr thumbTint +attr thumbTintMode +attr tickMark +attr tickMarkTint +attr tickMarkTintMode +attr tint +attr tintMode +attr title +attr titleEnabled +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarId +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr tooltipForegroundColor +attr tooltipFrameBackground +attr tooltipText +attr track +attr trackTint +attr trackTintMode +attr ttcIndex +attr useCompatPadding +attr viewInflaterClass +attr voiceIcon +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowFixedHeightMajor +attr windowFixedHeightMinor +attr windowFixedWidthMajor +attr windowFixedWidthMinor +attr windowMinWidthMajor +attr windowMinWidthMinor +attr windowNoTitle +bool abc_action_bar_embed_tabs +bool abc_allow_stacked_button_bar +bool abc_config_actionMenuItemAllCaps +bool mtrl_btn_textappearance_all_caps +color abc_background_cache_hint_selector_material_dark +color abc_background_cache_hint_selector_material_light +color abc_btn_colored_borderless_text_material +color abc_btn_colored_text_material +color abc_color_highlight_material +color abc_hint_foreground_material_dark +color abc_hint_foreground_material_light +color abc_input_method_navigation_guard +color abc_primary_text_disable_only_material_dark +color abc_primary_text_disable_only_material_light +color abc_primary_text_material_dark +color abc_primary_text_material_light +color abc_search_url_text +color abc_search_url_text_normal +color abc_search_url_text_pressed +color abc_search_url_text_selected +color abc_secondary_text_material_dark +color abc_secondary_text_material_light +color abc_tint_btn_checkable +color abc_tint_default +color abc_tint_edittext +color abc_tint_seek_thumb +color abc_tint_spinner +color abc_tint_switch_track +color accent +color accent_material_dark +color accent_material_light +color background_floating_material_dark +color background_floating_material_light +color background_material_dark +color background_material_light +color bright_foreground_disabled_material_dark +color bright_foreground_disabled_material_light +color bright_foreground_inverse_material_dark +color bright_foreground_inverse_material_light +color bright_foreground_material_dark +color bright_foreground_material_light +color button_material_dark +color button_material_light +color cardview_dark_background +color cardview_light_background +color cardview_shadow_end_color +color cardview_shadow_start_color +color design_bottom_navigation_shadow_color +color design_default_color_primary +color design_default_color_primary_dark +color design_error +color design_fab_shadow_end_color +color design_fab_shadow_mid_color +color design_fab_shadow_start_color +color design_fab_stroke_end_inner_color +color design_fab_stroke_end_outer_color +color design_fab_stroke_top_inner_color +color design_fab_stroke_top_outer_color +color design_snackbar_background_color +color design_tint_password_toggle +color dim_foreground_disabled_material_dark +color dim_foreground_disabled_material_light +color dim_foreground_material_dark +color dim_foreground_material_light +color divider +color error_color_material_dark +color error_color_material_light +color foreground_material_dark +color foreground_material_light +color highlighted_text_material_dark +color highlighted_text_material_light +color icons +color material_blue_grey_800 +color material_blue_grey_900 +color material_blue_grey_950 +color material_deep_teal_200 +color material_deep_teal_500 +color material_grey_100 +color material_grey_300 +color material_grey_50 +color material_grey_600 +color material_grey_800 +color material_grey_850 +color material_grey_900 +color mtrl_bottom_nav_colored_item_tint +color mtrl_bottom_nav_item_tint +color mtrl_btn_bg_color_disabled +color mtrl_btn_bg_color_selector +color mtrl_btn_ripple_color +color mtrl_btn_stroke_color_selector +color mtrl_btn_text_btn_ripple_color +color mtrl_btn_text_color_disabled +color mtrl_btn_text_color_selector +color mtrl_btn_transparent_bg_color +color mtrl_chip_background_color +color mtrl_chip_close_icon_tint +color mtrl_chip_ripple_color +color mtrl_chip_text_color +color mtrl_fab_ripple_color +color mtrl_scrim_color +color mtrl_tabs_colored_ripple_color +color mtrl_tabs_icon_color_selector +color mtrl_tabs_icon_color_selector_colored +color mtrl_tabs_legacy_text_color_selector +color mtrl_tabs_ripple_color +color mtrl_text_btn_text_color_selector +color mtrl_textinput_default_box_stroke_color +color mtrl_textinput_disabled_color +color mtrl_textinput_filled_box_default_background_color +color mtrl_textinput_hovered_box_stroke_color +color notification_action_color_filter +color notification_icon_bg_color +color notification_material_background_media_default_color +color primary +color primary_dark +color primary_dark_material_dark +color primary_dark_material_light +color primary_light +color primary_material_dark +color primary_material_light +color primary_text +color primary_text_default_material_dark +color primary_text_default_material_light +color primary_text_disabled_material_dark +color primary_text_disabled_material_light +color ripple_material_dark +color ripple_material_light +color secondary_text +color secondary_text_default_material_dark +color secondary_text_default_material_light +color secondary_text_disabled_material_dark +color secondary_text_disabled_material_light +color switch_thumb_disabled_material_dark +color switch_thumb_disabled_material_light +color switch_thumb_material_dark +color switch_thumb_material_light +color switch_thumb_normal_material_dark +color switch_thumb_normal_material_light +color tooltip_background_dark +color tooltip_background_light +dimen abc_action_bar_content_inset_material +dimen abc_action_bar_content_inset_with_nav +dimen abc_action_bar_default_height_material +dimen abc_action_bar_default_padding_end_material +dimen abc_action_bar_default_padding_start_material +dimen abc_action_bar_elevation_material +dimen abc_action_bar_icon_vertical_padding_material +dimen abc_action_bar_overflow_padding_end_material +dimen abc_action_bar_overflow_padding_start_material +dimen abc_action_bar_stacked_max_height +dimen abc_action_bar_stacked_tab_max_width +dimen abc_action_bar_subtitle_bottom_margin_material +dimen abc_action_bar_subtitle_top_margin_material +dimen abc_action_button_min_height_material +dimen abc_action_button_min_width_material +dimen abc_action_button_min_width_overflow_material +dimen abc_alert_dialog_button_bar_height +dimen abc_alert_dialog_button_dimen +dimen abc_button_inset_horizontal_material +dimen abc_button_inset_vertical_material +dimen abc_button_padding_horizontal_material +dimen abc_button_padding_vertical_material +dimen abc_cascading_menus_min_smallest_width +dimen abc_config_prefDialogWidth +dimen abc_control_corner_material +dimen abc_control_inset_material +dimen abc_control_padding_material +dimen abc_dialog_corner_radius_material +dimen abc_dialog_fixed_height_major +dimen abc_dialog_fixed_height_minor +dimen abc_dialog_fixed_width_major +dimen abc_dialog_fixed_width_minor +dimen abc_dialog_list_padding_bottom_no_buttons +dimen abc_dialog_list_padding_top_no_title +dimen abc_dialog_min_width_major +dimen abc_dialog_min_width_minor +dimen abc_dialog_padding_material +dimen abc_dialog_padding_top_material +dimen abc_dialog_title_divider_material +dimen abc_disabled_alpha_material_dark +dimen abc_disabled_alpha_material_light +dimen abc_dropdownitem_icon_width +dimen abc_dropdownitem_text_padding_left +dimen abc_dropdownitem_text_padding_right +dimen abc_edit_text_inset_bottom_material +dimen abc_edit_text_inset_horizontal_material +dimen abc_edit_text_inset_top_material +dimen abc_floating_window_z +dimen abc_list_item_padding_horizontal_material +dimen abc_panel_menu_list_width +dimen abc_progress_bar_height_material +dimen abc_search_view_preferred_height +dimen abc_search_view_preferred_width +dimen abc_seekbar_track_background_height_material +dimen abc_seekbar_track_progress_height_material +dimen abc_select_dialog_padding_start_material +dimen abc_switch_padding +dimen abc_text_size_body_1_material +dimen abc_text_size_body_2_material +dimen abc_text_size_button_material +dimen abc_text_size_caption_material +dimen abc_text_size_display_1_material +dimen abc_text_size_display_2_material +dimen abc_text_size_display_3_material +dimen abc_text_size_display_4_material +dimen abc_text_size_headline_material +dimen abc_text_size_large_material +dimen abc_text_size_medium_material +dimen abc_text_size_menu_header_material +dimen abc_text_size_menu_material +dimen abc_text_size_small_material +dimen abc_text_size_subhead_material +dimen abc_text_size_subtitle_material_toolbar +dimen abc_text_size_title_material +dimen abc_text_size_title_material_toolbar +dimen cardview_compat_inset_shadow +dimen cardview_default_elevation +dimen cardview_default_radius +dimen compat_button_inset_horizontal_material +dimen compat_button_inset_vertical_material +dimen compat_button_padding_horizontal_material +dimen compat_button_padding_vertical_material +dimen compat_control_corner_material +dimen compat_notification_large_icon_max_height +dimen compat_notification_large_icon_max_width +dimen design_appbar_elevation +dimen design_bottom_navigation_active_item_max_width +dimen design_bottom_navigation_active_item_min_width +dimen design_bottom_navigation_active_text_size +dimen design_bottom_navigation_elevation +dimen design_bottom_navigation_height +dimen design_bottom_navigation_icon_size +dimen design_bottom_navigation_item_max_width +dimen design_bottom_navigation_item_min_width +dimen design_bottom_navigation_margin +dimen design_bottom_navigation_shadow_height +dimen design_bottom_navigation_text_size +dimen design_bottom_sheet_modal_elevation +dimen design_bottom_sheet_peek_height_min +dimen design_fab_border_width +dimen design_fab_elevation +dimen design_fab_image_size +dimen design_fab_size_mini +dimen design_fab_size_normal +dimen design_fab_translation_z_hovered_focused +dimen design_fab_translation_z_pressed +dimen design_navigation_elevation +dimen design_navigation_icon_padding +dimen design_navigation_icon_size +dimen design_navigation_item_horizontal_padding +dimen design_navigation_item_icon_padding +dimen design_navigation_max_width +dimen design_navigation_padding_bottom +dimen design_navigation_separator_vertical_padding +dimen design_snackbar_action_inline_max_width +dimen design_snackbar_background_corner_radius +dimen design_snackbar_elevation +dimen design_snackbar_extra_spacing_horizontal +dimen design_snackbar_max_width +dimen design_snackbar_min_width +dimen design_snackbar_padding_horizontal +dimen design_snackbar_padding_vertical +dimen design_snackbar_padding_vertical_2lines +dimen design_snackbar_text_size +dimen design_tab_max_width +dimen design_tab_scrollable_min_width +dimen design_tab_text_size +dimen design_tab_text_size_2line +dimen design_textinput_caption_translate_y +dimen disabled_alpha_material_dark +dimen disabled_alpha_material_light +dimen fastscroll_default_thickness +dimen fastscroll_margin +dimen fastscroll_minimum_range +dimen highlight_alpha_material_colored +dimen highlight_alpha_material_dark +dimen highlight_alpha_material_light +dimen hint_alpha_material_dark +dimen hint_alpha_material_light +dimen hint_pressed_alpha_material_dark +dimen hint_pressed_alpha_material_light +dimen item_touch_helper_max_drag_scroll_per_frame +dimen item_touch_helper_swipe_escape_max_velocity +dimen item_touch_helper_swipe_escape_velocity +dimen mtrl_bottomappbar_fabOffsetEndMode +dimen mtrl_bottomappbar_fab_cradle_margin +dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius +dimen mtrl_bottomappbar_fab_cradle_vertical_offset +dimen mtrl_bottomappbar_height +dimen mtrl_btn_corner_radius +dimen mtrl_btn_dialog_btn_min_width +dimen mtrl_btn_disabled_elevation +dimen mtrl_btn_disabled_z +dimen mtrl_btn_elevation +dimen mtrl_btn_focused_z +dimen mtrl_btn_hovered_z +dimen mtrl_btn_icon_btn_padding_left +dimen mtrl_btn_icon_padding +dimen mtrl_btn_inset +dimen mtrl_btn_letter_spacing +dimen mtrl_btn_padding_bottom +dimen mtrl_btn_padding_left +dimen mtrl_btn_padding_right +dimen mtrl_btn_padding_top +dimen mtrl_btn_pressed_z +dimen mtrl_btn_stroke_size +dimen mtrl_btn_text_btn_icon_padding +dimen mtrl_btn_text_btn_padding_left +dimen mtrl_btn_text_btn_padding_right +dimen mtrl_btn_text_size +dimen mtrl_btn_z +dimen mtrl_card_elevation +dimen mtrl_card_spacing +dimen mtrl_chip_pressed_translation_z +dimen mtrl_chip_text_size +dimen mtrl_fab_elevation +dimen mtrl_fab_translation_z_hovered_focused +dimen mtrl_fab_translation_z_pressed +dimen mtrl_navigation_elevation +dimen mtrl_navigation_item_horizontal_padding +dimen mtrl_navigation_item_icon_padding +dimen mtrl_snackbar_background_corner_radius +dimen mtrl_snackbar_margin +dimen mtrl_textinput_box_bottom_offset +dimen mtrl_textinput_box_corner_radius_medium +dimen mtrl_textinput_box_corner_radius_small +dimen mtrl_textinput_box_label_cutout_padding +dimen mtrl_textinput_box_padding_end +dimen mtrl_textinput_box_stroke_width_default +dimen mtrl_textinput_box_stroke_width_focused +dimen mtrl_textinput_outline_box_expanded_padding +dimen mtrl_toolbar_default_height +dimen notification_action_icon_size +dimen notification_action_text_size +dimen notification_big_circle_margin +dimen notification_content_margin_start +dimen notification_large_icon_height +dimen notification_large_icon_width +dimen notification_main_column_padding_top +dimen notification_media_narrow_margin +dimen notification_right_icon_size +dimen notification_right_side_padding_top +dimen notification_small_icon_background_padding +dimen notification_small_icon_size_as_large +dimen notification_subtext_size +dimen notification_top_pad +dimen notification_top_pad_large_text +dimen subtitle_corner_radius +dimen subtitle_outline_width +dimen subtitle_shadow_offset +dimen subtitle_shadow_radius +dimen tooltip_corner_radius +dimen tooltip_horizontal_padding +dimen tooltip_margin +dimen tooltip_precise_anchor_extra_offset +dimen tooltip_precise_anchor_threshold +dimen tooltip_vertical_padding +dimen tooltip_y_offset_non_touch +dimen tooltip_y_offset_touch +drawable abc_ab_share_pack_mtrl_alpha +drawable abc_action_bar_item_background_material +drawable abc_btn_borderless_material +drawable abc_btn_check_material +drawable abc_btn_check_to_on_mtrl_000 +drawable abc_btn_check_to_on_mtrl_015 +drawable abc_btn_colored_material +drawable abc_btn_default_mtrl_shape +drawable abc_btn_radio_material +drawable abc_btn_radio_to_on_mtrl_000 +drawable abc_btn_radio_to_on_mtrl_015 +drawable abc_btn_switch_to_on_mtrl_00001 +drawable abc_btn_switch_to_on_mtrl_00012 +drawable abc_cab_background_internal_bg +drawable abc_cab_background_top_material +drawable abc_cab_background_top_mtrl_alpha +drawable abc_control_background_material +drawable abc_dialog_material_background +drawable abc_edit_text_material +drawable abc_ic_ab_back_material +drawable abc_ic_arrow_drop_right_black_24dp +drawable abc_ic_clear_material +drawable abc_ic_commit_search_api_mtrl_alpha +drawable abc_ic_go_search_api_material +drawable abc_ic_menu_copy_mtrl_am_alpha +drawable abc_ic_menu_cut_mtrl_alpha +drawable abc_ic_menu_overflow_material +drawable abc_ic_menu_paste_mtrl_am_alpha +drawable abc_ic_menu_selectall_mtrl_alpha +drawable abc_ic_menu_share_mtrl_alpha +drawable abc_ic_search_api_material +drawable abc_ic_star_black_16dp +drawable abc_ic_star_black_36dp +drawable abc_ic_star_black_48dp +drawable abc_ic_star_half_black_16dp +drawable abc_ic_star_half_black_36dp +drawable abc_ic_star_half_black_48dp +drawable abc_ic_voice_search_api_material +drawable abc_item_background_holo_dark +drawable abc_item_background_holo_light +drawable abc_list_divider_material +drawable abc_list_divider_mtrl_alpha +drawable abc_list_focused_holo +drawable abc_list_longpressed_holo +drawable abc_list_pressed_holo_dark +drawable abc_list_pressed_holo_light +drawable abc_list_selector_background_transition_holo_dark +drawable abc_list_selector_background_transition_holo_light +drawable abc_list_selector_disabled_holo_dark +drawable abc_list_selector_disabled_holo_light +drawable abc_list_selector_holo_dark +drawable abc_list_selector_holo_light +drawable abc_menu_hardkey_panel_mtrl_mult +drawable abc_popup_background_mtrl_mult +drawable abc_ratingbar_indicator_material +drawable abc_ratingbar_material +drawable abc_ratingbar_small_material +drawable abc_scrubber_control_off_mtrl_alpha +drawable abc_scrubber_control_to_pressed_mtrl_000 +drawable abc_scrubber_control_to_pressed_mtrl_005 +drawable abc_scrubber_primary_mtrl_alpha +drawable abc_scrubber_track_mtrl_alpha +drawable abc_seekbar_thumb_material +drawable abc_seekbar_tick_mark_material +drawable abc_seekbar_track_material +drawable abc_spinner_mtrl_am_alpha +drawable abc_spinner_textfield_background_material +drawable abc_switch_thumb_material +drawable abc_switch_track_mtrl_alpha +drawable abc_tab_indicator_material +drawable abc_tab_indicator_mtrl_alpha +drawable abc_text_cursor_material +drawable abc_text_select_handle_left_mtrl_dark +drawable abc_text_select_handle_left_mtrl_light +drawable abc_text_select_handle_middle_mtrl_dark +drawable abc_text_select_handle_middle_mtrl_light +drawable abc_text_select_handle_right_mtrl_dark +drawable abc_text_select_handle_right_mtrl_light +drawable abc_textfield_activated_mtrl_alpha +drawable abc_textfield_default_mtrl_alpha +drawable abc_textfield_search_activated_mtrl_alpha +drawable abc_textfield_search_default_mtrl_alpha +drawable abc_textfield_search_material +drawable abc_vector_test +drawable avd_hide_password +drawable avd_show_password +drawable bg_material +drawable design_bottom_navigation_item_background +drawable design_fab_background +drawable design_ic_visibility +drawable design_ic_visibility_off +drawable design_password_eye +drawable design_snackbar_background +drawable ic_call_icon +drawable ic_cervantes +drawable ic_chevron_left_black_48dp +drawable ic_chevron_right_black_48dp +drawable ic_don_quixote +drawable ic_fritzbox +drawable ic_fritzbox_icon +drawable ic_lance +drawable ic_launcher +drawable ic_log_icon +drawable ic_menu_white_36dp +drawable ic_mtrl_chip_checked_black +drawable ic_mtrl_chip_checked_circle +drawable ic_mtrl_chip_close_circle +drawable ic_scene_1 +drawable ic_scene_2 +drawable ic_scene_3 +drawable ic_settings_icon +drawable ic_state_icon +drawable ic_windmil +drawable mtrl_snackbar_background +drawable mtrl_tabs_default_indicator +drawable navigation_empty_icon +drawable notification_action_background +drawable notification_bg +drawable notification_bg_low +drawable notification_bg_low_normal +drawable notification_bg_low_pressed +drawable notification_bg_normal +drawable notification_bg_normal_pressed +drawable notification_icon_background +drawable notification_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable tooltip_frame_dark +drawable tooltip_frame_light +id ALT +id CTRL +id FUNCTION +id META +id SHIFT +id SYM +id action0 +id action_bar +id action_bar_activity_content +id action_bar_container +id action_bar_root +id action_bar_spinner +id action_bar_subtitle +id action_bar_title +id action_container +id action_context_bar +id action_divider +id action_image +id action_menu_divider +id action_menu_presenter +id action_mode_bar +id action_mode_bar_stub +id action_mode_close_button +id action_text +id actions +id activity_chooser_view_content +id add +id alertTitle +id all +id always +id async +id auto +id beginning +id blocking +id bottom +id buttonPanel +id cancel_action +id center +id center_horizontal +id center_vertical +id checkbox +id chronometer +id clip_horizontal +id clip_vertical +id collapseActionView +id container +id content +id contentPanel +id coordinator +id custom +id customPanel +id decor_content_parent +id default_activity_button +id design_bottom_sheet +id design_menu_item_action_area +id design_menu_item_action_area_stub +id design_menu_item_text +id design_navigation_view +id disableHome +id edit_query +id end +id end_padder +id enterAlways +id enterAlwaysCollapsed +id exitUntilCollapsed +id expand_activities_button +id expanded_menu +id fill +id fill_horizontal +id fill_vertical +id filled +id fixed +id forever +id ghost_view +id group_divider +id home +id homeAsUp +id icon +id icon_group +id ifRoom +id image +id info +id italic +id item_touch_helper_previous_elevation +id labeled +id largeLabel +id left +id line1 +id line3 +id listMode +id list_item +id masked +id media_actions +id message +id middle +id mini +id mtrl_child_content_container +id mtrl_internal_children_alpha_tag +id multiply +id navigation_header_container +id never +id none +id normal +id notification_background +id notification_main_column +id notification_main_column_container +id outline +id parallax +id parentPanel +id parent_matrix +id pin +id progress_circular +id progress_horizontal +id radio +id right +id right_icon +id right_side +id save_image_matrix +id save_non_transition_alpha +id save_scale_type +id screen +id scroll +id scrollIndicatorDown +id scrollIndicatorUp +id scrollView +id scrollable +id search_badge +id search_bar +id search_button +id search_close_btn +id search_edit_frame +id search_go_btn +id search_mag_icon +id search_plate +id search_src_text +id search_voice_btn +id select_dialog_listview +id selected +id shortcut +id showCustom +id showHome +id showTitle +id smallLabel +id snackbar_action +id snackbar_text +id snap +id snapMargins +id spacer +id split_action_bar +id src_atop +id src_in +id src_over +id start +id status_bar_latest_event_content +id stretch +id submenuarrow +id submit_area +id tabMode +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id text +id text2 +id textSpacerNoButtons +id textSpacerNoTitle +id textStart +id text_input_password_toggle +id textinput_counter +id textinput_error +id textinput_helper_text +id time +id title +id titleDividerNoCustom +id title_template +id top +id topPanel +id touch_outside +id transition_current_scene +id transition_layout_save +id transition_position +id transition_scene_layoutid_cache +id transition_transform +id uniform +id unlabeled +id up +id useLogo +id view_offset_helper +id visible +id withText +id wrap_content +integer abc_config_activityDefaultDur +integer abc_config_activityShortDur +integer app_bar_elevation_anim_duration +integer bottom_sheet_slide_duration +integer cancel_button_image_alpha +integer config_tooltipAnimTime +integer design_snackbar_text_max_lines +integer design_tab_indicator_anim_duration_ms +integer hide_password_duration +integer mtrl_btn_anim_delay_ms +integer mtrl_btn_anim_duration_ms +integer mtrl_chip_anim_duration +integer mtrl_tab_indicator_anim_duration_ms +integer show_password_duration +integer status_bar_notification_info_maxnum +interpolator mtrl_fast_out_linear_in +interpolator mtrl_fast_out_slow_in +interpolator mtrl_linear +interpolator mtrl_linear_out_slow_in +layout abc_action_bar_title_item +layout abc_action_bar_up_container +layout abc_action_menu_item_layout +layout abc_action_menu_layout +layout abc_action_mode_bar +layout abc_action_mode_close_item_material +layout abc_activity_chooser_view +layout abc_activity_chooser_view_list_item +layout abc_alert_dialog_button_bar_material +layout abc_alert_dialog_material +layout abc_alert_dialog_title_material +layout abc_cascading_menu_item_layout +layout abc_dialog_title_material +layout abc_expanded_menu_layout +layout abc_list_menu_item_checkbox +layout abc_list_menu_item_icon +layout abc_list_menu_item_layout +layout abc_list_menu_item_radio +layout abc_popup_menu_header_item_layout +layout abc_popup_menu_item_layout +layout abc_screen_content_include +layout abc_screen_simple +layout abc_screen_simple_overlay_action_mode +layout abc_screen_toolbar +layout abc_search_dropdown_item_icons_2line +layout abc_search_view +layout abc_select_dialog_material +layout abc_tooltip +layout activity_app +layout design_bottom_navigation_item +layout design_bottom_sheet_dialog +layout design_layout_snackbar +layout design_layout_snackbar_include +layout design_layout_tab_icon +layout design_layout_tab_text +layout design_menu_item_action_area +layout design_navigation_item +layout design_navigation_item_header +layout design_navigation_item_separator +layout design_navigation_item_subheader +layout design_navigation_menu +layout design_navigation_menu_item +layout design_text_input_password_icon +layout mtrl_layout_snackbar +layout mtrl_layout_snackbar_include +layout notification_action +layout notification_action_tombstone +layout notification_media_action +layout notification_media_cancel_action +layout notification_template_big_media +layout notification_template_big_media_custom +layout notification_template_big_media_narrow +layout notification_template_big_media_narrow_custom +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_lines_media +layout notification_template_media +layout notification_template_media_custom +layout notification_template_part_chronometer +layout notification_template_part_time +layout select_dialog_item_material +layout select_dialog_multichoice_material +layout select_dialog_singlechoice_material +layout support_simple_spinner_dropdown_item +raw my_ca +string abc_action_bar_home_description +string abc_action_bar_up_description +string abc_action_menu_overflow_description +string abc_action_mode_done +string abc_activity_chooser_view_see_all +string abc_activitychooserview_choose_application +string abc_capital_off +string abc_capital_on +string abc_font_family_body_1_material +string abc_font_family_body_2_material +string abc_font_family_button_material +string abc_font_family_caption_material +string abc_font_family_display_1_material +string abc_font_family_display_2_material +string abc_font_family_display_3_material +string abc_font_family_display_4_material +string abc_font_family_headline_material +string abc_font_family_menu_material +string abc_font_family_subhead_material +string abc_font_family_title_material +string abc_menu_alt_shortcut_label +string abc_menu_ctrl_shortcut_label +string abc_menu_delete_shortcut_label +string abc_menu_enter_shortcut_label +string abc_menu_function_shortcut_label +string abc_menu_meta_shortcut_label +string abc_menu_shift_shortcut_label +string abc_menu_space_shortcut_label +string abc_menu_sym_shortcut_label +string abc_prepend_shortcut_label +string abc_search_hint +string abc_searchview_description_clear +string abc_searchview_description_query +string abc_searchview_description_search +string abc_searchview_description_submit +string abc_searchview_description_voice +string abc_shareactionprovider_share_with +string abc_shareactionprovider_share_with_application +string abc_toolbar_collapse_description +string app_name +string appbar_scrolling_view_behavior +string bottom_sheet_behavior +string character_counter_content_description +string character_counter_pattern +string fab_transformation_scrim_behavior +string fab_transformation_sheet_behavior +string hello_world +string hide_bottom_view_on_scroll_behavior +string mtrl_chip_close_icon_content_description +string password_toggle_content_description +string path_password_eye +string path_password_eye_mask_strike_through +string path_password_eye_mask_visible +string path_password_strike_through +string search_menu_title +string status_bar_notification_info_overflow +style AlertDialog_AppCompat +style AlertDialog_AppCompat_Light +style Animation_AppCompat_Dialog +style Animation_AppCompat_DropDownUp +style Animation_AppCompat_Tooltip +style Animation_Design_BottomSheetDialog +style AppBaseTheme +style AppTheme +style Base_AlertDialog_AppCompat +style Base_AlertDialog_AppCompat_Light +style Base_Animation_AppCompat_Dialog +style Base_Animation_AppCompat_DropDownUp +style Base_Animation_AppCompat_Tooltip +style Base_CardView +style Base_DialogWindowTitle_AppCompat +style Base_DialogWindowTitleBackground_AppCompat +style Base_TextAppearance_AppCompat +style Base_TextAppearance_AppCompat_Body1 +style Base_TextAppearance_AppCompat_Body2 +style Base_TextAppearance_AppCompat_Button +style Base_TextAppearance_AppCompat_Caption +style Base_TextAppearance_AppCompat_Display1 +style Base_TextAppearance_AppCompat_Display2 +style Base_TextAppearance_AppCompat_Display3 +style Base_TextAppearance_AppCompat_Display4 +style Base_TextAppearance_AppCompat_Headline +style Base_TextAppearance_AppCompat_Inverse +style Base_TextAppearance_AppCompat_Large +style Base_TextAppearance_AppCompat_Large_Inverse +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Medium +style Base_TextAppearance_AppCompat_Medium_Inverse +style Base_TextAppearance_AppCompat_Menu +style Base_TextAppearance_AppCompat_SearchResult +style Base_TextAppearance_AppCompat_SearchResult_Subtitle +style Base_TextAppearance_AppCompat_SearchResult_Title +style Base_TextAppearance_AppCompat_Small +style Base_TextAppearance_AppCompat_Small_Inverse +style Base_TextAppearance_AppCompat_Subhead +style Base_TextAppearance_AppCompat_Subhead_Inverse +style Base_TextAppearance_AppCompat_Title +style Base_TextAppearance_AppCompat_Title_Inverse +style Base_TextAppearance_AppCompat_Tooltip +style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionMode_Title +style Base_TextAppearance_AppCompat_Widget_Button +style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Inverse +style Base_TextAppearance_AppCompat_Widget_DropDownItem +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Widget_Switch +style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style Base_TextAppearance_Widget_AppCompat_Toolbar_Title +style Base_Theme_AppCompat +style Base_Theme_AppCompat_CompactMenu +style Base_Theme_AppCompat_Dialog +style Base_Theme_AppCompat_Dialog_Alert +style Base_Theme_AppCompat_Dialog_FixedSize +style Base_Theme_AppCompat_Dialog_MinWidth +style Base_Theme_AppCompat_DialogWhenLarge +style Base_Theme_AppCompat_Light +style Base_Theme_AppCompat_Light_DarkActionBar +style Base_Theme_AppCompat_Light_Dialog +style Base_Theme_AppCompat_Light_Dialog_Alert +style Base_Theme_AppCompat_Light_Dialog_FixedSize +style Base_Theme_AppCompat_Light_Dialog_MinWidth +style Base_Theme_AppCompat_Light_DialogWhenLarge +style Base_Theme_MaterialComponents +style Base_Theme_MaterialComponents_Bridge +style Base_Theme_MaterialComponents_CompactMenu +style Base_Theme_MaterialComponents_Dialog +style Base_Theme_MaterialComponents_Dialog_Alert +style Base_Theme_MaterialComponents_Dialog_FixedSize +style Base_Theme_MaterialComponents_Dialog_MinWidth +style Base_Theme_MaterialComponents_DialogWhenLarge +style Base_Theme_MaterialComponents_Light +style Base_Theme_MaterialComponents_Light_Bridge +style Base_Theme_MaterialComponents_Light_DarkActionBar +style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_Theme_MaterialComponents_Light_Dialog +style Base_Theme_MaterialComponents_Light_Dialog_Alert +style Base_Theme_MaterialComponents_Light_Dialog_FixedSize +style Base_Theme_MaterialComponents_Light_Dialog_MinWidth +style Base_Theme_MaterialComponents_Light_DialogWhenLarge +style Base_ThemeOverlay_AppCompat +style Base_ThemeOverlay_AppCompat_ActionBar +style Base_ThemeOverlay_AppCompat_Dark +style Base_ThemeOverlay_AppCompat_Dark_ActionBar +style Base_ThemeOverlay_AppCompat_Dialog +style Base_ThemeOverlay_AppCompat_Dialog_Alert +style Base_ThemeOverlay_AppCompat_Light +style Base_ThemeOverlay_MaterialComponents_Dialog +style Base_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_V14_Theme_MaterialComponents +style Base_V14_Theme_MaterialComponents_Bridge +style Base_V14_Theme_MaterialComponents_Dialog +style Base_V14_Theme_MaterialComponents_Light +style Base_V14_Theme_MaterialComponents_Light_Bridge +style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_V14_Theme_MaterialComponents_Light_Dialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_V21_Theme_AppCompat +style Base_V21_Theme_AppCompat_Dialog +style Base_V21_Theme_AppCompat_Light +style Base_V21_Theme_AppCompat_Light_Dialog +style Base_V21_ThemeOverlay_AppCompat_Dialog +style Base_V22_Theme_AppCompat +style Base_V22_Theme_AppCompat_Light +style Base_V23_Theme_AppCompat +style Base_V23_Theme_AppCompat_Light +style Base_V26_Theme_AppCompat +style Base_V26_Theme_AppCompat_Light +style Base_V26_Widget_AppCompat_Toolbar +style Base_V28_Theme_AppCompat +style Base_V28_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat +style Base_V7_Theme_AppCompat_Dialog +style Base_V7_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat_Light_Dialog +style Base_V7_ThemeOverlay_AppCompat_Dialog +style Base_V7_Widget_AppCompat_AutoCompleteTextView +style Base_V7_Widget_AppCompat_EditText +style Base_V7_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_ActionBar +style Base_Widget_AppCompat_ActionBar_Solid +style Base_Widget_AppCompat_ActionBar_TabBar +style Base_Widget_AppCompat_ActionBar_TabText +style Base_Widget_AppCompat_ActionBar_TabView +style Base_Widget_AppCompat_ActionButton +style Base_Widget_AppCompat_ActionButton_CloseMode +style Base_Widget_AppCompat_ActionButton_Overflow +style Base_Widget_AppCompat_ActionMode +style Base_Widget_AppCompat_ActivityChooserView +style Base_Widget_AppCompat_AutoCompleteTextView +style Base_Widget_AppCompat_Button +style Base_Widget_AppCompat_Button_Borderless +style Base_Widget_AppCompat_Button_Borderless_Colored +style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Colored +style Base_Widget_AppCompat_Button_Small +style Base_Widget_AppCompat_ButtonBar +style Base_Widget_AppCompat_ButtonBar_AlertDialog +style Base_Widget_AppCompat_CompoundButton_CheckBox +style Base_Widget_AppCompat_CompoundButton_RadioButton +style Base_Widget_AppCompat_CompoundButton_Switch +style Base_Widget_AppCompat_DrawerArrowToggle +style Base_Widget_AppCompat_DrawerArrowToggle_Common +style Base_Widget_AppCompat_DropDownItem_Spinner +style Base_Widget_AppCompat_EditText +style Base_Widget_AppCompat_ImageButton +style Base_Widget_AppCompat_Light_ActionBar +style Base_Widget_AppCompat_Light_ActionBar_Solid +style Base_Widget_AppCompat_Light_ActionBar_TabBar +style Base_Widget_AppCompat_Light_ActionBar_TabText +style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Base_Widget_AppCompat_Light_ActionBar_TabView +style Base_Widget_AppCompat_Light_PopupMenu +style Base_Widget_AppCompat_Light_PopupMenu_Overflow +style Base_Widget_AppCompat_ListMenuView +style Base_Widget_AppCompat_ListPopupWindow +style Base_Widget_AppCompat_ListView +style Base_Widget_AppCompat_ListView_DropDown +style Base_Widget_AppCompat_ListView_Menu +style Base_Widget_AppCompat_PopupMenu +style Base_Widget_AppCompat_PopupMenu_Overflow +style Base_Widget_AppCompat_PopupWindow +style Base_Widget_AppCompat_ProgressBar +style Base_Widget_AppCompat_ProgressBar_Horizontal +style Base_Widget_AppCompat_RatingBar +style Base_Widget_AppCompat_RatingBar_Indicator +style Base_Widget_AppCompat_RatingBar_Small +style Base_Widget_AppCompat_SearchView +style Base_Widget_AppCompat_SearchView_ActionBar +style Base_Widget_AppCompat_SeekBar +style Base_Widget_AppCompat_SeekBar_Discrete +style Base_Widget_AppCompat_Spinner +style Base_Widget_AppCompat_Spinner_Underlined +style Base_Widget_AppCompat_TextView_SpinnerItem +style Base_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_Toolbar_Button_Navigation +style Base_Widget_Design_TabLayout +style Base_Widget_MaterialComponents_Chip +style Base_Widget_MaterialComponents_TextInputEditText +style Base_Widget_MaterialComponents_TextInputLayout +style CardView +style CardView_Dark +style CardView_Light +style Platform_AppCompat +style Platform_AppCompat_Light +style Platform_MaterialComponents +style Platform_MaterialComponents_Dialog +style Platform_MaterialComponents_Light +style Platform_MaterialComponents_Light_Dialog +style Platform_ThemeOverlay_AppCompat +style Platform_ThemeOverlay_AppCompat_Dark +style Platform_ThemeOverlay_AppCompat_Light +style Platform_V21_AppCompat +style Platform_V21_AppCompat_Light +style Platform_V25_AppCompat +style Platform_V25_AppCompat_Light +style Platform_Widget_AppCompat_Spinner +style RtlOverlay_DialogWindowTitle_AppCompat +style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +style RtlOverlay_Widget_AppCompat_DialogTitle_Icon +style RtlOverlay_Widget_AppCompat_PopupMenuItem +style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +style RtlOverlay_Widget_AppCompat_Search_DropDown +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Query +style RtlOverlay_Widget_AppCompat_Search_DropDown_Text +style RtlOverlay_Widget_AppCompat_SearchView_MagIcon +style RtlUnderlay_Widget_AppCompat_ActionButton +style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +style TextAppearance_AppCompat +style TextAppearance_AppCompat_Body1 +style TextAppearance_AppCompat_Body2 +style TextAppearance_AppCompat_Button +style TextAppearance_AppCompat_Caption +style TextAppearance_AppCompat_Display1 +style TextAppearance_AppCompat_Display2 +style TextAppearance_AppCompat_Display3 +style TextAppearance_AppCompat_Display4 +style TextAppearance_AppCompat_Headline +style TextAppearance_AppCompat_Inverse +style TextAppearance_AppCompat_Large +style TextAppearance_AppCompat_Large_Inverse +style TextAppearance_AppCompat_Light_SearchResult_Subtitle +style TextAppearance_AppCompat_Light_SearchResult_Title +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Medium +style TextAppearance_AppCompat_Medium_Inverse +style TextAppearance_AppCompat_Menu +style TextAppearance_AppCompat_SearchResult_Subtitle +style TextAppearance_AppCompat_SearchResult_Title +style TextAppearance_AppCompat_Small +style TextAppearance_AppCompat_Small_Inverse +style TextAppearance_AppCompat_Subhead +style TextAppearance_AppCompat_Subhead_Inverse +style TextAppearance_AppCompat_Title +style TextAppearance_AppCompat_Title_Inverse +style TextAppearance_AppCompat_Tooltip +style TextAppearance_AppCompat_Widget_ActionBar_Menu +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Title +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Title +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +style TextAppearance_AppCompat_Widget_Button +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style TextAppearance_AppCompat_Widget_Button_Colored +style TextAppearance_AppCompat_Widget_Button_Inverse +style TextAppearance_AppCompat_Widget_DropDownItem +style TextAppearance_AppCompat_Widget_PopupMenu_Header +style TextAppearance_AppCompat_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Widget_Switch +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Info_Media +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Line2_Media +style TextAppearance_Compat_Notification_Media +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Time_Media +style TextAppearance_Compat_Notification_Title +style TextAppearance_Compat_Notification_Title_Media +style TextAppearance_Design_CollapsingToolbar_Expanded +style TextAppearance_Design_Counter +style TextAppearance_Design_Counter_Overflow +style TextAppearance_Design_Error +style TextAppearance_Design_HelperText +style TextAppearance_Design_Hint +style TextAppearance_Design_Snackbar_Message +style TextAppearance_Design_Tab +style TextAppearance_MaterialComponents_Body1 +style TextAppearance_MaterialComponents_Body2 +style TextAppearance_MaterialComponents_Button +style TextAppearance_MaterialComponents_Caption +style TextAppearance_MaterialComponents_Chip +style TextAppearance_MaterialComponents_Headline1 +style TextAppearance_MaterialComponents_Headline2 +style TextAppearance_MaterialComponents_Headline3 +style TextAppearance_MaterialComponents_Headline4 +style TextAppearance_MaterialComponents_Headline5 +style TextAppearance_MaterialComponents_Headline6 +style TextAppearance_MaterialComponents_Overline +style TextAppearance_MaterialComponents_Subtitle1 +style TextAppearance_MaterialComponents_Subtitle2 +style TextAppearance_MaterialComponents_Tab +style TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style TextAppearance_Widget_AppCompat_Toolbar_Title +style Theme_AppCompat +style Theme_AppCompat_CompactMenu +style Theme_AppCompat_DayNight +style Theme_AppCompat_DayNight_DarkActionBar +style Theme_AppCompat_DayNight_Dialog +style Theme_AppCompat_DayNight_Dialog_Alert +style Theme_AppCompat_DayNight_Dialog_MinWidth +style Theme_AppCompat_DayNight_DialogWhenLarge +style Theme_AppCompat_DayNight_NoActionBar +style Theme_AppCompat_Dialog +style Theme_AppCompat_Dialog_Alert +style Theme_AppCompat_Dialog_MinWidth +style Theme_AppCompat_DialogWhenLarge +style Theme_AppCompat_Light +style Theme_AppCompat_Light_DarkActionBar +style Theme_AppCompat_Light_Dialog +style Theme_AppCompat_Light_Dialog_Alert +style Theme_AppCompat_Light_Dialog_MinWidth +style Theme_AppCompat_Light_DialogWhenLarge +style Theme_AppCompat_Light_NoActionBar +style Theme_AppCompat_NoActionBar +style Theme_Design +style Theme_Design_BottomSheetDialog +style Theme_Design_Light +style Theme_Design_Light_BottomSheetDialog +style Theme_Design_Light_NoActionBar +style Theme_Design_NoActionBar +style Theme_MaterialComponents +style Theme_MaterialComponents_BottomSheetDialog +style Theme_MaterialComponents_Bridge +style Theme_MaterialComponents_CompactMenu +style Theme_MaterialComponents_Dialog +style Theme_MaterialComponents_Dialog_Alert +style Theme_MaterialComponents_Dialog_MinWidth +style Theme_MaterialComponents_DialogWhenLarge +style Theme_MaterialComponents_Light +style Theme_MaterialComponents_Light_BottomSheetDialog +style Theme_MaterialComponents_Light_Bridge +style Theme_MaterialComponents_Light_DarkActionBar +style Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Theme_MaterialComponents_Light_Dialog +style Theme_MaterialComponents_Light_Dialog_Alert +style Theme_MaterialComponents_Light_Dialog_MinWidth +style Theme_MaterialComponents_Light_DialogWhenLarge +style Theme_MaterialComponents_Light_NoActionBar +style Theme_MaterialComponents_Light_NoActionBar_Bridge +style Theme_MaterialComponents_NoActionBar +style Theme_MaterialComponents_NoActionBar_Bridge +style ThemeOverlay_AppCompat +style ThemeOverlay_AppCompat_ActionBar +style ThemeOverlay_AppCompat_Dark +style ThemeOverlay_AppCompat_Dark_ActionBar +style ThemeOverlay_AppCompat_Dialog +style ThemeOverlay_AppCompat_Dialog_Alert +style ThemeOverlay_AppCompat_Light +style ThemeOverlay_MaterialComponents +style ThemeOverlay_MaterialComponents_ActionBar +style ThemeOverlay_MaterialComponents_Dark +style ThemeOverlay_MaterialComponents_Dark_ActionBar +style ThemeOverlay_MaterialComponents_Dialog +style ThemeOverlay_MaterialComponents_Dialog_Alert +style ThemeOverlay_MaterialComponents_Light +style ThemeOverlay_MaterialComponents_TextInputEditText +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style Widget_AppCompat_ActionBar +style Widget_AppCompat_ActionBar_Solid +style Widget_AppCompat_ActionBar_TabBar +style Widget_AppCompat_ActionBar_TabText +style Widget_AppCompat_ActionBar_TabView +style Widget_AppCompat_ActionButton +style Widget_AppCompat_ActionButton_CloseMode +style Widget_AppCompat_ActionButton_Overflow +style Widget_AppCompat_ActionMode +style Widget_AppCompat_ActivityChooserView +style Widget_AppCompat_AutoCompleteTextView +style Widget_AppCompat_Button +style Widget_AppCompat_Button_Borderless +style Widget_AppCompat_Button_Borderless_Colored +style Widget_AppCompat_Button_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Colored +style Widget_AppCompat_Button_Small +style Widget_AppCompat_ButtonBar +style Widget_AppCompat_ButtonBar_AlertDialog +style Widget_AppCompat_CompoundButton_CheckBox +style Widget_AppCompat_CompoundButton_RadioButton +style Widget_AppCompat_CompoundButton_Switch +style Widget_AppCompat_DrawerArrowToggle +style Widget_AppCompat_DropDownItem_Spinner +style Widget_AppCompat_EditText +style Widget_AppCompat_ImageButton +style Widget_AppCompat_Light_ActionBar +style Widget_AppCompat_Light_ActionBar_Solid +style Widget_AppCompat_Light_ActionBar_Solid_Inverse +style Widget_AppCompat_Light_ActionBar_TabBar +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse +style Widget_AppCompat_Light_ActionBar_TabText +style Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Widget_AppCompat_Light_ActionBar_TabView +style Widget_AppCompat_Light_ActionBar_TabView_Inverse +style Widget_AppCompat_Light_ActionButton +style Widget_AppCompat_Light_ActionButton_CloseMode +style Widget_AppCompat_Light_ActionButton_Overflow +style Widget_AppCompat_Light_ActionMode_Inverse +style Widget_AppCompat_Light_ActivityChooserView +style Widget_AppCompat_Light_AutoCompleteTextView +style Widget_AppCompat_Light_DropDownItem_Spinner +style Widget_AppCompat_Light_ListPopupWindow +style Widget_AppCompat_Light_ListView_DropDown +style Widget_AppCompat_Light_PopupMenu +style Widget_AppCompat_Light_PopupMenu_Overflow +style Widget_AppCompat_Light_SearchView +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar +style Widget_AppCompat_ListMenuView +style Widget_AppCompat_ListPopupWindow +style Widget_AppCompat_ListView +style Widget_AppCompat_ListView_DropDown +style Widget_AppCompat_ListView_Menu +style Widget_AppCompat_PopupMenu +style Widget_AppCompat_PopupMenu_Overflow +style Widget_AppCompat_PopupWindow +style Widget_AppCompat_ProgressBar +style Widget_AppCompat_ProgressBar_Horizontal +style Widget_AppCompat_RatingBar +style Widget_AppCompat_RatingBar_Indicator +style Widget_AppCompat_RatingBar_Small +style Widget_AppCompat_SearchView +style Widget_AppCompat_SearchView_ActionBar +style Widget_AppCompat_SeekBar +style Widget_AppCompat_SeekBar_Discrete +style Widget_AppCompat_Spinner +style Widget_AppCompat_Spinner_DropDown +style Widget_AppCompat_Spinner_DropDown_ActionBar +style Widget_AppCompat_Spinner_Underlined +style Widget_AppCompat_TextView_SpinnerItem +style Widget_AppCompat_Toolbar +style Widget_AppCompat_Toolbar_Button_Navigation +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +style Widget_Design_AppBarLayout +style Widget_Design_BottomNavigationView +style Widget_Design_BottomSheet_Modal +style Widget_Design_CollapsingToolbar +style Widget_Design_FloatingActionButton +style Widget_Design_NavigationView +style Widget_Design_ScrimInsetsFrameLayout +style Widget_Design_Snackbar +style Widget_Design_TabLayout +style Widget_Design_TextInputLayout +style Widget_MaterialComponents_BottomAppBar +style Widget_MaterialComponents_BottomAppBar_Colored +style Widget_MaterialComponents_BottomNavigationView +style Widget_MaterialComponents_BottomNavigationView_Colored +style Widget_MaterialComponents_BottomSheet_Modal +style Widget_MaterialComponents_Button +style Widget_MaterialComponents_Button_Icon +style Widget_MaterialComponents_Button_OutlinedButton +style Widget_MaterialComponents_Button_OutlinedButton_Icon +style Widget_MaterialComponents_Button_TextButton +style Widget_MaterialComponents_Button_TextButton_Dialog +style Widget_MaterialComponents_Button_TextButton_Dialog_Icon +style Widget_MaterialComponents_Button_TextButton_Icon +style Widget_MaterialComponents_Button_UnelevatedButton +style Widget_MaterialComponents_Button_UnelevatedButton_Icon +style Widget_MaterialComponents_CardView +style Widget_MaterialComponents_Chip_Action +style Widget_MaterialComponents_Chip_Choice +style Widget_MaterialComponents_Chip_Entry +style Widget_MaterialComponents_Chip_Filter +style Widget_MaterialComponents_ChipGroup +style Widget_MaterialComponents_FloatingActionButton +style Widget_MaterialComponents_NavigationView +style Widget_MaterialComponents_Snackbar +style Widget_MaterialComponents_Snackbar_FullWidth +style Widget_MaterialComponents_TabLayout +style Widget_MaterialComponents_TabLayout_Colored +style Widget_MaterialComponents_TextInputEditText_FilledBox +style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +style Widget_MaterialComponents_TextInputEditText_OutlinedBox +style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style Widget_MaterialComponents_TextInputLayout_FilledBox +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +style Widget_MaterialComponents_TextInputLayout_OutlinedBox +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +style Widget_MaterialComponents_Toolbar +style Widget_Support_CoordinatorLayout +styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle +styleable ActionBarLayout android_layout_gravity +styleable ActionMenuItemView android_minWidth +styleable ActionMenuView +styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle +styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount +styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout +styleable AnimatedStateListDrawableCompat android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration +styleable AnimatedStateListDrawableItem android_id android_drawable +styleable AnimatedStateListDrawableTransition android_drawable android_toId android_fromId android_reversible +styleable AppBarLayout android_background android_touchscreenBlocksFocus android_keyboardNavigationCluster elevation expanded liftOnScroll +styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted +styleable AppBarLayout_Layout layout_scrollFlags layout_scrollInterpolator +styleable AppCompatImageView android_src srcCompat tint tintMode +styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode +styleable AppCompatTextHelper android_textAppearance android_drawableTop android_drawableBottom android_drawableLeft android_drawableRight android_drawableStart android_drawableEnd +styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType firstBaselineToTopHeight fontFamily lastBaselineToBottomHeight lineHeight textAllCaps +styleable AppCompatTheme android_windowIsFloating android_windowAnimationStyle actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingLeft listPreferredItemPaddingRight panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle +styleable BottomAppBar backgroundTint fabAlignmentMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll +styleable BottomNavigationView elevation itemBackground itemHorizontalTranslationEnabled itemIconSize itemIconTint itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu +styleable BottomSheetBehavior_Layout behavior_fitToContents behavior_hideable behavior_peekHeight behavior_skipCollapsed +styleable ButtonBarLayout allowStacking +styleable CardView android_minWidth android_minHeight cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop +styleable Chip android_textAppearance android_ellipsize android_maxWidth android_text android_checkable checkedIcon checkedIconEnabled checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipStartPadding chipStrokeColor chipStrokeWidth closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible hideMotionSpec iconEndPadding iconStartPadding rippleColor showMotionSpec textEndPadding textStartPadding +styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical singleLine singleSelection +styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleEnabled toolbarId +styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier +styleable ColorStateListItem android_color android_alpha alpha +styleable CompoundButton android_button buttonTint buttonTintMode +styleable CoordinatorLayout keylines statusBarBackground +styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline +styleable DesignTheme bottomSheetDialogTheme bottomSheetStyle +styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness +styleable FloatingActionButton backgroundTint backgroundTintMode borderWidth elevation fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor showMotionSpec useCompatPadding +styleable FloatingActionButton_Behavior_Layout behavior_autoHide +styleable FlowLayout itemSpacing lineSpacing +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery +styleable FontFamilyFont android_font android_fontWeight android_fontStyle android_ttcIndex android_fontVariationSettings font fontStyle fontVariationSettings fontWeight ttcIndex +styleable ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding +styleable GradientColor android_startColor android_endColor android_type android_centerX android_centerY android_gradientRadius android_tileMode android_centerColor android_startX android_startY android_endX android_endY +styleable GradientColorItem android_color android_offset +styleable LinearLayoutCompat android_gravity android_orientation android_baselineAligned android_baselineAlignedChildIndex android_weightSum divider dividerPadding measureWithLargestChild showDividers +styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_width android_layout_height android_layout_weight +styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset +styleable MaterialButton android_insetLeft android_insetRight android_insetTop android_insetBottom backgroundTint backgroundTintMode cornerRadius icon iconGravity iconPadding iconSize iconTint iconTintMode rippleColor strokeColor strokeWidth +styleable MaterialCardView strokeColor strokeWidth +styleable MaterialComponentsTheme bottomSheetDialogTheme bottomSheetStyle chipGroupStyle chipStandaloneStyle chipStyle colorAccent colorBackgroundFloating colorPrimary colorPrimaryDark colorSecondary editTextStyle floatingActionButtonStyle materialButtonStyle materialCardViewStyle navigationViewStyle scrimBackground snackbarButtonStyle tabStyle textAppearanceBody1 textAppearanceBody2 textAppearanceButton textAppearanceCaption textAppearanceHeadline1 textAppearanceHeadline2 textAppearanceHeadline3 textAppearanceHeadline4 textAppearanceHeadline5 textAppearanceHeadline6 textAppearanceOverline textAppearanceSubtitle1 textAppearanceSubtitle2 textInputStyle +styleable MenuGroup android_enabled android_id android_visible android_menuCategory android_orderInCategory android_checkableBehavior +styleable MenuItem android_icon android_enabled android_id android_checked android_visible android_menuCategory android_orderInCategory android_title android_titleCondensed android_alphabeticShortcut android_numericShortcut android_checkable android_onClick actionLayout actionProviderClass actionViewClass alphabeticModifiers contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText +styleable MenuView android_windowAnimationStyle android_itemTextAppearance android_horizontalDivider android_verticalDivider android_headerBackground android_itemBackground android_itemIconDisabledAlpha preserveIconSpacing subMenuArrow +styleable NavigationView android_background android_fitsSystemWindows android_maxWidth elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconTint itemTextAppearance itemTextColor menu +styleable PopupWindow android_popupBackground android_popupAnimationStyle overlapAnchor +styleable PopupWindowBackgroundState state_above_anchor +styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle +styleable RecyclerView android_orientation android_descendantFocusability fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd +styleable ScrimInsetsFrameLayout insetForeground +styleable ScrollingViewBehavior_Layout behavior_overlapTop +styleable SearchView android_focusable android_maxWidth android_inputType android_imeOptions closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon +styleable Snackbar snackbarButtonStyle snackbarStyle +styleable SnackbarLayout android_maxWidth elevation maxActionInlineWidth +styleable Spinner android_entries android_popupBackground android_prompt android_dropDownWidth popupTheme +styleable StateListDrawable android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration +styleable StateListDrawableItem android_drawable +styleable SwitchCompat android_textOn android_textOff android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode +styleable TabItem android_icon android_layout android_text +styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple +styleable TextAppearance android_textSize android_typeface android_textStyle android_textColor android_textColorHint android_textColorLink android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_fontFamily fontFamily textAllCaps +styleable TextInputLayout android_textColorHint android_hint boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeWidth counterEnabled counterMaxLength counterOverflowTextAppearance counterTextAppearance errorEnabled errorTextAppearance helperText helperTextEnabled helperTextTextAppearance hintAnimationEnabled hintEnabled hintTextAppearance passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode +styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance +styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor +styleable View android_theme android_focusable paddingEnd paddingStart theme +styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode +styleable ViewStubCompat android_id android_layout android_inflatedId +xml network_security_config diff --git a/SmartFritz/build/intermediates/res/symbol-table-with-package/release/package-aware-r.txt b/SmartFritz/build/intermediates/res/symbol-table-with-package/release/package-aware-r.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa0dcc5c04b9fe7b81c46489aadeb28d0d384410 --- /dev/null +++ b/SmartFritz/build/intermediates/res/symbol-table-with-package/release/package-aware-r.txt @@ -0,0 +1,1899 @@ +org.muctec.smartfritz +anim abc_fade_in +anim abc_fade_out +anim abc_grow_fade_in_from_bottom +anim abc_popup_enter +anim abc_popup_exit +anim abc_shrink_fade_out_from_bottom +anim abc_slide_in_bottom +anim abc_slide_in_top +anim abc_slide_out_bottom +anim abc_slide_out_top +anim abc_tooltip_enter +anim abc_tooltip_exit +anim design_bottom_sheet_slide_in +anim design_bottom_sheet_slide_out +anim design_snackbar_in +anim design_snackbar_out +animator design_appbar_state_list_animator +animator design_fab_hide_motion_spec +animator design_fab_show_motion_spec +animator mtrl_btn_state_list_anim +animator mtrl_btn_unelevated_state_list_anim +animator mtrl_chip_state_list_anim +animator mtrl_fab_hide_motion_spec +animator mtrl_fab_show_motion_spec +animator mtrl_fab_transformation_sheet_collapse_spec +animator mtrl_fab_transformation_sheet_expand_spec +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModePopupWindowStyle +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionViewClass +attr activityChooserViewStyle +attr alertDialogButtonGroupStyle +attr alertDialogCenterButtons +attr alertDialogStyle +attr alertDialogTheme +attr allowStacking +attr alpha +attr alphabeticModifiers +attr arrowHeadLength +attr arrowShaftLength +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr background +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr barLength +attr behavior_autoHide +attr behavior_fitToContents +attr behavior_hideable +attr behavior_overlapTop +attr behavior_peekHeight +attr behavior_skipCollapsed +attr borderWidth +attr borderlessButtonStyle +attr bottomAppBarStyle +attr bottomNavigationStyle +attr bottomSheetDialogTheme +attr bottomSheetStyle +attr boxBackgroundColor +attr boxBackgroundMode +attr boxCollapsedPaddingTop +attr boxCornerRadiusBottomEnd +attr boxCornerRadiusBottomStart +attr boxCornerRadiusTopEnd +attr boxCornerRadiusTopStart +attr boxStrokeColor +attr boxStrokeWidth +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonGravity +attr buttonIconDimen +attr buttonPanelSideLayout +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr cardBackgroundColor +attr cardCornerRadius +attr cardElevation +attr cardMaxElevation +attr cardPreventCornerOverlap +attr cardUseCompatPadding +attr cardViewStyle +attr checkboxStyle +attr checkedChip +attr checkedIcon +attr checkedIconEnabled +attr checkedIconVisible +attr checkedTextViewStyle +attr chipBackgroundColor +attr chipCornerRadius +attr chipEndPadding +attr chipGroupStyle +attr chipIcon +attr chipIconEnabled +attr chipIconSize +attr chipIconTint +attr chipIconVisible +attr chipMinHeight +attr chipSpacing +attr chipSpacingHorizontal +attr chipSpacingVertical +attr chipStandaloneStyle +attr chipStartPadding +attr chipStrokeColor +attr chipStrokeWidth +attr chipStyle +attr closeIcon +attr closeIconEnabled +attr closeIconEndPadding +attr closeIconSize +attr closeIconStartPadding +attr closeIconTint +attr closeIconVisible +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr collapsedTitleGravity +attr collapsedTitleTextAppearance +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorPrimary +attr colorPrimaryDark +attr colorSecondary +attr colorSwitchThumbNormal +attr commitIcon +attr contentDescription +attr contentInsetEnd +attr contentInsetEndWithActions +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr contentInsetStartWithNavigation +attr contentPadding +attr contentPaddingBottom +attr contentPaddingLeft +attr contentPaddingRight +attr contentPaddingTop +attr contentScrim +attr controlBackground +attr coordinatorLayoutStyle +attr cornerRadius +attr counterEnabled +attr counterMaxLength +attr counterOverflowTextAppearance +attr counterTextAppearance +attr customNavigationLayout +attr defaultQueryHint +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr displayOptions +attr divider +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr drawableSize +attr drawerArrowStyle +attr dropDownListViewStyle +attr dropdownListPreferredItemHeight +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elevation +attr enforceMaterialTheme +attr enforceTextAppearance +attr errorEnabled +attr errorTextAppearance +attr expandActivityOverflowButtonDrawable +attr expanded +attr expandedTitleGravity +attr expandedTitleMargin +attr expandedTitleMarginBottom +attr expandedTitleMarginEnd +attr expandedTitleMarginStart +attr expandedTitleMarginTop +attr expandedTitleTextAppearance +attr fabAlignmentMode +attr fabCradleMargin +attr fabCradleRoundedCornerRadius +attr fabCradleVerticalOffset +attr fabCustomSize +attr fabSize +attr fastScrollEnabled +attr fastScrollHorizontalThumbDrawable +attr fastScrollHorizontalTrackDrawable +attr fastScrollVerticalThumbDrawable +attr fastScrollVerticalTrackDrawable +attr firstBaselineToTopHeight +attr floatingActionButtonStyle +attr font +attr fontFamily +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr foregroundInsidePadding +attr gapBetweenBars +attr goIcon +attr headerLayout +attr height +attr helperText +attr helperTextEnabled +attr helperTextTextAppearance +attr hideMotionSpec +attr hideOnContentScroll +attr hideOnScroll +attr hintAnimationEnabled +attr hintEnabled +attr hintTextAppearance +attr homeAsUpIndicator +attr homeLayout +attr hoveredFocusedTranslationZ +attr icon +attr iconEndPadding +attr iconGravity +attr iconPadding +attr iconSize +attr iconStartPadding +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr imageButtonStyle +attr indeterminateProgressStyle +attr initialActivityCount +attr insetForeground +attr isLightTheme +attr itemBackground +attr itemHorizontalPadding +attr itemHorizontalTranslationEnabled +attr itemIconPadding +attr itemIconSize +attr itemIconTint +attr itemPadding +attr itemSpacing +attr itemTextAppearance +attr itemTextAppearanceActive +attr itemTextAppearanceInactive +attr itemTextColor +attr keylines +attr labelVisibilityMode +attr lastBaselineToBottomHeight +attr layout +attr layoutManager +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_collapseMode +attr layout_collapseParallaxMultiplier +attr layout_dodgeInsetEdges +attr layout_insetEdge +attr layout_keyline +attr layout_scrollFlags +attr layout_scrollInterpolator +attr liftOnScroll +attr lineHeight +attr lineSpacing +attr listChoiceBackgroundIndicator +attr listDividerAlertDialog +attr listItemLayout +attr listLayout +attr listMenuViewStyle +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr logo +attr logoDescription +attr materialButtonStyle +attr materialCardViewStyle +attr maxActionInlineWidth +attr maxButtonHeight +attr maxImageSize +attr measureWithLargestChild +attr menu +attr multiChoiceItemLayout +attr navigationContentDescription +attr navigationIcon +attr navigationMode +attr navigationViewStyle +attr numericModifiers +attr overlapAnchor +attr paddingBottomNoButtons +attr paddingEnd +attr paddingStart +attr paddingTopNoTitle +attr panelBackground +attr panelMenuListTheme +attr panelMenuListWidth +attr passwordToggleContentDescription +attr passwordToggleDrawable +attr passwordToggleEnabled +attr passwordToggleTint +attr passwordToggleTintMode +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr preserveIconSpacing +attr pressedTranslationZ +attr progressBarPadding +attr progressBarStyle +attr queryBackground +attr queryHint +attr radioButtonStyle +attr ratingBarStyle +attr ratingBarStyleIndicator +attr ratingBarStyleSmall +attr reverseLayout +attr rippleColor +attr scrimAnimationDuration +attr scrimBackground +attr scrimVisibleHeightTrigger +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr showAsAction +attr showDividers +attr showMotionSpec +attr showText +attr showTitle +attr singleChoiceItemLayout +attr singleLine +attr singleSelection +attr snackbarButtonStyle +attr snackbarStyle +attr spanCount +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr srcCompat +attr stackFromEnd +attr state_above_anchor +attr state_collapsed +attr state_collapsible +attr state_liftable +attr state_lifted +attr statusBarBackground +attr statusBarScrim +attr strokeColor +attr strokeWidth +attr subMenuArrow +attr submitBackground +attr subtitle +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suggestionRowLayout +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr tabBackground +attr tabContentStart +attr tabGravity +attr tabIconTint +attr tabIconTintMode +attr tabIndicator +attr tabIndicatorAnimationDuration +attr tabIndicatorColor +attr tabIndicatorFullWidth +attr tabIndicatorGravity +attr tabIndicatorHeight +attr tabInlineLabel +attr tabMaxWidth +attr tabMinWidth +attr tabMode +attr tabPadding +attr tabPaddingBottom +attr tabPaddingEnd +attr tabPaddingStart +attr tabPaddingTop +attr tabRippleColor +attr tabSelectedTextColor +attr tabStyle +attr tabTextAppearance +attr tabTextColor +attr tabUnboundedRipple +attr textAllCaps +attr textAppearanceBody1 +attr textAppearanceBody2 +attr textAppearanceButton +attr textAppearanceCaption +attr textAppearanceHeadline1 +attr textAppearanceHeadline2 +attr textAppearanceHeadline3 +attr textAppearanceHeadline4 +attr textAppearanceHeadline5 +attr textAppearanceHeadline6 +attr textAppearanceLargePopupMenu +attr textAppearanceListItem +attr textAppearanceListItemSecondary +attr textAppearanceListItemSmall +attr textAppearanceOverline +attr textAppearancePopupMenuHeader +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textAppearanceSubtitle1 +attr textAppearanceSubtitle2 +attr textColorAlertDialogListItem +attr textColorSearchUrl +attr textEndPadding +attr textInputStyle +attr textStartPadding +attr theme +attr thickness +attr thumbTextPadding +attr thumbTint +attr thumbTintMode +attr tickMark +attr tickMarkTint +attr tickMarkTintMode +attr tint +attr tintMode +attr title +attr titleEnabled +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarId +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr tooltipForegroundColor +attr tooltipFrameBackground +attr tooltipText +attr track +attr trackTint +attr trackTintMode +attr ttcIndex +attr useCompatPadding +attr viewInflaterClass +attr voiceIcon +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowFixedHeightMajor +attr windowFixedHeightMinor +attr windowFixedWidthMajor +attr windowFixedWidthMinor +attr windowMinWidthMajor +attr windowMinWidthMinor +attr windowNoTitle +bool abc_action_bar_embed_tabs +bool abc_allow_stacked_button_bar +bool abc_config_actionMenuItemAllCaps +bool mtrl_btn_textappearance_all_caps +color abc_background_cache_hint_selector_material_dark +color abc_background_cache_hint_selector_material_light +color abc_btn_colored_borderless_text_material +color abc_btn_colored_text_material +color abc_color_highlight_material +color abc_hint_foreground_material_dark +color abc_hint_foreground_material_light +color abc_input_method_navigation_guard +color abc_primary_text_disable_only_material_dark +color abc_primary_text_disable_only_material_light +color abc_primary_text_material_dark +color abc_primary_text_material_light +color abc_search_url_text +color abc_search_url_text_normal +color abc_search_url_text_pressed +color abc_search_url_text_selected +color abc_secondary_text_material_dark +color abc_secondary_text_material_light +color abc_tint_btn_checkable +color abc_tint_default +color abc_tint_edittext +color abc_tint_seek_thumb +color abc_tint_spinner +color abc_tint_switch_track +color accent +color accent_material_dark +color accent_material_light +color background_floating_material_dark +color background_floating_material_light +color background_material_dark +color background_material_light +color bright_foreground_disabled_material_dark +color bright_foreground_disabled_material_light +color bright_foreground_inverse_material_dark +color bright_foreground_inverse_material_light +color bright_foreground_material_dark +color bright_foreground_material_light +color button_material_dark +color button_material_light +color cardview_dark_background +color cardview_light_background +color cardview_shadow_end_color +color cardview_shadow_start_color +color design_bottom_navigation_shadow_color +color design_default_color_primary +color design_default_color_primary_dark +color design_error +color design_fab_shadow_end_color +color design_fab_shadow_mid_color +color design_fab_shadow_start_color +color design_fab_stroke_end_inner_color +color design_fab_stroke_end_outer_color +color design_fab_stroke_top_inner_color +color design_fab_stroke_top_outer_color +color design_snackbar_background_color +color design_tint_password_toggle +color dim_foreground_disabled_material_dark +color dim_foreground_disabled_material_light +color dim_foreground_material_dark +color dim_foreground_material_light +color divider +color error_color_material_dark +color error_color_material_light +color foreground_material_dark +color foreground_material_light +color highlighted_text_material_dark +color highlighted_text_material_light +color icons +color material_blue_grey_800 +color material_blue_grey_900 +color material_blue_grey_950 +color material_deep_teal_200 +color material_deep_teal_500 +color material_grey_100 +color material_grey_300 +color material_grey_50 +color material_grey_600 +color material_grey_800 +color material_grey_850 +color material_grey_900 +color mtrl_bottom_nav_colored_item_tint +color mtrl_bottom_nav_item_tint +color mtrl_btn_bg_color_disabled +color mtrl_btn_bg_color_selector +color mtrl_btn_ripple_color +color mtrl_btn_stroke_color_selector +color mtrl_btn_text_btn_ripple_color +color mtrl_btn_text_color_disabled +color mtrl_btn_text_color_selector +color mtrl_btn_transparent_bg_color +color mtrl_chip_background_color +color mtrl_chip_close_icon_tint +color mtrl_chip_ripple_color +color mtrl_chip_text_color +color mtrl_fab_ripple_color +color mtrl_scrim_color +color mtrl_tabs_colored_ripple_color +color mtrl_tabs_icon_color_selector +color mtrl_tabs_icon_color_selector_colored +color mtrl_tabs_legacy_text_color_selector +color mtrl_tabs_ripple_color +color mtrl_text_btn_text_color_selector +color mtrl_textinput_default_box_stroke_color +color mtrl_textinput_disabled_color +color mtrl_textinput_filled_box_default_background_color +color mtrl_textinput_hovered_box_stroke_color +color notification_action_color_filter +color notification_icon_bg_color +color notification_material_background_media_default_color +color primary +color primary_dark +color primary_dark_material_dark +color primary_dark_material_light +color primary_light +color primary_material_dark +color primary_material_light +color primary_text +color primary_text_default_material_dark +color primary_text_default_material_light +color primary_text_disabled_material_dark +color primary_text_disabled_material_light +color ripple_material_dark +color ripple_material_light +color secondary_text +color secondary_text_default_material_dark +color secondary_text_default_material_light +color secondary_text_disabled_material_dark +color secondary_text_disabled_material_light +color switch_thumb_disabled_material_dark +color switch_thumb_disabled_material_light +color switch_thumb_material_dark +color switch_thumb_material_light +color switch_thumb_normal_material_dark +color switch_thumb_normal_material_light +color tooltip_background_dark +color tooltip_background_light +dimen abc_action_bar_content_inset_material +dimen abc_action_bar_content_inset_with_nav +dimen abc_action_bar_default_height_material +dimen abc_action_bar_default_padding_end_material +dimen abc_action_bar_default_padding_start_material +dimen abc_action_bar_elevation_material +dimen abc_action_bar_icon_vertical_padding_material +dimen abc_action_bar_overflow_padding_end_material +dimen abc_action_bar_overflow_padding_start_material +dimen abc_action_bar_stacked_max_height +dimen abc_action_bar_stacked_tab_max_width +dimen abc_action_bar_subtitle_bottom_margin_material +dimen abc_action_bar_subtitle_top_margin_material +dimen abc_action_button_min_height_material +dimen abc_action_button_min_width_material +dimen abc_action_button_min_width_overflow_material +dimen abc_alert_dialog_button_bar_height +dimen abc_alert_dialog_button_dimen +dimen abc_button_inset_horizontal_material +dimen abc_button_inset_vertical_material +dimen abc_button_padding_horizontal_material +dimen abc_button_padding_vertical_material +dimen abc_cascading_menus_min_smallest_width +dimen abc_config_prefDialogWidth +dimen abc_control_corner_material +dimen abc_control_inset_material +dimen abc_control_padding_material +dimen abc_dialog_corner_radius_material +dimen abc_dialog_fixed_height_major +dimen abc_dialog_fixed_height_minor +dimen abc_dialog_fixed_width_major +dimen abc_dialog_fixed_width_minor +dimen abc_dialog_list_padding_bottom_no_buttons +dimen abc_dialog_list_padding_top_no_title +dimen abc_dialog_min_width_major +dimen abc_dialog_min_width_minor +dimen abc_dialog_padding_material +dimen abc_dialog_padding_top_material +dimen abc_dialog_title_divider_material +dimen abc_disabled_alpha_material_dark +dimen abc_disabled_alpha_material_light +dimen abc_dropdownitem_icon_width +dimen abc_dropdownitem_text_padding_left +dimen abc_dropdownitem_text_padding_right +dimen abc_edit_text_inset_bottom_material +dimen abc_edit_text_inset_horizontal_material +dimen abc_edit_text_inset_top_material +dimen abc_floating_window_z +dimen abc_list_item_padding_horizontal_material +dimen abc_panel_menu_list_width +dimen abc_progress_bar_height_material +dimen abc_search_view_preferred_height +dimen abc_search_view_preferred_width +dimen abc_seekbar_track_background_height_material +dimen abc_seekbar_track_progress_height_material +dimen abc_select_dialog_padding_start_material +dimen abc_switch_padding +dimen abc_text_size_body_1_material +dimen abc_text_size_body_2_material +dimen abc_text_size_button_material +dimen abc_text_size_caption_material +dimen abc_text_size_display_1_material +dimen abc_text_size_display_2_material +dimen abc_text_size_display_3_material +dimen abc_text_size_display_4_material +dimen abc_text_size_headline_material +dimen abc_text_size_large_material +dimen abc_text_size_medium_material +dimen abc_text_size_menu_header_material +dimen abc_text_size_menu_material +dimen abc_text_size_small_material +dimen abc_text_size_subhead_material +dimen abc_text_size_subtitle_material_toolbar +dimen abc_text_size_title_material +dimen abc_text_size_title_material_toolbar +dimen cardview_compat_inset_shadow +dimen cardview_default_elevation +dimen cardview_default_radius +dimen compat_button_inset_horizontal_material +dimen compat_button_inset_vertical_material +dimen compat_button_padding_horizontal_material +dimen compat_button_padding_vertical_material +dimen compat_control_corner_material +dimen compat_notification_large_icon_max_height +dimen compat_notification_large_icon_max_width +dimen design_appbar_elevation +dimen design_bottom_navigation_active_item_max_width +dimen design_bottom_navigation_active_item_min_width +dimen design_bottom_navigation_active_text_size +dimen design_bottom_navigation_elevation +dimen design_bottom_navigation_height +dimen design_bottom_navigation_icon_size +dimen design_bottom_navigation_item_max_width +dimen design_bottom_navigation_item_min_width +dimen design_bottom_navigation_margin +dimen design_bottom_navigation_shadow_height +dimen design_bottom_navigation_text_size +dimen design_bottom_sheet_modal_elevation +dimen design_bottom_sheet_peek_height_min +dimen design_fab_border_width +dimen design_fab_elevation +dimen design_fab_image_size +dimen design_fab_size_mini +dimen design_fab_size_normal +dimen design_fab_translation_z_hovered_focused +dimen design_fab_translation_z_pressed +dimen design_navigation_elevation +dimen design_navigation_icon_padding +dimen design_navigation_icon_size +dimen design_navigation_item_horizontal_padding +dimen design_navigation_item_icon_padding +dimen design_navigation_max_width +dimen design_navigation_padding_bottom +dimen design_navigation_separator_vertical_padding +dimen design_snackbar_action_inline_max_width +dimen design_snackbar_background_corner_radius +dimen design_snackbar_elevation +dimen design_snackbar_extra_spacing_horizontal +dimen design_snackbar_max_width +dimen design_snackbar_min_width +dimen design_snackbar_padding_horizontal +dimen design_snackbar_padding_vertical +dimen design_snackbar_padding_vertical_2lines +dimen design_snackbar_text_size +dimen design_tab_max_width +dimen design_tab_scrollable_min_width +dimen design_tab_text_size +dimen design_tab_text_size_2line +dimen design_textinput_caption_translate_y +dimen disabled_alpha_material_dark +dimen disabled_alpha_material_light +dimen fastscroll_default_thickness +dimen fastscroll_margin +dimen fastscroll_minimum_range +dimen highlight_alpha_material_colored +dimen highlight_alpha_material_dark +dimen highlight_alpha_material_light +dimen hint_alpha_material_dark +dimen hint_alpha_material_light +dimen hint_pressed_alpha_material_dark +dimen hint_pressed_alpha_material_light +dimen item_touch_helper_max_drag_scroll_per_frame +dimen item_touch_helper_swipe_escape_max_velocity +dimen item_touch_helper_swipe_escape_velocity +dimen mtrl_bottomappbar_fabOffsetEndMode +dimen mtrl_bottomappbar_fab_cradle_margin +dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius +dimen mtrl_bottomappbar_fab_cradle_vertical_offset +dimen mtrl_bottomappbar_height +dimen mtrl_btn_corner_radius +dimen mtrl_btn_dialog_btn_min_width +dimen mtrl_btn_disabled_elevation +dimen mtrl_btn_disabled_z +dimen mtrl_btn_elevation +dimen mtrl_btn_focused_z +dimen mtrl_btn_hovered_z +dimen mtrl_btn_icon_btn_padding_left +dimen mtrl_btn_icon_padding +dimen mtrl_btn_inset +dimen mtrl_btn_letter_spacing +dimen mtrl_btn_padding_bottom +dimen mtrl_btn_padding_left +dimen mtrl_btn_padding_right +dimen mtrl_btn_padding_top +dimen mtrl_btn_pressed_z +dimen mtrl_btn_stroke_size +dimen mtrl_btn_text_btn_icon_padding +dimen mtrl_btn_text_btn_padding_left +dimen mtrl_btn_text_btn_padding_right +dimen mtrl_btn_text_size +dimen mtrl_btn_z +dimen mtrl_card_elevation +dimen mtrl_card_spacing +dimen mtrl_chip_pressed_translation_z +dimen mtrl_chip_text_size +dimen mtrl_fab_elevation +dimen mtrl_fab_translation_z_hovered_focused +dimen mtrl_fab_translation_z_pressed +dimen mtrl_navigation_elevation +dimen mtrl_navigation_item_horizontal_padding +dimen mtrl_navigation_item_icon_padding +dimen mtrl_snackbar_background_corner_radius +dimen mtrl_snackbar_margin +dimen mtrl_textinput_box_bottom_offset +dimen mtrl_textinput_box_corner_radius_medium +dimen mtrl_textinput_box_corner_radius_small +dimen mtrl_textinput_box_label_cutout_padding +dimen mtrl_textinput_box_padding_end +dimen mtrl_textinput_box_stroke_width_default +dimen mtrl_textinput_box_stroke_width_focused +dimen mtrl_textinput_outline_box_expanded_padding +dimen mtrl_toolbar_default_height +dimen notification_action_icon_size +dimen notification_action_text_size +dimen notification_big_circle_margin +dimen notification_content_margin_start +dimen notification_large_icon_height +dimen notification_large_icon_width +dimen notification_main_column_padding_top +dimen notification_media_narrow_margin +dimen notification_right_icon_size +dimen notification_right_side_padding_top +dimen notification_small_icon_background_padding +dimen notification_small_icon_size_as_large +dimen notification_subtext_size +dimen notification_top_pad +dimen notification_top_pad_large_text +dimen subtitle_corner_radius +dimen subtitle_outline_width +dimen subtitle_shadow_offset +dimen subtitle_shadow_radius +dimen tooltip_corner_radius +dimen tooltip_horizontal_padding +dimen tooltip_margin +dimen tooltip_precise_anchor_extra_offset +dimen tooltip_precise_anchor_threshold +dimen tooltip_vertical_padding +dimen tooltip_y_offset_non_touch +dimen tooltip_y_offset_touch +drawable abc_ab_share_pack_mtrl_alpha +drawable abc_action_bar_item_background_material +drawable abc_btn_borderless_material +drawable abc_btn_check_material +drawable abc_btn_check_to_on_mtrl_000 +drawable abc_btn_check_to_on_mtrl_015 +drawable abc_btn_colored_material +drawable abc_btn_default_mtrl_shape +drawable abc_btn_radio_material +drawable abc_btn_radio_to_on_mtrl_000 +drawable abc_btn_radio_to_on_mtrl_015 +drawable abc_btn_switch_to_on_mtrl_00001 +drawable abc_btn_switch_to_on_mtrl_00012 +drawable abc_cab_background_internal_bg +drawable abc_cab_background_top_material +drawable abc_cab_background_top_mtrl_alpha +drawable abc_control_background_material +drawable abc_dialog_material_background +drawable abc_edit_text_material +drawable abc_ic_ab_back_material +drawable abc_ic_arrow_drop_right_black_24dp +drawable abc_ic_clear_material +drawable abc_ic_commit_search_api_mtrl_alpha +drawable abc_ic_go_search_api_material +drawable abc_ic_menu_copy_mtrl_am_alpha +drawable abc_ic_menu_cut_mtrl_alpha +drawable abc_ic_menu_overflow_material +drawable abc_ic_menu_paste_mtrl_am_alpha +drawable abc_ic_menu_selectall_mtrl_alpha +drawable abc_ic_menu_share_mtrl_alpha +drawable abc_ic_search_api_material +drawable abc_ic_star_black_16dp +drawable abc_ic_star_black_36dp +drawable abc_ic_star_black_48dp +drawable abc_ic_star_half_black_16dp +drawable abc_ic_star_half_black_36dp +drawable abc_ic_star_half_black_48dp +drawable abc_ic_voice_search_api_material +drawable abc_item_background_holo_dark +drawable abc_item_background_holo_light +drawable abc_list_divider_material +drawable abc_list_divider_mtrl_alpha +drawable abc_list_focused_holo +drawable abc_list_longpressed_holo +drawable abc_list_pressed_holo_dark +drawable abc_list_pressed_holo_light +drawable abc_list_selector_background_transition_holo_dark +drawable abc_list_selector_background_transition_holo_light +drawable abc_list_selector_disabled_holo_dark +drawable abc_list_selector_disabled_holo_light +drawable abc_list_selector_holo_dark +drawable abc_list_selector_holo_light +drawable abc_menu_hardkey_panel_mtrl_mult +drawable abc_popup_background_mtrl_mult +drawable abc_ratingbar_indicator_material +drawable abc_ratingbar_material +drawable abc_ratingbar_small_material +drawable abc_scrubber_control_off_mtrl_alpha +drawable abc_scrubber_control_to_pressed_mtrl_000 +drawable abc_scrubber_control_to_pressed_mtrl_005 +drawable abc_scrubber_primary_mtrl_alpha +drawable abc_scrubber_track_mtrl_alpha +drawable abc_seekbar_thumb_material +drawable abc_seekbar_tick_mark_material +drawable abc_seekbar_track_material +drawable abc_spinner_mtrl_am_alpha +drawable abc_spinner_textfield_background_material +drawable abc_switch_thumb_material +drawable abc_switch_track_mtrl_alpha +drawable abc_tab_indicator_material +drawable abc_tab_indicator_mtrl_alpha +drawable abc_text_cursor_material +drawable abc_text_select_handle_left_mtrl_dark +drawable abc_text_select_handle_left_mtrl_light +drawable abc_text_select_handle_middle_mtrl_dark +drawable abc_text_select_handle_middle_mtrl_light +drawable abc_text_select_handle_right_mtrl_dark +drawable abc_text_select_handle_right_mtrl_light +drawable abc_textfield_activated_mtrl_alpha +drawable abc_textfield_default_mtrl_alpha +drawable abc_textfield_search_activated_mtrl_alpha +drawable abc_textfield_search_default_mtrl_alpha +drawable abc_textfield_search_material +drawable abc_vector_test +drawable avd_hide_password +drawable avd_show_password +drawable bg_material +drawable design_bottom_navigation_item_background +drawable design_fab_background +drawable design_ic_visibility +drawable design_ic_visibility_off +drawable design_password_eye +drawable design_snackbar_background +drawable ic_call_icon +drawable ic_cervantes +drawable ic_chevron_left_black_48dp +drawable ic_chevron_right_black_48dp +drawable ic_don_quixote +drawable ic_fritzbox +drawable ic_fritzbox_icon +drawable ic_lance +drawable ic_launcher +drawable ic_log_icon +drawable ic_menu_white_36dp +drawable ic_mtrl_chip_checked_black +drawable ic_mtrl_chip_checked_circle +drawable ic_mtrl_chip_close_circle +drawable ic_scene_1 +drawable ic_scene_2 +drawable ic_scene_3 +drawable ic_settings_icon +drawable ic_state_icon +drawable ic_windmil +drawable mtrl_snackbar_background +drawable mtrl_tabs_default_indicator +drawable navigation_empty_icon +drawable notification_action_background +drawable notification_bg +drawable notification_bg_low +drawable notification_bg_low_normal +drawable notification_bg_low_pressed +drawable notification_bg_normal +drawable notification_bg_normal_pressed +drawable notification_icon_background +drawable notification_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable tooltip_frame_dark +drawable tooltip_frame_light +id ALT +id CTRL +id FUNCTION +id META +id SHIFT +id SYM +id action0 +id action_bar +id action_bar_activity_content +id action_bar_container +id action_bar_root +id action_bar_spinner +id action_bar_subtitle +id action_bar_title +id action_container +id action_context_bar +id action_divider +id action_image +id action_menu_divider +id action_menu_presenter +id action_mode_bar +id action_mode_bar_stub +id action_mode_close_button +id action_text +id actions +id activity_chooser_view_content +id add +id alertTitle +id all +id always +id async +id auto +id beginning +id blocking +id bottom +id buttonPanel +id cancel_action +id center +id center_horizontal +id center_vertical +id checkbox +id chronometer +id clip_horizontal +id clip_vertical +id collapseActionView +id container +id content +id contentPanel +id coordinator +id custom +id customPanel +id decor_content_parent +id default_activity_button +id design_bottom_sheet +id design_menu_item_action_area +id design_menu_item_action_area_stub +id design_menu_item_text +id design_navigation_view +id disableHome +id edit_query +id end +id end_padder +id enterAlways +id enterAlwaysCollapsed +id exitUntilCollapsed +id expand_activities_button +id expanded_menu +id fill +id fill_horizontal +id fill_vertical +id filled +id fixed +id forever +id ghost_view +id group_divider +id home +id homeAsUp +id icon +id icon_group +id ifRoom +id image +id info +id italic +id item_touch_helper_previous_elevation +id labeled +id largeLabel +id left +id line1 +id line3 +id listMode +id list_item +id masked +id media_actions +id message +id middle +id mini +id mtrl_child_content_container +id mtrl_internal_children_alpha_tag +id multiply +id navigation_header_container +id never +id none +id normal +id notification_background +id notification_main_column +id notification_main_column_container +id outline +id parallax +id parentPanel +id parent_matrix +id pin +id progress_circular +id progress_horizontal +id radio +id right +id right_icon +id right_side +id save_image_matrix +id save_non_transition_alpha +id save_scale_type +id screen +id scroll +id scrollIndicatorDown +id scrollIndicatorUp +id scrollView +id scrollable +id search_badge +id search_bar +id search_button +id search_close_btn +id search_edit_frame +id search_go_btn +id search_mag_icon +id search_plate +id search_src_text +id search_voice_btn +id select_dialog_listview +id selected +id shortcut +id showCustom +id showHome +id showTitle +id smallLabel +id snackbar_action +id snackbar_text +id snap +id snapMargins +id spacer +id split_action_bar +id src_atop +id src_in +id src_over +id start +id status_bar_latest_event_content +id stretch +id submenuarrow +id submit_area +id tabMode +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id text +id text2 +id textSpacerNoButtons +id textSpacerNoTitle +id textStart +id text_input_password_toggle +id textinput_counter +id textinput_error +id textinput_helper_text +id time +id title +id titleDividerNoCustom +id title_template +id top +id topPanel +id touch_outside +id transition_current_scene +id transition_layout_save +id transition_position +id transition_scene_layoutid_cache +id transition_transform +id uniform +id unlabeled +id up +id useLogo +id view_offset_helper +id visible +id withText +id wrap_content +integer abc_config_activityDefaultDur +integer abc_config_activityShortDur +integer app_bar_elevation_anim_duration +integer bottom_sheet_slide_duration +integer cancel_button_image_alpha +integer config_tooltipAnimTime +integer design_snackbar_text_max_lines +integer design_tab_indicator_anim_duration_ms +integer hide_password_duration +integer mtrl_btn_anim_delay_ms +integer mtrl_btn_anim_duration_ms +integer mtrl_chip_anim_duration +integer mtrl_tab_indicator_anim_duration_ms +integer show_password_duration +integer status_bar_notification_info_maxnum +interpolator mtrl_fast_out_linear_in +interpolator mtrl_fast_out_slow_in +interpolator mtrl_linear +interpolator mtrl_linear_out_slow_in +layout abc_action_bar_title_item +layout abc_action_bar_up_container +layout abc_action_menu_item_layout +layout abc_action_menu_layout +layout abc_action_mode_bar +layout abc_action_mode_close_item_material +layout abc_activity_chooser_view +layout abc_activity_chooser_view_list_item +layout abc_alert_dialog_button_bar_material +layout abc_alert_dialog_material +layout abc_alert_dialog_title_material +layout abc_cascading_menu_item_layout +layout abc_dialog_title_material +layout abc_expanded_menu_layout +layout abc_list_menu_item_checkbox +layout abc_list_menu_item_icon +layout abc_list_menu_item_layout +layout abc_list_menu_item_radio +layout abc_popup_menu_header_item_layout +layout abc_popup_menu_item_layout +layout abc_screen_content_include +layout abc_screen_simple +layout abc_screen_simple_overlay_action_mode +layout abc_screen_toolbar +layout abc_search_dropdown_item_icons_2line +layout abc_search_view +layout abc_select_dialog_material +layout abc_tooltip +layout activity_app +layout design_bottom_navigation_item +layout design_bottom_sheet_dialog +layout design_layout_snackbar +layout design_layout_snackbar_include +layout design_layout_tab_icon +layout design_layout_tab_text +layout design_menu_item_action_area +layout design_navigation_item +layout design_navigation_item_header +layout design_navigation_item_separator +layout design_navigation_item_subheader +layout design_navigation_menu +layout design_navigation_menu_item +layout design_text_input_password_icon +layout mtrl_layout_snackbar +layout mtrl_layout_snackbar_include +layout notification_action +layout notification_action_tombstone +layout notification_media_action +layout notification_media_cancel_action +layout notification_template_big_media +layout notification_template_big_media_custom +layout notification_template_big_media_narrow +layout notification_template_big_media_narrow_custom +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_lines_media +layout notification_template_media +layout notification_template_media_custom +layout notification_template_part_chronometer +layout notification_template_part_time +layout select_dialog_item_material +layout select_dialog_multichoice_material +layout select_dialog_singlechoice_material +layout support_simple_spinner_dropdown_item +raw my_ca +string abc_action_bar_home_description +string abc_action_bar_up_description +string abc_action_menu_overflow_description +string abc_action_mode_done +string abc_activity_chooser_view_see_all +string abc_activitychooserview_choose_application +string abc_capital_off +string abc_capital_on +string abc_font_family_body_1_material +string abc_font_family_body_2_material +string abc_font_family_button_material +string abc_font_family_caption_material +string abc_font_family_display_1_material +string abc_font_family_display_2_material +string abc_font_family_display_3_material +string abc_font_family_display_4_material +string abc_font_family_headline_material +string abc_font_family_menu_material +string abc_font_family_subhead_material +string abc_font_family_title_material +string abc_menu_alt_shortcut_label +string abc_menu_ctrl_shortcut_label +string abc_menu_delete_shortcut_label +string abc_menu_enter_shortcut_label +string abc_menu_function_shortcut_label +string abc_menu_meta_shortcut_label +string abc_menu_shift_shortcut_label +string abc_menu_space_shortcut_label +string abc_menu_sym_shortcut_label +string abc_prepend_shortcut_label +string abc_search_hint +string abc_searchview_description_clear +string abc_searchview_description_query +string abc_searchview_description_search +string abc_searchview_description_submit +string abc_searchview_description_voice +string abc_shareactionprovider_share_with +string abc_shareactionprovider_share_with_application +string abc_toolbar_collapse_description +string app_name +string appbar_scrolling_view_behavior +string bottom_sheet_behavior +string character_counter_content_description +string character_counter_pattern +string fab_transformation_scrim_behavior +string fab_transformation_sheet_behavior +string hello_world +string hide_bottom_view_on_scroll_behavior +string mtrl_chip_close_icon_content_description +string password_toggle_content_description +string path_password_eye +string path_password_eye_mask_strike_through +string path_password_eye_mask_visible +string path_password_strike_through +string search_menu_title +string status_bar_notification_info_overflow +style AlertDialog_AppCompat +style AlertDialog_AppCompat_Light +style Animation_AppCompat_Dialog +style Animation_AppCompat_DropDownUp +style Animation_AppCompat_Tooltip +style Animation_Design_BottomSheetDialog +style AppBaseTheme +style AppTheme +style Base_AlertDialog_AppCompat +style Base_AlertDialog_AppCompat_Light +style Base_Animation_AppCompat_Dialog +style Base_Animation_AppCompat_DropDownUp +style Base_Animation_AppCompat_Tooltip +style Base_CardView +style Base_DialogWindowTitle_AppCompat +style Base_DialogWindowTitleBackground_AppCompat +style Base_TextAppearance_AppCompat +style Base_TextAppearance_AppCompat_Body1 +style Base_TextAppearance_AppCompat_Body2 +style Base_TextAppearance_AppCompat_Button +style Base_TextAppearance_AppCompat_Caption +style Base_TextAppearance_AppCompat_Display1 +style Base_TextAppearance_AppCompat_Display2 +style Base_TextAppearance_AppCompat_Display3 +style Base_TextAppearance_AppCompat_Display4 +style Base_TextAppearance_AppCompat_Headline +style Base_TextAppearance_AppCompat_Inverse +style Base_TextAppearance_AppCompat_Large +style Base_TextAppearance_AppCompat_Large_Inverse +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Medium +style Base_TextAppearance_AppCompat_Medium_Inverse +style Base_TextAppearance_AppCompat_Menu +style Base_TextAppearance_AppCompat_SearchResult +style Base_TextAppearance_AppCompat_SearchResult_Subtitle +style Base_TextAppearance_AppCompat_SearchResult_Title +style Base_TextAppearance_AppCompat_Small +style Base_TextAppearance_AppCompat_Small_Inverse +style Base_TextAppearance_AppCompat_Subhead +style Base_TextAppearance_AppCompat_Subhead_Inverse +style Base_TextAppearance_AppCompat_Title +style Base_TextAppearance_AppCompat_Title_Inverse +style Base_TextAppearance_AppCompat_Tooltip +style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionMode_Title +style Base_TextAppearance_AppCompat_Widget_Button +style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Inverse +style Base_TextAppearance_AppCompat_Widget_DropDownItem +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Widget_Switch +style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style Base_TextAppearance_Widget_AppCompat_Toolbar_Title +style Base_Theme_AppCompat +style Base_Theme_AppCompat_CompactMenu +style Base_Theme_AppCompat_Dialog +style Base_Theme_AppCompat_Dialog_Alert +style Base_Theme_AppCompat_Dialog_FixedSize +style Base_Theme_AppCompat_Dialog_MinWidth +style Base_Theme_AppCompat_DialogWhenLarge +style Base_Theme_AppCompat_Light +style Base_Theme_AppCompat_Light_DarkActionBar +style Base_Theme_AppCompat_Light_Dialog +style Base_Theme_AppCompat_Light_Dialog_Alert +style Base_Theme_AppCompat_Light_Dialog_FixedSize +style Base_Theme_AppCompat_Light_Dialog_MinWidth +style Base_Theme_AppCompat_Light_DialogWhenLarge +style Base_Theme_MaterialComponents +style Base_Theme_MaterialComponents_Bridge +style Base_Theme_MaterialComponents_CompactMenu +style Base_Theme_MaterialComponents_Dialog +style Base_Theme_MaterialComponents_Dialog_Alert +style Base_Theme_MaterialComponents_Dialog_FixedSize +style Base_Theme_MaterialComponents_Dialog_MinWidth +style Base_Theme_MaterialComponents_DialogWhenLarge +style Base_Theme_MaterialComponents_Light +style Base_Theme_MaterialComponents_Light_Bridge +style Base_Theme_MaterialComponents_Light_DarkActionBar +style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_Theme_MaterialComponents_Light_Dialog +style Base_Theme_MaterialComponents_Light_Dialog_Alert +style Base_Theme_MaterialComponents_Light_Dialog_FixedSize +style Base_Theme_MaterialComponents_Light_Dialog_MinWidth +style Base_Theme_MaterialComponents_Light_DialogWhenLarge +style Base_ThemeOverlay_AppCompat +style Base_ThemeOverlay_AppCompat_ActionBar +style Base_ThemeOverlay_AppCompat_Dark +style Base_ThemeOverlay_AppCompat_Dark_ActionBar +style Base_ThemeOverlay_AppCompat_Dialog +style Base_ThemeOverlay_AppCompat_Dialog_Alert +style Base_ThemeOverlay_AppCompat_Light +style Base_ThemeOverlay_MaterialComponents_Dialog +style Base_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_V14_Theme_MaterialComponents +style Base_V14_Theme_MaterialComponents_Bridge +style Base_V14_Theme_MaterialComponents_Dialog +style Base_V14_Theme_MaterialComponents_Light +style Base_V14_Theme_MaterialComponents_Light_Bridge +style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Base_V14_Theme_MaterialComponents_Light_Dialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog +style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +style Base_V21_Theme_AppCompat +style Base_V21_Theme_AppCompat_Dialog +style Base_V21_Theme_AppCompat_Light +style Base_V21_Theme_AppCompat_Light_Dialog +style Base_V21_ThemeOverlay_AppCompat_Dialog +style Base_V22_Theme_AppCompat +style Base_V22_Theme_AppCompat_Light +style Base_V23_Theme_AppCompat +style Base_V23_Theme_AppCompat_Light +style Base_V26_Theme_AppCompat +style Base_V26_Theme_AppCompat_Light +style Base_V26_Widget_AppCompat_Toolbar +style Base_V28_Theme_AppCompat +style Base_V28_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat +style Base_V7_Theme_AppCompat_Dialog +style Base_V7_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat_Light_Dialog +style Base_V7_ThemeOverlay_AppCompat_Dialog +style Base_V7_Widget_AppCompat_AutoCompleteTextView +style Base_V7_Widget_AppCompat_EditText +style Base_V7_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_ActionBar +style Base_Widget_AppCompat_ActionBar_Solid +style Base_Widget_AppCompat_ActionBar_TabBar +style Base_Widget_AppCompat_ActionBar_TabText +style Base_Widget_AppCompat_ActionBar_TabView +style Base_Widget_AppCompat_ActionButton +style Base_Widget_AppCompat_ActionButton_CloseMode +style Base_Widget_AppCompat_ActionButton_Overflow +style Base_Widget_AppCompat_ActionMode +style Base_Widget_AppCompat_ActivityChooserView +style Base_Widget_AppCompat_AutoCompleteTextView +style Base_Widget_AppCompat_Button +style Base_Widget_AppCompat_Button_Borderless +style Base_Widget_AppCompat_Button_Borderless_Colored +style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Colored +style Base_Widget_AppCompat_Button_Small +style Base_Widget_AppCompat_ButtonBar +style Base_Widget_AppCompat_ButtonBar_AlertDialog +style Base_Widget_AppCompat_CompoundButton_CheckBox +style Base_Widget_AppCompat_CompoundButton_RadioButton +style Base_Widget_AppCompat_CompoundButton_Switch +style Base_Widget_AppCompat_DrawerArrowToggle +style Base_Widget_AppCompat_DrawerArrowToggle_Common +style Base_Widget_AppCompat_DropDownItem_Spinner +style Base_Widget_AppCompat_EditText +style Base_Widget_AppCompat_ImageButton +style Base_Widget_AppCompat_Light_ActionBar +style Base_Widget_AppCompat_Light_ActionBar_Solid +style Base_Widget_AppCompat_Light_ActionBar_TabBar +style Base_Widget_AppCompat_Light_ActionBar_TabText +style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Base_Widget_AppCompat_Light_ActionBar_TabView +style Base_Widget_AppCompat_Light_PopupMenu +style Base_Widget_AppCompat_Light_PopupMenu_Overflow +style Base_Widget_AppCompat_ListMenuView +style Base_Widget_AppCompat_ListPopupWindow +style Base_Widget_AppCompat_ListView +style Base_Widget_AppCompat_ListView_DropDown +style Base_Widget_AppCompat_ListView_Menu +style Base_Widget_AppCompat_PopupMenu +style Base_Widget_AppCompat_PopupMenu_Overflow +style Base_Widget_AppCompat_PopupWindow +style Base_Widget_AppCompat_ProgressBar +style Base_Widget_AppCompat_ProgressBar_Horizontal +style Base_Widget_AppCompat_RatingBar +style Base_Widget_AppCompat_RatingBar_Indicator +style Base_Widget_AppCompat_RatingBar_Small +style Base_Widget_AppCompat_SearchView +style Base_Widget_AppCompat_SearchView_ActionBar +style Base_Widget_AppCompat_SeekBar +style Base_Widget_AppCompat_SeekBar_Discrete +style Base_Widget_AppCompat_Spinner +style Base_Widget_AppCompat_Spinner_Underlined +style Base_Widget_AppCompat_TextView_SpinnerItem +style Base_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_Toolbar_Button_Navigation +style Base_Widget_Design_TabLayout +style Base_Widget_MaterialComponents_Chip +style Base_Widget_MaterialComponents_TextInputEditText +style Base_Widget_MaterialComponents_TextInputLayout +style CardView +style CardView_Dark +style CardView_Light +style Platform_AppCompat +style Platform_AppCompat_Light +style Platform_MaterialComponents +style Platform_MaterialComponents_Dialog +style Platform_MaterialComponents_Light +style Platform_MaterialComponents_Light_Dialog +style Platform_ThemeOverlay_AppCompat +style Platform_ThemeOverlay_AppCompat_Dark +style Platform_ThemeOverlay_AppCompat_Light +style Platform_V21_AppCompat +style Platform_V21_AppCompat_Light +style Platform_V25_AppCompat +style Platform_V25_AppCompat_Light +style Platform_Widget_AppCompat_Spinner +style RtlOverlay_DialogWindowTitle_AppCompat +style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +style RtlOverlay_Widget_AppCompat_DialogTitle_Icon +style RtlOverlay_Widget_AppCompat_PopupMenuItem +style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +style RtlOverlay_Widget_AppCompat_Search_DropDown +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Query +style RtlOverlay_Widget_AppCompat_Search_DropDown_Text +style RtlOverlay_Widget_AppCompat_SearchView_MagIcon +style RtlUnderlay_Widget_AppCompat_ActionButton +style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +style TextAppearance_AppCompat +style TextAppearance_AppCompat_Body1 +style TextAppearance_AppCompat_Body2 +style TextAppearance_AppCompat_Button +style TextAppearance_AppCompat_Caption +style TextAppearance_AppCompat_Display1 +style TextAppearance_AppCompat_Display2 +style TextAppearance_AppCompat_Display3 +style TextAppearance_AppCompat_Display4 +style TextAppearance_AppCompat_Headline +style TextAppearance_AppCompat_Inverse +style TextAppearance_AppCompat_Large +style TextAppearance_AppCompat_Large_Inverse +style TextAppearance_AppCompat_Light_SearchResult_Subtitle +style TextAppearance_AppCompat_Light_SearchResult_Title +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Medium +style TextAppearance_AppCompat_Medium_Inverse +style TextAppearance_AppCompat_Menu +style TextAppearance_AppCompat_SearchResult_Subtitle +style TextAppearance_AppCompat_SearchResult_Title +style TextAppearance_AppCompat_Small +style TextAppearance_AppCompat_Small_Inverse +style TextAppearance_AppCompat_Subhead +style TextAppearance_AppCompat_Subhead_Inverse +style TextAppearance_AppCompat_Title +style TextAppearance_AppCompat_Title_Inverse +style TextAppearance_AppCompat_Tooltip +style TextAppearance_AppCompat_Widget_ActionBar_Menu +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Title +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Title +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +style TextAppearance_AppCompat_Widget_Button +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style TextAppearance_AppCompat_Widget_Button_Colored +style TextAppearance_AppCompat_Widget_Button_Inverse +style TextAppearance_AppCompat_Widget_DropDownItem +style TextAppearance_AppCompat_Widget_PopupMenu_Header +style TextAppearance_AppCompat_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Widget_Switch +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Info_Media +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Line2_Media +style TextAppearance_Compat_Notification_Media +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Time_Media +style TextAppearance_Compat_Notification_Title +style TextAppearance_Compat_Notification_Title_Media +style TextAppearance_Design_CollapsingToolbar_Expanded +style TextAppearance_Design_Counter +style TextAppearance_Design_Counter_Overflow +style TextAppearance_Design_Error +style TextAppearance_Design_HelperText +style TextAppearance_Design_Hint +style TextAppearance_Design_Snackbar_Message +style TextAppearance_Design_Tab +style TextAppearance_MaterialComponents_Body1 +style TextAppearance_MaterialComponents_Body2 +style TextAppearance_MaterialComponents_Button +style TextAppearance_MaterialComponents_Caption +style TextAppearance_MaterialComponents_Chip +style TextAppearance_MaterialComponents_Headline1 +style TextAppearance_MaterialComponents_Headline2 +style TextAppearance_MaterialComponents_Headline3 +style TextAppearance_MaterialComponents_Headline4 +style TextAppearance_MaterialComponents_Headline5 +style TextAppearance_MaterialComponents_Headline6 +style TextAppearance_MaterialComponents_Overline +style TextAppearance_MaterialComponents_Subtitle1 +style TextAppearance_MaterialComponents_Subtitle2 +style TextAppearance_MaterialComponents_Tab +style TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style TextAppearance_Widget_AppCompat_Toolbar_Title +style Theme_AppCompat +style Theme_AppCompat_CompactMenu +style Theme_AppCompat_DayNight +style Theme_AppCompat_DayNight_DarkActionBar +style Theme_AppCompat_DayNight_Dialog +style Theme_AppCompat_DayNight_Dialog_Alert +style Theme_AppCompat_DayNight_Dialog_MinWidth +style Theme_AppCompat_DayNight_DialogWhenLarge +style Theme_AppCompat_DayNight_NoActionBar +style Theme_AppCompat_Dialog +style Theme_AppCompat_Dialog_Alert +style Theme_AppCompat_Dialog_MinWidth +style Theme_AppCompat_DialogWhenLarge +style Theme_AppCompat_Light +style Theme_AppCompat_Light_DarkActionBar +style Theme_AppCompat_Light_Dialog +style Theme_AppCompat_Light_Dialog_Alert +style Theme_AppCompat_Light_Dialog_MinWidth +style Theme_AppCompat_Light_DialogWhenLarge +style Theme_AppCompat_Light_NoActionBar +style Theme_AppCompat_NoActionBar +style Theme_Design +style Theme_Design_BottomSheetDialog +style Theme_Design_Light +style Theme_Design_Light_BottomSheetDialog +style Theme_Design_Light_NoActionBar +style Theme_Design_NoActionBar +style Theme_MaterialComponents +style Theme_MaterialComponents_BottomSheetDialog +style Theme_MaterialComponents_Bridge +style Theme_MaterialComponents_CompactMenu +style Theme_MaterialComponents_Dialog +style Theme_MaterialComponents_Dialog_Alert +style Theme_MaterialComponents_Dialog_MinWidth +style Theme_MaterialComponents_DialogWhenLarge +style Theme_MaterialComponents_Light +style Theme_MaterialComponents_Light_BottomSheetDialog +style Theme_MaterialComponents_Light_Bridge +style Theme_MaterialComponents_Light_DarkActionBar +style Theme_MaterialComponents_Light_DarkActionBar_Bridge +style Theme_MaterialComponents_Light_Dialog +style Theme_MaterialComponents_Light_Dialog_Alert +style Theme_MaterialComponents_Light_Dialog_MinWidth +style Theme_MaterialComponents_Light_DialogWhenLarge +style Theme_MaterialComponents_Light_NoActionBar +style Theme_MaterialComponents_Light_NoActionBar_Bridge +style Theme_MaterialComponents_NoActionBar +style Theme_MaterialComponents_NoActionBar_Bridge +style ThemeOverlay_AppCompat +style ThemeOverlay_AppCompat_ActionBar +style ThemeOverlay_AppCompat_Dark +style ThemeOverlay_AppCompat_Dark_ActionBar +style ThemeOverlay_AppCompat_Dialog +style ThemeOverlay_AppCompat_Dialog_Alert +style ThemeOverlay_AppCompat_Light +style ThemeOverlay_MaterialComponents +style ThemeOverlay_MaterialComponents_ActionBar +style ThemeOverlay_MaterialComponents_Dark +style ThemeOverlay_MaterialComponents_Dark_ActionBar +style ThemeOverlay_MaterialComponents_Dialog +style ThemeOverlay_MaterialComponents_Dialog_Alert +style ThemeOverlay_MaterialComponents_Light +style ThemeOverlay_MaterialComponents_TextInputEditText +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style Widget_AppCompat_ActionBar +style Widget_AppCompat_ActionBar_Solid +style Widget_AppCompat_ActionBar_TabBar +style Widget_AppCompat_ActionBar_TabText +style Widget_AppCompat_ActionBar_TabView +style Widget_AppCompat_ActionButton +style Widget_AppCompat_ActionButton_CloseMode +style Widget_AppCompat_ActionButton_Overflow +style Widget_AppCompat_ActionMode +style Widget_AppCompat_ActivityChooserView +style Widget_AppCompat_AutoCompleteTextView +style Widget_AppCompat_Button +style Widget_AppCompat_Button_Borderless +style Widget_AppCompat_Button_Borderless_Colored +style Widget_AppCompat_Button_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Colored +style Widget_AppCompat_Button_Small +style Widget_AppCompat_ButtonBar +style Widget_AppCompat_ButtonBar_AlertDialog +style Widget_AppCompat_CompoundButton_CheckBox +style Widget_AppCompat_CompoundButton_RadioButton +style Widget_AppCompat_CompoundButton_Switch +style Widget_AppCompat_DrawerArrowToggle +style Widget_AppCompat_DropDownItem_Spinner +style Widget_AppCompat_EditText +style Widget_AppCompat_ImageButton +style Widget_AppCompat_Light_ActionBar +style Widget_AppCompat_Light_ActionBar_Solid +style Widget_AppCompat_Light_ActionBar_Solid_Inverse +style Widget_AppCompat_Light_ActionBar_TabBar +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse +style Widget_AppCompat_Light_ActionBar_TabText +style Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Widget_AppCompat_Light_ActionBar_TabView +style Widget_AppCompat_Light_ActionBar_TabView_Inverse +style Widget_AppCompat_Light_ActionButton +style Widget_AppCompat_Light_ActionButton_CloseMode +style Widget_AppCompat_Light_ActionButton_Overflow +style Widget_AppCompat_Light_ActionMode_Inverse +style Widget_AppCompat_Light_ActivityChooserView +style Widget_AppCompat_Light_AutoCompleteTextView +style Widget_AppCompat_Light_DropDownItem_Spinner +style Widget_AppCompat_Light_ListPopupWindow +style Widget_AppCompat_Light_ListView_DropDown +style Widget_AppCompat_Light_PopupMenu +style Widget_AppCompat_Light_PopupMenu_Overflow +style Widget_AppCompat_Light_SearchView +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar +style Widget_AppCompat_ListMenuView +style Widget_AppCompat_ListPopupWindow +style Widget_AppCompat_ListView +style Widget_AppCompat_ListView_DropDown +style Widget_AppCompat_ListView_Menu +style Widget_AppCompat_PopupMenu +style Widget_AppCompat_PopupMenu_Overflow +style Widget_AppCompat_PopupWindow +style Widget_AppCompat_ProgressBar +style Widget_AppCompat_ProgressBar_Horizontal +style Widget_AppCompat_RatingBar +style Widget_AppCompat_RatingBar_Indicator +style Widget_AppCompat_RatingBar_Small +style Widget_AppCompat_SearchView +style Widget_AppCompat_SearchView_ActionBar +style Widget_AppCompat_SeekBar +style Widget_AppCompat_SeekBar_Discrete +style Widget_AppCompat_Spinner +style Widget_AppCompat_Spinner_DropDown +style Widget_AppCompat_Spinner_DropDown_ActionBar +style Widget_AppCompat_Spinner_Underlined +style Widget_AppCompat_TextView_SpinnerItem +style Widget_AppCompat_Toolbar +style Widget_AppCompat_Toolbar_Button_Navigation +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +style Widget_Design_AppBarLayout +style Widget_Design_BottomNavigationView +style Widget_Design_BottomSheet_Modal +style Widget_Design_CollapsingToolbar +style Widget_Design_FloatingActionButton +style Widget_Design_NavigationView +style Widget_Design_ScrimInsetsFrameLayout +style Widget_Design_Snackbar +style Widget_Design_TabLayout +style Widget_Design_TextInputLayout +style Widget_MaterialComponents_BottomAppBar +style Widget_MaterialComponents_BottomAppBar_Colored +style Widget_MaterialComponents_BottomNavigationView +style Widget_MaterialComponents_BottomNavigationView_Colored +style Widget_MaterialComponents_BottomSheet_Modal +style Widget_MaterialComponents_Button +style Widget_MaterialComponents_Button_Icon +style Widget_MaterialComponents_Button_OutlinedButton +style Widget_MaterialComponents_Button_OutlinedButton_Icon +style Widget_MaterialComponents_Button_TextButton +style Widget_MaterialComponents_Button_TextButton_Dialog +style Widget_MaterialComponents_Button_TextButton_Dialog_Icon +style Widget_MaterialComponents_Button_TextButton_Icon +style Widget_MaterialComponents_Button_UnelevatedButton +style Widget_MaterialComponents_Button_UnelevatedButton_Icon +style Widget_MaterialComponents_CardView +style Widget_MaterialComponents_Chip_Action +style Widget_MaterialComponents_Chip_Choice +style Widget_MaterialComponents_Chip_Entry +style Widget_MaterialComponents_Chip_Filter +style Widget_MaterialComponents_ChipGroup +style Widget_MaterialComponents_FloatingActionButton +style Widget_MaterialComponents_NavigationView +style Widget_MaterialComponents_Snackbar +style Widget_MaterialComponents_Snackbar_FullWidth +style Widget_MaterialComponents_TabLayout +style Widget_MaterialComponents_TabLayout_Colored +style Widget_MaterialComponents_TextInputEditText_FilledBox +style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +style Widget_MaterialComponents_TextInputEditText_OutlinedBox +style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +style Widget_MaterialComponents_TextInputLayout_FilledBox +style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +style Widget_MaterialComponents_TextInputLayout_OutlinedBox +style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +style Widget_MaterialComponents_Toolbar +style Widget_Support_CoordinatorLayout +styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle +styleable ActionBarLayout android_layout_gravity +styleable ActionMenuItemView android_minWidth +styleable ActionMenuView +styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle +styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount +styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout +styleable AnimatedStateListDrawableCompat android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration +styleable AnimatedStateListDrawableItem android_id android_drawable +styleable AnimatedStateListDrawableTransition android_drawable android_toId android_fromId android_reversible +styleable AppBarLayout android_background android_touchscreenBlocksFocus android_keyboardNavigationCluster elevation expanded liftOnScroll +styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted +styleable AppBarLayout_Layout layout_scrollFlags layout_scrollInterpolator +styleable AppCompatImageView android_src srcCompat tint tintMode +styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode +styleable AppCompatTextHelper android_textAppearance android_drawableTop android_drawableBottom android_drawableLeft android_drawableRight android_drawableStart android_drawableEnd +styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType firstBaselineToTopHeight fontFamily lastBaselineToBottomHeight lineHeight textAllCaps +styleable AppCompatTheme android_windowIsFloating android_windowAnimationStyle actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingLeft listPreferredItemPaddingRight panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle +styleable BottomAppBar backgroundTint fabAlignmentMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll +styleable BottomNavigationView elevation itemBackground itemHorizontalTranslationEnabled itemIconSize itemIconTint itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu +styleable BottomSheetBehavior_Layout behavior_fitToContents behavior_hideable behavior_peekHeight behavior_skipCollapsed +styleable ButtonBarLayout allowStacking +styleable CardView android_minWidth android_minHeight cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop +styleable Chip android_textAppearance android_ellipsize android_maxWidth android_text android_checkable checkedIcon checkedIconEnabled checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipStartPadding chipStrokeColor chipStrokeWidth closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible hideMotionSpec iconEndPadding iconStartPadding rippleColor showMotionSpec textEndPadding textStartPadding +styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical singleLine singleSelection +styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleEnabled toolbarId +styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier +styleable ColorStateListItem android_color android_alpha alpha +styleable CompoundButton android_button buttonTint buttonTintMode +styleable CoordinatorLayout keylines statusBarBackground +styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline +styleable DesignTheme bottomSheetDialogTheme bottomSheetStyle +styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness +styleable FloatingActionButton backgroundTint backgroundTintMode borderWidth elevation fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor showMotionSpec useCompatPadding +styleable FloatingActionButton_Behavior_Layout behavior_autoHide +styleable FlowLayout itemSpacing lineSpacing +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery +styleable FontFamilyFont android_font android_fontWeight android_fontStyle android_ttcIndex android_fontVariationSettings font fontStyle fontVariationSettings fontWeight ttcIndex +styleable ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding +styleable GradientColor android_startColor android_endColor android_type android_centerX android_centerY android_gradientRadius android_tileMode android_centerColor android_startX android_startY android_endX android_endY +styleable GradientColorItem android_color android_offset +styleable LinearLayoutCompat android_gravity android_orientation android_baselineAligned android_baselineAlignedChildIndex android_weightSum divider dividerPadding measureWithLargestChild showDividers +styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_width android_layout_height android_layout_weight +styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset +styleable MaterialButton android_insetLeft android_insetRight android_insetTop android_insetBottom backgroundTint backgroundTintMode cornerRadius icon iconGravity iconPadding iconSize iconTint iconTintMode rippleColor strokeColor strokeWidth +styleable MaterialCardView strokeColor strokeWidth +styleable MaterialComponentsTheme bottomSheetDialogTheme bottomSheetStyle chipGroupStyle chipStandaloneStyle chipStyle colorAccent colorBackgroundFloating colorPrimary colorPrimaryDark colorSecondary editTextStyle floatingActionButtonStyle materialButtonStyle materialCardViewStyle navigationViewStyle scrimBackground snackbarButtonStyle tabStyle textAppearanceBody1 textAppearanceBody2 textAppearanceButton textAppearanceCaption textAppearanceHeadline1 textAppearanceHeadline2 textAppearanceHeadline3 textAppearanceHeadline4 textAppearanceHeadline5 textAppearanceHeadline6 textAppearanceOverline textAppearanceSubtitle1 textAppearanceSubtitle2 textInputStyle +styleable MenuGroup android_enabled android_id android_visible android_menuCategory android_orderInCategory android_checkableBehavior +styleable MenuItem android_icon android_enabled android_id android_checked android_visible android_menuCategory android_orderInCategory android_title android_titleCondensed android_alphabeticShortcut android_numericShortcut android_checkable android_onClick actionLayout actionProviderClass actionViewClass alphabeticModifiers contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText +styleable MenuView android_windowAnimationStyle android_itemTextAppearance android_horizontalDivider android_verticalDivider android_headerBackground android_itemBackground android_itemIconDisabledAlpha preserveIconSpacing subMenuArrow +styleable NavigationView android_background android_fitsSystemWindows android_maxWidth elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconTint itemTextAppearance itemTextColor menu +styleable PopupWindow android_popupBackground android_popupAnimationStyle overlapAnchor +styleable PopupWindowBackgroundState state_above_anchor +styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle +styleable RecyclerView android_orientation android_descendantFocusability fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd +styleable ScrimInsetsFrameLayout insetForeground +styleable ScrollingViewBehavior_Layout behavior_overlapTop +styleable SearchView android_focusable android_maxWidth android_inputType android_imeOptions closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon +styleable Snackbar snackbarButtonStyle snackbarStyle +styleable SnackbarLayout android_maxWidth elevation maxActionInlineWidth +styleable Spinner android_entries android_popupBackground android_prompt android_dropDownWidth popupTheme +styleable StateListDrawable android_dither android_visible android_variablePadding android_constantSize android_enterFadeDuration android_exitFadeDuration +styleable StateListDrawableItem android_drawable +styleable SwitchCompat android_textOn android_textOff android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode +styleable TabItem android_icon android_layout android_text +styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple +styleable TextAppearance android_textSize android_typeface android_textStyle android_textColor android_textColorHint android_textColorLink android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_fontFamily fontFamily textAllCaps +styleable TextInputLayout android_textColorHint android_hint boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeWidth counterEnabled counterMaxLength counterOverflowTextAppearance counterTextAppearance errorEnabled errorTextAppearance helperText helperTextEnabled helperTextTextAppearance hintAnimationEnabled hintEnabled hintTextAppearance passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode +styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance +styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor +styleable View android_theme android_focusable paddingEnd paddingStart theme +styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode +styleable ViewStubCompat android_id android_layout android_inflatedId +xml network_security_config diff --git a/SmartFritz/build/intermediates/signing_config/debug/out/signing-config.json b/SmartFritz/build/intermediates/signing_config/debug/out/signing-config.json new file mode 100644 index 0000000000000000000000000000000000000000..1ec782ee1ef67079c1fc3fafcbf136305b728f4a --- /dev/null +++ b/SmartFritz/build/intermediates/signing_config/debug/out/signing-config.json @@ -0,0 +1 @@ +{"mName":"debug","mStoreFile":"/home/te/.android/debug.keystore","mStorePassword":"android","mKeyAlias":"AndroidDebugKey","mKeyPassword":"android","mStoreType":"pkcs12","mV1SigningEnabled":true,"mV2SigningEnabled":true} \ No newline at end of file diff --git a/SmartFritz/build/intermediates/signing_config/release/out/signing-config.json b/SmartFritz/build/intermediates/signing_config/release/out/signing-config.json new file mode 100644 index 0000000000000000000000000000000000000000..ec747fa47ddb81e9bf2d282011ed32aa4c59f932 --- /dev/null +++ b/SmartFritz/build/intermediates/signing_config/release/out/signing-config.json @@ -0,0 +1 @@ +null \ No newline at end of file diff --git a/SmartFritz/build/intermediates/symbols/debug/R.txt b/SmartFritz/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..487a97950821799e0eea5329a8774abc68d1ce4c --- /dev/null +++ b/SmartFritz/build/intermediates/symbols/debug/R.txt @@ -0,0 +1,2576 @@ +int anim abc_fade_in 0x7f010000 +int anim abc_fade_out 0x7f010001 +int anim abc_grow_fade_in_from_bottom 0x7f010002 +int anim abc_popup_enter 0x7f010003 +int anim abc_popup_exit 0x7f010004 +int anim abc_shrink_fade_out_from_bottom 0x7f010005 +int anim abc_slide_in_bottom 0x7f010006 +int anim abc_slide_in_top 0x7f010007 +int anim abc_slide_out_bottom 0x7f010008 +int anim abc_slide_out_top 0x7f010009 +int anim abc_tooltip_enter 0x7f01000a +int anim abc_tooltip_exit 0x7f01000b +int anim design_bottom_sheet_slide_in 0x7f01000c +int anim design_bottom_sheet_slide_out 0x7f01000d +int anim design_snackbar_in 0x7f01000e +int anim design_snackbar_out 0x7f01000f +int animator design_appbar_state_list_animator 0x7f020000 +int animator design_fab_hide_motion_spec 0x7f020001 +int animator design_fab_show_motion_spec 0x7f020002 +int animator mtrl_btn_state_list_anim 0x7f020003 +int animator mtrl_btn_unelevated_state_list_anim 0x7f020004 +int animator mtrl_chip_state_list_anim 0x7f020005 +int animator mtrl_fab_hide_motion_spec 0x7f020006 +int animator mtrl_fab_show_motion_spec 0x7f020007 +int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020008 +int animator mtrl_fab_transformation_sheet_expand_spec 0x7f020009 +int attr actionBarDivider 0x7f030000 +int attr actionBarItemBackground 0x7f030001 +int attr actionBarPopupTheme 0x7f030002 +int attr actionBarSize 0x7f030003 +int attr actionBarSplitStyle 0x7f030004 +int attr actionBarStyle 0x7f030005 +int attr actionBarTabBarStyle 0x7f030006 +int attr actionBarTabStyle 0x7f030007 +int attr actionBarTabTextStyle 0x7f030008 +int attr actionBarTheme 0x7f030009 +int attr actionBarWidgetTheme 0x7f03000a +int attr actionButtonStyle 0x7f03000b +int attr actionDropDownStyle 0x7f03000c +int attr actionLayout 0x7f03000d +int attr actionMenuTextAppearance 0x7f03000e +int attr actionMenuTextColor 0x7f03000f +int attr actionModeBackground 0x7f030010 +int attr actionModeCloseButtonStyle 0x7f030011 +int attr actionModeCloseDrawable 0x7f030012 +int attr actionModeCopyDrawable 0x7f030013 +int attr actionModeCutDrawable 0x7f030014 +int attr actionModeFindDrawable 0x7f030015 +int attr actionModePasteDrawable 0x7f030016 +int attr actionModePopupWindowStyle 0x7f030017 +int attr actionModeSelectAllDrawable 0x7f030018 +int attr actionModeShareDrawable 0x7f030019 +int attr actionModeSplitBackground 0x7f03001a +int attr actionModeStyle 0x7f03001b +int attr actionModeWebSearchDrawable 0x7f03001c +int attr actionOverflowButtonStyle 0x7f03001d +int attr actionOverflowMenuStyle 0x7f03001e +int attr actionProviderClass 0x7f03001f +int attr actionViewClass 0x7f030020 +int attr activityChooserViewStyle 0x7f030021 +int attr alertDialogButtonGroupStyle 0x7f030022 +int attr alertDialogCenterButtons 0x7f030023 +int attr alertDialogStyle 0x7f030024 +int attr alertDialogTheme 0x7f030025 +int attr allowStacking 0x7f030026 +int attr alpha 0x7f030027 +int attr alphabeticModifiers 0x7f030028 +int attr arrowHeadLength 0x7f030029 +int attr arrowShaftLength 0x7f03002a +int attr autoCompleteTextViewStyle 0x7f03002b +int attr autoSizeMaxTextSize 0x7f03002c +int attr autoSizeMinTextSize 0x7f03002d +int attr autoSizePresetSizes 0x7f03002e +int attr autoSizeStepGranularity 0x7f03002f +int attr autoSizeTextType 0x7f030030 +int attr background 0x7f030031 +int attr backgroundSplit 0x7f030032 +int attr backgroundStacked 0x7f030033 +int attr backgroundTint 0x7f030034 +int attr backgroundTintMode 0x7f030035 +int attr barLength 0x7f030036 +int attr behavior_autoHide 0x7f030037 +int attr behavior_fitToContents 0x7f030038 +int attr behavior_hideable 0x7f030039 +int attr behavior_overlapTop 0x7f03003a +int attr behavior_peekHeight 0x7f03003b +int attr behavior_skipCollapsed 0x7f03003c +int attr borderWidth 0x7f03003d +int attr borderlessButtonStyle 0x7f03003e +int attr bottomAppBarStyle 0x7f03003f +int attr bottomNavigationStyle 0x7f030040 +int attr bottomSheetDialogTheme 0x7f030041 +int attr bottomSheetStyle 0x7f030042 +int attr boxBackgroundColor 0x7f030043 +int attr boxBackgroundMode 0x7f030044 +int attr boxCollapsedPaddingTop 0x7f030045 +int attr boxCornerRadiusBottomEnd 0x7f030046 +int attr boxCornerRadiusBottomStart 0x7f030047 +int attr boxCornerRadiusTopEnd 0x7f030048 +int attr boxCornerRadiusTopStart 0x7f030049 +int attr boxStrokeColor 0x7f03004a +int attr boxStrokeWidth 0x7f03004b +int attr buttonBarButtonStyle 0x7f03004c +int attr buttonBarNegativeButtonStyle 0x7f03004d +int attr buttonBarNeutralButtonStyle 0x7f03004e +int attr buttonBarPositiveButtonStyle 0x7f03004f +int attr buttonBarStyle 0x7f030050 +int attr buttonGravity 0x7f030051 +int attr buttonIconDimen 0x7f030052 +int attr buttonPanelSideLayout 0x7f030053 +int attr buttonStyle 0x7f030054 +int attr buttonStyleSmall 0x7f030055 +int attr buttonTint 0x7f030056 +int attr buttonTintMode 0x7f030057 +int attr cardBackgroundColor 0x7f030058 +int attr cardCornerRadius 0x7f030059 +int attr cardElevation 0x7f03005a +int attr cardMaxElevation 0x7f03005b +int attr cardPreventCornerOverlap 0x7f03005c +int attr cardUseCompatPadding 0x7f03005d +int attr cardViewStyle 0x7f03005e +int attr checkboxStyle 0x7f03005f +int attr checkedChip 0x7f030060 +int attr checkedIcon 0x7f030061 +int attr checkedIconEnabled 0x7f030062 +int attr checkedIconVisible 0x7f030063 +int attr checkedTextViewStyle 0x7f030064 +int attr chipBackgroundColor 0x7f030065 +int attr chipCornerRadius 0x7f030066 +int attr chipEndPadding 0x7f030067 +int attr chipGroupStyle 0x7f030068 +int attr chipIcon 0x7f030069 +int attr chipIconEnabled 0x7f03006a +int attr chipIconSize 0x7f03006b +int attr chipIconTint 0x7f03006c +int attr chipIconVisible 0x7f03006d +int attr chipMinHeight 0x7f03006e +int attr chipSpacing 0x7f03006f +int attr chipSpacingHorizontal 0x7f030070 +int attr chipSpacingVertical 0x7f030071 +int attr chipStandaloneStyle 0x7f030072 +int attr chipStartPadding 0x7f030073 +int attr chipStrokeColor 0x7f030074 +int attr chipStrokeWidth 0x7f030075 +int attr chipStyle 0x7f030076 +int attr closeIcon 0x7f030077 +int attr closeIconEnabled 0x7f030078 +int attr closeIconEndPadding 0x7f030079 +int attr closeIconSize 0x7f03007a +int attr closeIconStartPadding 0x7f03007b +int attr closeIconTint 0x7f03007c +int attr closeIconVisible 0x7f03007d +int attr closeItemLayout 0x7f03007e +int attr collapseContentDescription 0x7f03007f +int attr collapseIcon 0x7f030080 +int attr collapsedTitleGravity 0x7f030081 +int attr collapsedTitleTextAppearance 0x7f030082 +int attr color 0x7f030083 +int attr colorAccent 0x7f030084 +int attr colorBackgroundFloating 0x7f030085 +int attr colorButtonNormal 0x7f030086 +int attr colorControlActivated 0x7f030087 +int attr colorControlHighlight 0x7f030088 +int attr colorControlNormal 0x7f030089 +int attr colorError 0x7f03008a +int attr colorPrimary 0x7f03008b +int attr colorPrimaryDark 0x7f03008c +int attr colorSecondary 0x7f03008d +int attr colorSwitchThumbNormal 0x7f03008e +int attr commitIcon 0x7f03008f +int attr contentDescription 0x7f030090 +int attr contentInsetEnd 0x7f030091 +int attr contentInsetEndWithActions 0x7f030092 +int attr contentInsetLeft 0x7f030093 +int attr contentInsetRight 0x7f030094 +int attr contentInsetStart 0x7f030095 +int attr contentInsetStartWithNavigation 0x7f030096 +int attr contentPadding 0x7f030097 +int attr contentPaddingBottom 0x7f030098 +int attr contentPaddingLeft 0x7f030099 +int attr contentPaddingRight 0x7f03009a +int attr contentPaddingTop 0x7f03009b +int attr contentScrim 0x7f03009c +int attr controlBackground 0x7f03009d +int attr coordinatorLayoutStyle 0x7f03009e +int attr cornerRadius 0x7f03009f +int attr counterEnabled 0x7f0300a0 +int attr counterMaxLength 0x7f0300a1 +int attr counterOverflowTextAppearance 0x7f0300a2 +int attr counterTextAppearance 0x7f0300a3 +int attr customNavigationLayout 0x7f0300a4 +int attr defaultQueryHint 0x7f0300a5 +int attr dialogCornerRadius 0x7f0300a6 +int attr dialogPreferredPadding 0x7f0300a7 +int attr dialogTheme 0x7f0300a8 +int attr displayOptions 0x7f0300a9 +int attr divider 0x7f0300aa +int attr dividerHorizontal 0x7f0300ab +int attr dividerPadding 0x7f0300ac +int attr dividerVertical 0x7f0300ad +int attr drawableSize 0x7f0300ae +int attr drawerArrowStyle 0x7f0300af +int attr dropDownListViewStyle 0x7f0300b0 +int attr dropdownListPreferredItemHeight 0x7f0300b1 +int attr editTextBackground 0x7f0300b2 +int attr editTextColor 0x7f0300b3 +int attr editTextStyle 0x7f0300b4 +int attr elevation 0x7f0300b5 +int attr enforceMaterialTheme 0x7f0300b6 +int attr enforceTextAppearance 0x7f0300b7 +int attr errorEnabled 0x7f0300b8 +int attr errorTextAppearance 0x7f0300b9 +int attr expandActivityOverflowButtonDrawable 0x7f0300ba +int attr expanded 0x7f0300bb +int attr expandedTitleGravity 0x7f0300bc +int attr expandedTitleMargin 0x7f0300bd +int attr expandedTitleMarginBottom 0x7f0300be +int attr expandedTitleMarginEnd 0x7f0300bf +int attr expandedTitleMarginStart 0x7f0300c0 +int attr expandedTitleMarginTop 0x7f0300c1 +int attr expandedTitleTextAppearance 0x7f0300c2 +int attr fabAlignmentMode 0x7f0300c3 +int attr fabCradleMargin 0x7f0300c4 +int attr fabCradleRoundedCornerRadius 0x7f0300c5 +int attr fabCradleVerticalOffset 0x7f0300c6 +int attr fabCustomSize 0x7f0300c7 +int attr fabSize 0x7f0300c8 +int attr fastScrollEnabled 0x7f0300c9 +int attr fastScrollHorizontalThumbDrawable 0x7f0300ca +int attr fastScrollHorizontalTrackDrawable 0x7f0300cb +int attr fastScrollVerticalThumbDrawable 0x7f0300cc +int attr fastScrollVerticalTrackDrawable 0x7f0300cd +int attr firstBaselineToTopHeight 0x7f0300ce +int attr floatingActionButtonStyle 0x7f0300cf +int attr font 0x7f0300d0 +int attr fontFamily 0x7f0300d1 +int attr fontProviderAuthority 0x7f0300d2 +int attr fontProviderCerts 0x7f0300d3 +int attr fontProviderFetchStrategy 0x7f0300d4 +int attr fontProviderFetchTimeout 0x7f0300d5 +int attr fontProviderPackage 0x7f0300d6 +int attr fontProviderQuery 0x7f0300d7 +int attr fontStyle 0x7f0300d8 +int attr fontVariationSettings 0x7f0300d9 +int attr fontWeight 0x7f0300da +int attr foregroundInsidePadding 0x7f0300db +int attr gapBetweenBars 0x7f0300dc +int attr goIcon 0x7f0300dd +int attr headerLayout 0x7f0300de +int attr height 0x7f0300df +int attr helperText 0x7f0300e0 +int attr helperTextEnabled 0x7f0300e1 +int attr helperTextTextAppearance 0x7f0300e2 +int attr hideMotionSpec 0x7f0300e3 +int attr hideOnContentScroll 0x7f0300e4 +int attr hideOnScroll 0x7f0300e5 +int attr hintAnimationEnabled 0x7f0300e6 +int attr hintEnabled 0x7f0300e7 +int attr hintTextAppearance 0x7f0300e8 +int attr homeAsUpIndicator 0x7f0300e9 +int attr homeLayout 0x7f0300ea +int attr hoveredFocusedTranslationZ 0x7f0300eb +int attr icon 0x7f0300ec +int attr iconEndPadding 0x7f0300ed +int attr iconGravity 0x7f0300ee +int attr iconPadding 0x7f0300ef +int attr iconSize 0x7f0300f0 +int attr iconStartPadding 0x7f0300f1 +int attr iconTint 0x7f0300f2 +int attr iconTintMode 0x7f0300f3 +int attr iconifiedByDefault 0x7f0300f4 +int attr imageButtonStyle 0x7f0300f5 +int attr indeterminateProgressStyle 0x7f0300f6 +int attr initialActivityCount 0x7f0300f7 +int attr insetForeground 0x7f0300f8 +int attr isLightTheme 0x7f0300f9 +int attr itemBackground 0x7f0300fa +int attr itemHorizontalPadding 0x7f0300fb +int attr itemHorizontalTranslationEnabled 0x7f0300fc +int attr itemIconPadding 0x7f0300fd +int attr itemIconSize 0x7f0300fe +int attr itemIconTint 0x7f0300ff +int attr itemPadding 0x7f030100 +int attr itemSpacing 0x7f030101 +int attr itemTextAppearance 0x7f030102 +int attr itemTextAppearanceActive 0x7f030103 +int attr itemTextAppearanceInactive 0x7f030104 +int attr itemTextColor 0x7f030105 +int attr keylines 0x7f030106 +int attr labelVisibilityMode 0x7f030107 +int attr lastBaselineToBottomHeight 0x7f030108 +int attr layout 0x7f030109 +int attr layoutManager 0x7f03010a +int attr layout_anchor 0x7f03010b +int attr layout_anchorGravity 0x7f03010c +int attr layout_behavior 0x7f03010d +int attr layout_collapseMode 0x7f03010e +int attr layout_collapseParallaxMultiplier 0x7f03010f +int attr layout_dodgeInsetEdges 0x7f030110 +int attr layout_insetEdge 0x7f030111 +int attr layout_keyline 0x7f030112 +int attr layout_scrollFlags 0x7f030113 +int attr layout_scrollInterpolator 0x7f030114 +int attr liftOnScroll 0x7f030115 +int attr lineHeight 0x7f030116 +int attr lineSpacing 0x7f030117 +int attr listChoiceBackgroundIndicator 0x7f030118 +int attr listDividerAlertDialog 0x7f030119 +int attr listItemLayout 0x7f03011a +int attr listLayout 0x7f03011b +int attr listMenuViewStyle 0x7f03011c +int attr listPopupWindowStyle 0x7f03011d +int attr listPreferredItemHeight 0x7f03011e +int attr listPreferredItemHeightLarge 0x7f03011f +int attr listPreferredItemHeightSmall 0x7f030120 +int attr listPreferredItemPaddingLeft 0x7f030121 +int attr listPreferredItemPaddingRight 0x7f030122 +int attr logo 0x7f030123 +int attr logoDescription 0x7f030124 +int attr materialButtonStyle 0x7f030125 +int attr materialCardViewStyle 0x7f030126 +int attr maxActionInlineWidth 0x7f030127 +int attr maxButtonHeight 0x7f030128 +int attr maxImageSize 0x7f030129 +int attr measureWithLargestChild 0x7f03012a +int attr menu 0x7f03012b +int attr multiChoiceItemLayout 0x7f03012c +int attr navigationContentDescription 0x7f03012d +int attr navigationIcon 0x7f03012e +int attr navigationMode 0x7f03012f +int attr navigationViewStyle 0x7f030130 +int attr numericModifiers 0x7f030131 +int attr overlapAnchor 0x7f030132 +int attr paddingBottomNoButtons 0x7f030133 +int attr paddingEnd 0x7f030134 +int attr paddingStart 0x7f030135 +int attr paddingTopNoTitle 0x7f030136 +int attr panelBackground 0x7f030137 +int attr panelMenuListTheme 0x7f030138 +int attr panelMenuListWidth 0x7f030139 +int attr passwordToggleContentDescription 0x7f03013a +int attr passwordToggleDrawable 0x7f03013b +int attr passwordToggleEnabled 0x7f03013c +int attr passwordToggleTint 0x7f03013d +int attr passwordToggleTintMode 0x7f03013e +int attr popupMenuStyle 0x7f03013f +int attr popupTheme 0x7f030140 +int attr popupWindowStyle 0x7f030141 +int attr preserveIconSpacing 0x7f030142 +int attr pressedTranslationZ 0x7f030143 +int attr progressBarPadding 0x7f030144 +int attr progressBarStyle 0x7f030145 +int attr queryBackground 0x7f030146 +int attr queryHint 0x7f030147 +int attr radioButtonStyle 0x7f030148 +int attr ratingBarStyle 0x7f030149 +int attr ratingBarStyleIndicator 0x7f03014a +int attr ratingBarStyleSmall 0x7f03014b +int attr reverseLayout 0x7f03014c +int attr rippleColor 0x7f03014d +int attr scrimAnimationDuration 0x7f03014e +int attr scrimBackground 0x7f03014f +int attr scrimVisibleHeightTrigger 0x7f030150 +int attr searchHintIcon 0x7f030151 +int attr searchIcon 0x7f030152 +int attr searchViewStyle 0x7f030153 +int attr seekBarStyle 0x7f030154 +int attr selectableItemBackground 0x7f030155 +int attr selectableItemBackgroundBorderless 0x7f030156 +int attr showAsAction 0x7f030157 +int attr showDividers 0x7f030158 +int attr showMotionSpec 0x7f030159 +int attr showText 0x7f03015a +int attr showTitle 0x7f03015b +int attr singleChoiceItemLayout 0x7f03015c +int attr singleLine 0x7f03015d +int attr singleSelection 0x7f03015e +int attr snackbarButtonStyle 0x7f03015f +int attr snackbarStyle 0x7f030160 +int attr spanCount 0x7f030161 +int attr spinBars 0x7f030162 +int attr spinnerDropDownItemStyle 0x7f030163 +int attr spinnerStyle 0x7f030164 +int attr splitTrack 0x7f030165 +int attr srcCompat 0x7f030166 +int attr stackFromEnd 0x7f030167 +int attr state_above_anchor 0x7f030168 +int attr state_collapsed 0x7f030169 +int attr state_collapsible 0x7f03016a +int attr state_liftable 0x7f03016b +int attr state_lifted 0x7f03016c +int attr statusBarBackground 0x7f03016d +int attr statusBarScrim 0x7f03016e +int attr strokeColor 0x7f03016f +int attr strokeWidth 0x7f030170 +int attr subMenuArrow 0x7f030171 +int attr submitBackground 0x7f030172 +int attr subtitle 0x7f030173 +int attr subtitleTextAppearance 0x7f030174 +int attr subtitleTextColor 0x7f030175 +int attr subtitleTextStyle 0x7f030176 +int attr suggestionRowLayout 0x7f030177 +int attr switchMinWidth 0x7f030178 +int attr switchPadding 0x7f030179 +int attr switchStyle 0x7f03017a +int attr switchTextAppearance 0x7f03017b +int attr tabBackground 0x7f03017c +int attr tabContentStart 0x7f03017d +int attr tabGravity 0x7f03017e +int attr tabIconTint 0x7f03017f +int attr tabIconTintMode 0x7f030180 +int attr tabIndicator 0x7f030181 +int attr tabIndicatorAnimationDuration 0x7f030182 +int attr tabIndicatorColor 0x7f030183 +int attr tabIndicatorFullWidth 0x7f030184 +int attr tabIndicatorGravity 0x7f030185 +int attr tabIndicatorHeight 0x7f030186 +int attr tabInlineLabel 0x7f030187 +int attr tabMaxWidth 0x7f030188 +int attr tabMinWidth 0x7f030189 +int attr tabMode 0x7f03018a +int attr tabPadding 0x7f03018b +int attr tabPaddingBottom 0x7f03018c +int attr tabPaddingEnd 0x7f03018d +int attr tabPaddingStart 0x7f03018e +int attr tabPaddingTop 0x7f03018f +int attr tabRippleColor 0x7f030190 +int attr tabSelectedTextColor 0x7f030191 +int attr tabStyle 0x7f030192 +int attr tabTextAppearance 0x7f030193 +int attr tabTextColor 0x7f030194 +int attr tabUnboundedRipple 0x7f030195 +int attr textAllCaps 0x7f030196 +int attr textAppearanceBody1 0x7f030197 +int attr textAppearanceBody2 0x7f030198 +int attr textAppearanceButton 0x7f030199 +int attr textAppearanceCaption 0x7f03019a +int attr textAppearanceHeadline1 0x7f03019b +int attr textAppearanceHeadline2 0x7f03019c +int attr textAppearanceHeadline3 0x7f03019d +int attr textAppearanceHeadline4 0x7f03019e +int attr textAppearanceHeadline5 0x7f03019f +int attr textAppearanceHeadline6 0x7f0301a0 +int attr textAppearanceLargePopupMenu 0x7f0301a1 +int attr textAppearanceListItem 0x7f0301a2 +int attr textAppearanceListItemSecondary 0x7f0301a3 +int attr textAppearanceListItemSmall 0x7f0301a4 +int attr textAppearanceOverline 0x7f0301a5 +int attr textAppearancePopupMenuHeader 0x7f0301a6 +int attr textAppearanceSearchResultSubtitle 0x7f0301a7 +int attr textAppearanceSearchResultTitle 0x7f0301a8 +int attr textAppearanceSmallPopupMenu 0x7f0301a9 +int attr textAppearanceSubtitle1 0x7f0301aa +int attr textAppearanceSubtitle2 0x7f0301ab +int attr textColorAlertDialogListItem 0x7f0301ac +int attr textColorSearchUrl 0x7f0301ad +int attr textEndPadding 0x7f0301ae +int attr textInputStyle 0x7f0301af +int attr textStartPadding 0x7f0301b0 +int attr theme 0x7f0301b1 +int attr thickness 0x7f0301b2 +int attr thumbTextPadding 0x7f0301b3 +int attr thumbTint 0x7f0301b4 +int attr thumbTintMode 0x7f0301b5 +int attr tickMark 0x7f0301b6 +int attr tickMarkTint 0x7f0301b7 +int attr tickMarkTintMode 0x7f0301b8 +int attr tint 0x7f0301b9 +int attr tintMode 0x7f0301ba +int attr title 0x7f0301bb +int attr titleEnabled 0x7f0301bc +int attr titleMargin 0x7f0301bd +int attr titleMarginBottom 0x7f0301be +int attr titleMarginEnd 0x7f0301bf +int attr titleMarginStart 0x7f0301c0 +int attr titleMarginTop 0x7f0301c1 +int attr titleMargins 0x7f0301c2 +int attr titleTextAppearance 0x7f0301c3 +int attr titleTextColor 0x7f0301c4 +int attr titleTextStyle 0x7f0301c5 +int attr toolbarId 0x7f0301c6 +int attr toolbarNavigationButtonStyle 0x7f0301c7 +int attr toolbarStyle 0x7f0301c8 +int attr tooltipForegroundColor 0x7f0301c9 +int attr tooltipFrameBackground 0x7f0301ca +int attr tooltipText 0x7f0301cb +int attr track 0x7f0301cc +int attr trackTint 0x7f0301cd +int attr trackTintMode 0x7f0301ce +int attr ttcIndex 0x7f0301cf +int attr useCompatPadding 0x7f0301d0 +int attr viewInflaterClass 0x7f0301d1 +int attr voiceIcon 0x7f0301d2 +int attr windowActionBar 0x7f0301d3 +int attr windowActionBarOverlay 0x7f0301d4 +int attr windowActionModeOverlay 0x7f0301d5 +int attr windowFixedHeightMajor 0x7f0301d6 +int attr windowFixedHeightMinor 0x7f0301d7 +int attr windowFixedWidthMajor 0x7f0301d8 +int attr windowFixedWidthMinor 0x7f0301d9 +int attr windowMinWidthMajor 0x7f0301da +int attr windowMinWidthMinor 0x7f0301db +int attr windowNoTitle 0x7f0301dc +int bool abc_action_bar_embed_tabs 0x7f040000 +int bool abc_allow_stacked_button_bar 0x7f040001 +int bool abc_config_actionMenuItemAllCaps 0x7f040002 +int bool mtrl_btn_textappearance_all_caps 0x7f040003 +int color abc_background_cache_hint_selector_material_dark 0x7f050000 +int color abc_background_cache_hint_selector_material_light 0x7f050001 +int color abc_btn_colored_borderless_text_material 0x7f050002 +int color abc_btn_colored_text_material 0x7f050003 +int color abc_color_highlight_material 0x7f050004 +int color abc_hint_foreground_material_dark 0x7f050005 +int color abc_hint_foreground_material_light 0x7f050006 +int color abc_input_method_navigation_guard 0x7f050007 +int color abc_primary_text_disable_only_material_dark 0x7f050008 +int color abc_primary_text_disable_only_material_light 0x7f050009 +int color abc_primary_text_material_dark 0x7f05000a +int color abc_primary_text_material_light 0x7f05000b +int color abc_search_url_text 0x7f05000c +int color abc_search_url_text_normal 0x7f05000d +int color abc_search_url_text_pressed 0x7f05000e +int color abc_search_url_text_selected 0x7f05000f +int color abc_secondary_text_material_dark 0x7f050010 +int color abc_secondary_text_material_light 0x7f050011 +int color abc_tint_btn_checkable 0x7f050012 +int color abc_tint_default 0x7f050013 +int color abc_tint_edittext 0x7f050014 +int color abc_tint_seek_thumb 0x7f050015 +int color abc_tint_spinner 0x7f050016 +int color abc_tint_switch_track 0x7f050017 +int color accent 0x7f050018 +int color accent_material_dark 0x7f050019 +int color accent_material_light 0x7f05001a +int color background_floating_material_dark 0x7f05001b +int color background_floating_material_light 0x7f05001c +int color background_material_dark 0x7f05001d +int color background_material_light 0x7f05001e +int color bright_foreground_disabled_material_dark 0x7f05001f +int color bright_foreground_disabled_material_light 0x7f050020 +int color bright_foreground_inverse_material_dark 0x7f050021 +int color bright_foreground_inverse_material_light 0x7f050022 +int color bright_foreground_material_dark 0x7f050023 +int color bright_foreground_material_light 0x7f050024 +int color button_material_dark 0x7f050025 +int color button_material_light 0x7f050026 +int color cardview_dark_background 0x7f050027 +int color cardview_light_background 0x7f050028 +int color cardview_shadow_end_color 0x7f050029 +int color cardview_shadow_start_color 0x7f05002a +int color design_bottom_navigation_shadow_color 0x7f05002b +int color design_default_color_primary 0x7f05002c +int color design_default_color_primary_dark 0x7f05002d +int color design_error 0x7f05002e +int color design_fab_shadow_end_color 0x7f05002f +int color design_fab_shadow_mid_color 0x7f050030 +int color design_fab_shadow_start_color 0x7f050031 +int color design_fab_stroke_end_inner_color 0x7f050032 +int color design_fab_stroke_end_outer_color 0x7f050033 +int color design_fab_stroke_top_inner_color 0x7f050034 +int color design_fab_stroke_top_outer_color 0x7f050035 +int color design_snackbar_background_color 0x7f050036 +int color design_tint_password_toggle 0x7f050037 +int color dim_foreground_disabled_material_dark 0x7f050038 +int color dim_foreground_disabled_material_light 0x7f050039 +int color dim_foreground_material_dark 0x7f05003a +int color dim_foreground_material_light 0x7f05003b +int color divider 0x7f05003c +int color error_color_material_dark 0x7f05003d +int color error_color_material_light 0x7f05003e +int color foreground_material_dark 0x7f05003f +int color foreground_material_light 0x7f050040 +int color highlighted_text_material_dark 0x7f050041 +int color highlighted_text_material_light 0x7f050042 +int color icons 0x7f050043 +int color material_blue_grey_800 0x7f050044 +int color material_blue_grey_900 0x7f050045 +int color material_blue_grey_950 0x7f050046 +int color material_deep_teal_200 0x7f050047 +int color material_deep_teal_500 0x7f050048 +int color material_grey_100 0x7f050049 +int color material_grey_300 0x7f05004a +int color material_grey_50 0x7f05004b +int color material_grey_600 0x7f05004c +int color material_grey_800 0x7f05004d +int color material_grey_850 0x7f05004e +int color material_grey_900 0x7f05004f +int color mtrl_bottom_nav_colored_item_tint 0x7f050050 +int color mtrl_bottom_nav_item_tint 0x7f050051 +int color mtrl_btn_bg_color_disabled 0x7f050052 +int color mtrl_btn_bg_color_selector 0x7f050053 +int color mtrl_btn_ripple_color 0x7f050054 +int color mtrl_btn_stroke_color_selector 0x7f050055 +int color mtrl_btn_text_btn_ripple_color 0x7f050056 +int color mtrl_btn_text_color_disabled 0x7f050057 +int color mtrl_btn_text_color_selector 0x7f050058 +int color mtrl_btn_transparent_bg_color 0x7f050059 +int color mtrl_chip_background_color 0x7f05005a +int color mtrl_chip_close_icon_tint 0x7f05005b +int color mtrl_chip_ripple_color 0x7f05005c +int color mtrl_chip_text_color 0x7f05005d +int color mtrl_fab_ripple_color 0x7f05005e +int color mtrl_scrim_color 0x7f05005f +int color mtrl_tabs_colored_ripple_color 0x7f050060 +int color mtrl_tabs_icon_color_selector 0x7f050061 +int color mtrl_tabs_icon_color_selector_colored 0x7f050062 +int color mtrl_tabs_legacy_text_color_selector 0x7f050063 +int color mtrl_tabs_ripple_color 0x7f050064 +int color mtrl_text_btn_text_color_selector 0x7f050065 +int color mtrl_textinput_default_box_stroke_color 0x7f050066 +int color mtrl_textinput_disabled_color 0x7f050067 +int color mtrl_textinput_filled_box_default_background_color 0x7f050068 +int color mtrl_textinput_hovered_box_stroke_color 0x7f050069 +int color notification_action_color_filter 0x7f05006a +int color notification_icon_bg_color 0x7f05006b +int color notification_material_background_media_default_color 0x7f05006c +int color primary 0x7f05006d +int color primary_dark 0x7f05006e +int color primary_dark_material_dark 0x7f05006f +int color primary_dark_material_light 0x7f050070 +int color primary_light 0x7f050071 +int color primary_material_dark 0x7f050072 +int color primary_material_light 0x7f050073 +int color primary_text 0x7f050074 +int color primary_text_default_material_dark 0x7f050075 +int color primary_text_default_material_light 0x7f050076 +int color primary_text_disabled_material_dark 0x7f050077 +int color primary_text_disabled_material_light 0x7f050078 +int color ripple_material_dark 0x7f050079 +int color ripple_material_light 0x7f05007a +int color secondary_text 0x7f05007b +int color secondary_text_default_material_dark 0x7f05007c +int color secondary_text_default_material_light 0x7f05007d +int color secondary_text_disabled_material_dark 0x7f05007e +int color secondary_text_disabled_material_light 0x7f05007f +int color switch_thumb_disabled_material_dark 0x7f050080 +int color switch_thumb_disabled_material_light 0x7f050081 +int color switch_thumb_material_dark 0x7f050082 +int color switch_thumb_material_light 0x7f050083 +int color switch_thumb_normal_material_dark 0x7f050084 +int color switch_thumb_normal_material_light 0x7f050085 +int color tooltip_background_dark 0x7f050086 +int color tooltip_background_light 0x7f050087 +int dimen abc_action_bar_content_inset_material 0x7f060000 +int dimen abc_action_bar_content_inset_with_nav 0x7f060001 +int dimen abc_action_bar_default_height_material 0x7f060002 +int dimen abc_action_bar_default_padding_end_material 0x7f060003 +int dimen abc_action_bar_default_padding_start_material 0x7f060004 +int dimen abc_action_bar_elevation_material 0x7f060005 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f060006 +int dimen abc_action_bar_overflow_padding_end_material 0x7f060007 +int dimen abc_action_bar_overflow_padding_start_material 0x7f060008 +int dimen abc_action_bar_stacked_max_height 0x7f060009 +int dimen abc_action_bar_stacked_tab_max_width 0x7f06000a +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06000b +int dimen abc_action_bar_subtitle_top_margin_material 0x7f06000c +int dimen abc_action_button_min_height_material 0x7f06000d +int dimen abc_action_button_min_width_material 0x7f06000e +int dimen abc_action_button_min_width_overflow_material 0x7f06000f +int dimen abc_alert_dialog_button_bar_height 0x7f060010 +int dimen abc_alert_dialog_button_dimen 0x7f060011 +int dimen abc_button_inset_horizontal_material 0x7f060012 +int dimen abc_button_inset_vertical_material 0x7f060013 +int dimen abc_button_padding_horizontal_material 0x7f060014 +int dimen abc_button_padding_vertical_material 0x7f060015 +int dimen abc_cascading_menus_min_smallest_width 0x7f060016 +int dimen abc_config_prefDialogWidth 0x7f060017 +int dimen abc_control_corner_material 0x7f060018 +int dimen abc_control_inset_material 0x7f060019 +int dimen abc_control_padding_material 0x7f06001a +int dimen abc_dialog_corner_radius_material 0x7f06001b +int dimen abc_dialog_fixed_height_major 0x7f06001c +int dimen abc_dialog_fixed_height_minor 0x7f06001d +int dimen abc_dialog_fixed_width_major 0x7f06001e +int dimen abc_dialog_fixed_width_minor 0x7f06001f +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060020 +int dimen abc_dialog_list_padding_top_no_title 0x7f060021 +int dimen abc_dialog_min_width_major 0x7f060022 +int dimen abc_dialog_min_width_minor 0x7f060023 +int dimen abc_dialog_padding_material 0x7f060024 +int dimen abc_dialog_padding_top_material 0x7f060025 +int dimen abc_dialog_title_divider_material 0x7f060026 +int dimen abc_disabled_alpha_material_dark 0x7f060027 +int dimen abc_disabled_alpha_material_light 0x7f060028 +int dimen abc_dropdownitem_icon_width 0x7f060029 +int dimen abc_dropdownitem_text_padding_left 0x7f06002a +int dimen abc_dropdownitem_text_padding_right 0x7f06002b +int dimen abc_edit_text_inset_bottom_material 0x7f06002c +int dimen abc_edit_text_inset_horizontal_material 0x7f06002d +int dimen abc_edit_text_inset_top_material 0x7f06002e +int dimen abc_floating_window_z 0x7f06002f +int dimen abc_list_item_padding_horizontal_material 0x7f060030 +int dimen abc_panel_menu_list_width 0x7f060031 +int dimen abc_progress_bar_height_material 0x7f060032 +int dimen abc_search_view_preferred_height 0x7f060033 +int dimen abc_search_view_preferred_width 0x7f060034 +int dimen abc_seekbar_track_background_height_material 0x7f060035 +int dimen abc_seekbar_track_progress_height_material 0x7f060036 +int dimen abc_select_dialog_padding_start_material 0x7f060037 +int dimen abc_switch_padding 0x7f060038 +int dimen abc_text_size_body_1_material 0x7f060039 +int dimen abc_text_size_body_2_material 0x7f06003a +int dimen abc_text_size_button_material 0x7f06003b +int dimen abc_text_size_caption_material 0x7f06003c +int dimen abc_text_size_display_1_material 0x7f06003d +int dimen abc_text_size_display_2_material 0x7f06003e +int dimen abc_text_size_display_3_material 0x7f06003f +int dimen abc_text_size_display_4_material 0x7f060040 +int dimen abc_text_size_headline_material 0x7f060041 +int dimen abc_text_size_large_material 0x7f060042 +int dimen abc_text_size_medium_material 0x7f060043 +int dimen abc_text_size_menu_header_material 0x7f060044 +int dimen abc_text_size_menu_material 0x7f060045 +int dimen abc_text_size_small_material 0x7f060046 +int dimen abc_text_size_subhead_material 0x7f060047 +int dimen abc_text_size_subtitle_material_toolbar 0x7f060048 +int dimen abc_text_size_title_material 0x7f060049 +int dimen abc_text_size_title_material_toolbar 0x7f06004a +int dimen cardview_compat_inset_shadow 0x7f06004b +int dimen cardview_default_elevation 0x7f06004c +int dimen cardview_default_radius 0x7f06004d +int dimen compat_button_inset_horizontal_material 0x7f06004e +int dimen compat_button_inset_vertical_material 0x7f06004f +int dimen compat_button_padding_horizontal_material 0x7f060050 +int dimen compat_button_padding_vertical_material 0x7f060051 +int dimen compat_control_corner_material 0x7f060052 +int dimen compat_notification_large_icon_max_height 0x7f060053 +int dimen compat_notification_large_icon_max_width 0x7f060054 +int dimen design_appbar_elevation 0x7f060055 +int dimen design_bottom_navigation_active_item_max_width 0x7f060056 +int dimen design_bottom_navigation_active_item_min_width 0x7f060057 +int dimen design_bottom_navigation_active_text_size 0x7f060058 +int dimen design_bottom_navigation_elevation 0x7f060059 +int dimen design_bottom_navigation_height 0x7f06005a +int dimen design_bottom_navigation_icon_size 0x7f06005b +int dimen design_bottom_navigation_item_max_width 0x7f06005c +int dimen design_bottom_navigation_item_min_width 0x7f06005d +int dimen design_bottom_navigation_margin 0x7f06005e +int dimen design_bottom_navigation_shadow_height 0x7f06005f +int dimen design_bottom_navigation_text_size 0x7f060060 +int dimen design_bottom_sheet_modal_elevation 0x7f060061 +int dimen design_bottom_sheet_peek_height_min 0x7f060062 +int dimen design_fab_border_width 0x7f060063 +int dimen design_fab_elevation 0x7f060064 +int dimen design_fab_image_size 0x7f060065 +int dimen design_fab_size_mini 0x7f060066 +int dimen design_fab_size_normal 0x7f060067 +int dimen design_fab_translation_z_hovered_focused 0x7f060068 +int dimen design_fab_translation_z_pressed 0x7f060069 +int dimen design_navigation_elevation 0x7f06006a +int dimen design_navigation_icon_padding 0x7f06006b +int dimen design_navigation_icon_size 0x7f06006c +int dimen design_navigation_item_horizontal_padding 0x7f06006d +int dimen design_navigation_item_icon_padding 0x7f06006e +int dimen design_navigation_max_width 0x7f06006f +int dimen design_navigation_padding_bottom 0x7f060070 +int dimen design_navigation_separator_vertical_padding 0x7f060071 +int dimen design_snackbar_action_inline_max_width 0x7f060072 +int dimen design_snackbar_background_corner_radius 0x7f060073 +int dimen design_snackbar_elevation 0x7f060074 +int dimen design_snackbar_extra_spacing_horizontal 0x7f060075 +int dimen design_snackbar_max_width 0x7f060076 +int dimen design_snackbar_min_width 0x7f060077 +int dimen design_snackbar_padding_horizontal 0x7f060078 +int dimen design_snackbar_padding_vertical 0x7f060079 +int dimen design_snackbar_padding_vertical_2lines 0x7f06007a +int dimen design_snackbar_text_size 0x7f06007b +int dimen design_tab_max_width 0x7f06007c +int dimen design_tab_scrollable_min_width 0x7f06007d +int dimen design_tab_text_size 0x7f06007e +int dimen design_tab_text_size_2line 0x7f06007f +int dimen design_textinput_caption_translate_y 0x7f060080 +int dimen disabled_alpha_material_dark 0x7f060081 +int dimen disabled_alpha_material_light 0x7f060082 +int dimen fastscroll_default_thickness 0x7f060083 +int dimen fastscroll_margin 0x7f060084 +int dimen fastscroll_minimum_range 0x7f060085 +int dimen highlight_alpha_material_colored 0x7f060086 +int dimen highlight_alpha_material_dark 0x7f060087 +int dimen highlight_alpha_material_light 0x7f060088 +int dimen hint_alpha_material_dark 0x7f060089 +int dimen hint_alpha_material_light 0x7f06008a +int dimen hint_pressed_alpha_material_dark 0x7f06008b +int dimen hint_pressed_alpha_material_light 0x7f06008c +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f06008d +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f06008e +int dimen item_touch_helper_swipe_escape_velocity 0x7f06008f +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f060090 +int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f060091 +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f060092 +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f060093 +int dimen mtrl_bottomappbar_height 0x7f060094 +int dimen mtrl_btn_corner_radius 0x7f060095 +int dimen mtrl_btn_dialog_btn_min_width 0x7f060096 +int dimen mtrl_btn_disabled_elevation 0x7f060097 +int dimen mtrl_btn_disabled_z 0x7f060098 +int dimen mtrl_btn_elevation 0x7f060099 +int dimen mtrl_btn_focused_z 0x7f06009a +int dimen mtrl_btn_hovered_z 0x7f06009b +int dimen mtrl_btn_icon_btn_padding_left 0x7f06009c +int dimen mtrl_btn_icon_padding 0x7f06009d +int dimen mtrl_btn_inset 0x7f06009e +int dimen mtrl_btn_letter_spacing 0x7f06009f +int dimen mtrl_btn_padding_bottom 0x7f0600a0 +int dimen mtrl_btn_padding_left 0x7f0600a1 +int dimen mtrl_btn_padding_right 0x7f0600a2 +int dimen mtrl_btn_padding_top 0x7f0600a3 +int dimen mtrl_btn_pressed_z 0x7f0600a4 +int dimen mtrl_btn_stroke_size 0x7f0600a5 +int dimen mtrl_btn_text_btn_icon_padding 0x7f0600a6 +int dimen mtrl_btn_text_btn_padding_left 0x7f0600a7 +int dimen mtrl_btn_text_btn_padding_right 0x7f0600a8 +int dimen mtrl_btn_text_size 0x7f0600a9 +int dimen mtrl_btn_z 0x7f0600aa +int dimen mtrl_card_elevation 0x7f0600ab +int dimen mtrl_card_spacing 0x7f0600ac +int dimen mtrl_chip_pressed_translation_z 0x7f0600ad +int dimen mtrl_chip_text_size 0x7f0600ae +int dimen mtrl_fab_elevation 0x7f0600af +int dimen mtrl_fab_translation_z_hovered_focused 0x7f0600b0 +int dimen mtrl_fab_translation_z_pressed 0x7f0600b1 +int dimen mtrl_navigation_elevation 0x7f0600b2 +int dimen mtrl_navigation_item_horizontal_padding 0x7f0600b3 +int dimen mtrl_navigation_item_icon_padding 0x7f0600b4 +int dimen mtrl_snackbar_background_corner_radius 0x7f0600b5 +int dimen mtrl_snackbar_margin 0x7f0600b6 +int dimen mtrl_textinput_box_bottom_offset 0x7f0600b7 +int dimen mtrl_textinput_box_corner_radius_medium 0x7f0600b8 +int dimen mtrl_textinput_box_corner_radius_small 0x7f0600b9 +int dimen mtrl_textinput_box_label_cutout_padding 0x7f0600ba +int dimen mtrl_textinput_box_padding_end 0x7f0600bb +int dimen mtrl_textinput_box_stroke_width_default 0x7f0600bc +int dimen mtrl_textinput_box_stroke_width_focused 0x7f0600bd +int dimen mtrl_textinput_outline_box_expanded_padding 0x7f0600be +int dimen mtrl_toolbar_default_height 0x7f0600bf +int dimen notification_action_icon_size 0x7f0600c0 +int dimen notification_action_text_size 0x7f0600c1 +int dimen notification_big_circle_margin 0x7f0600c2 +int dimen notification_content_margin_start 0x7f0600c3 +int dimen notification_large_icon_height 0x7f0600c4 +int dimen notification_large_icon_width 0x7f0600c5 +int dimen notification_main_column_padding_top 0x7f0600c6 +int dimen notification_media_narrow_margin 0x7f0600c7 +int dimen notification_right_icon_size 0x7f0600c8 +int dimen notification_right_side_padding_top 0x7f0600c9 +int dimen notification_small_icon_background_padding 0x7f0600ca +int dimen notification_small_icon_size_as_large 0x7f0600cb +int dimen notification_subtext_size 0x7f0600cc +int dimen notification_top_pad 0x7f0600cd +int dimen notification_top_pad_large_text 0x7f0600ce +int dimen subtitle_corner_radius 0x7f0600cf +int dimen subtitle_outline_width 0x7f0600d0 +int dimen subtitle_shadow_offset 0x7f0600d1 +int dimen subtitle_shadow_radius 0x7f0600d2 +int dimen tooltip_corner_radius 0x7f0600d3 +int dimen tooltip_horizontal_padding 0x7f0600d4 +int dimen tooltip_margin 0x7f0600d5 +int dimen tooltip_precise_anchor_extra_offset 0x7f0600d6 +int dimen tooltip_precise_anchor_threshold 0x7f0600d7 +int dimen tooltip_vertical_padding 0x7f0600d8 +int dimen tooltip_y_offset_non_touch 0x7f0600d9 +int dimen tooltip_y_offset_touch 0x7f0600da +int drawable abc_ab_share_pack_mtrl_alpha 0x7f070006 +int drawable abc_action_bar_item_background_material 0x7f070007 +int drawable abc_btn_borderless_material 0x7f070008 +int drawable abc_btn_check_material 0x7f070009 +int drawable abc_btn_check_to_on_mtrl_000 0x7f07000a +int drawable abc_btn_check_to_on_mtrl_015 0x7f07000b +int drawable abc_btn_colored_material 0x7f07000c +int drawable abc_btn_default_mtrl_shape 0x7f07000d +int drawable abc_btn_radio_material 0x7f07000e +int drawable abc_btn_radio_to_on_mtrl_000 0x7f07000f +int drawable abc_btn_radio_to_on_mtrl_015 0x7f070010 +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f070011 +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f070012 +int drawable abc_cab_background_internal_bg 0x7f070013 +int drawable abc_cab_background_top_material 0x7f070014 +int drawable abc_cab_background_top_mtrl_alpha 0x7f070015 +int drawable abc_control_background_material 0x7f070016 +int drawable abc_dialog_material_background 0x7f070017 +int drawable abc_edit_text_material 0x7f070018 +int drawable abc_ic_ab_back_material 0x7f070019 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f07001a +int drawable abc_ic_clear_material 0x7f07001b +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f07001c +int drawable abc_ic_go_search_api_material 0x7f07001d +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f07001e +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f07001f +int drawable abc_ic_menu_overflow_material 0x7f070020 +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f070021 +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f070022 +int drawable abc_ic_menu_share_mtrl_alpha 0x7f070023 +int drawable abc_ic_search_api_material 0x7f070024 +int drawable abc_ic_star_black_16dp 0x7f070025 +int drawable abc_ic_star_black_36dp 0x7f070026 +int drawable abc_ic_star_black_48dp 0x7f070027 +int drawable abc_ic_star_half_black_16dp 0x7f070028 +int drawable abc_ic_star_half_black_36dp 0x7f070029 +int drawable abc_ic_star_half_black_48dp 0x7f07002a +int drawable abc_ic_voice_search_api_material 0x7f07002b +int drawable abc_item_background_holo_dark 0x7f07002c +int drawable abc_item_background_holo_light 0x7f07002d +int drawable abc_list_divider_material 0x7f07002e +int drawable abc_list_divider_mtrl_alpha 0x7f07002f +int drawable abc_list_focused_holo 0x7f070030 +int drawable abc_list_longpressed_holo 0x7f070031 +int drawable abc_list_pressed_holo_dark 0x7f070032 +int drawable abc_list_pressed_holo_light 0x7f070033 +int drawable abc_list_selector_background_transition_holo_dark 0x7f070034 +int drawable abc_list_selector_background_transition_holo_light 0x7f070035 +int drawable abc_list_selector_disabled_holo_dark 0x7f070036 +int drawable abc_list_selector_disabled_holo_light 0x7f070037 +int drawable abc_list_selector_holo_dark 0x7f070038 +int drawable abc_list_selector_holo_light 0x7f070039 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f07003a +int drawable abc_popup_background_mtrl_mult 0x7f07003b +int drawable abc_ratingbar_indicator_material 0x7f07003c +int drawable abc_ratingbar_material 0x7f07003d +int drawable abc_ratingbar_small_material 0x7f07003e +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f07003f +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f070040 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f070041 +int drawable abc_scrubber_primary_mtrl_alpha 0x7f070042 +int drawable abc_scrubber_track_mtrl_alpha 0x7f070043 +int drawable abc_seekbar_thumb_material 0x7f070044 +int drawable abc_seekbar_tick_mark_material 0x7f070045 +int drawable abc_seekbar_track_material 0x7f070046 +int drawable abc_spinner_mtrl_am_alpha 0x7f070047 +int drawable abc_spinner_textfield_background_material 0x7f070048 +int drawable abc_switch_thumb_material 0x7f070049 +int drawable abc_switch_track_mtrl_alpha 0x7f07004a +int drawable abc_tab_indicator_material 0x7f07004b +int drawable abc_tab_indicator_mtrl_alpha 0x7f07004c +int drawable abc_text_cursor_material 0x7f07004d +int drawable abc_text_select_handle_left_mtrl_dark 0x7f07004e +int drawable abc_text_select_handle_left_mtrl_light 0x7f07004f +int drawable abc_text_select_handle_middle_mtrl_dark 0x7f070050 +int drawable abc_text_select_handle_middle_mtrl_light 0x7f070051 +int drawable abc_text_select_handle_right_mtrl_dark 0x7f070052 +int drawable abc_text_select_handle_right_mtrl_light 0x7f070053 +int drawable abc_textfield_activated_mtrl_alpha 0x7f070054 +int drawable abc_textfield_default_mtrl_alpha 0x7f070055 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f070056 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f070057 +int drawable abc_textfield_search_material 0x7f070058 +int drawable abc_vector_test 0x7f070059 +int drawable avd_hide_password 0x7f07005a +int drawable avd_show_password 0x7f07005b +int drawable bg_material 0x7f07005c +int drawable design_bottom_navigation_item_background 0x7f07005d +int drawable design_fab_background 0x7f07005e +int drawable design_ic_visibility 0x7f07005f +int drawable design_ic_visibility_off 0x7f070060 +int drawable design_password_eye 0x7f070061 +int drawable design_snackbar_background 0x7f070062 +int drawable ic_call_icon 0x7f070063 +int drawable ic_cervantes 0x7f070064 +int drawable ic_chevron_left_black_48dp 0x7f070065 +int drawable ic_chevron_right_black_48dp 0x7f070066 +int drawable ic_don_quixote 0x7f070067 +int drawable ic_fritzbox 0x7f070068 +int drawable ic_fritzbox_icon 0x7f070069 +int drawable ic_lance 0x7f07006a +int drawable ic_launcher 0x7f07006b +int drawable ic_log_icon 0x7f07006c +int drawable ic_menu_white_36dp 0x7f07006d +int drawable ic_mtrl_chip_checked_black 0x7f07006e +int drawable ic_mtrl_chip_checked_circle 0x7f07006f +int drawable ic_mtrl_chip_close_circle 0x7f070070 +int drawable ic_scene_1 0x7f070071 +int drawable ic_scene_2 0x7f070072 +int drawable ic_scene_3 0x7f070073 +int drawable ic_settings_icon 0x7f070074 +int drawable ic_state_icon 0x7f070075 +int drawable ic_windmil 0x7f070076 +int drawable mtrl_snackbar_background 0x7f070077 +int drawable mtrl_tabs_default_indicator 0x7f070078 +int drawable navigation_empty_icon 0x7f070079 +int drawable notification_action_background 0x7f07007a +int drawable notification_bg 0x7f07007b +int drawable notification_bg_low 0x7f07007c +int drawable notification_bg_low_normal 0x7f07007d +int drawable notification_bg_low_pressed 0x7f07007e +int drawable notification_bg_normal 0x7f07007f +int drawable notification_bg_normal_pressed 0x7f070080 +int drawable notification_icon_background 0x7f070081 +int drawable notification_template_icon_bg 0x7f070082 +int drawable notification_template_icon_low_bg 0x7f070083 +int drawable notification_tile_bg 0x7f070084 +int drawable notify_panel_notification_icon_bg 0x7f070085 +int drawable tooltip_frame_dark 0x7f070086 +int drawable tooltip_frame_light 0x7f070087 +int id ALT 0x7f080000 +int id CTRL 0x7f080001 +int id FUNCTION 0x7f080002 +int id META 0x7f080003 +int id SHIFT 0x7f080004 +int id SYM 0x7f080005 +int id action0 0x7f080006 +int id action_bar 0x7f080007 +int id action_bar_activity_content 0x7f080008 +int id action_bar_container 0x7f080009 +int id action_bar_root 0x7f08000a +int id action_bar_spinner 0x7f08000b +int id action_bar_subtitle 0x7f08000c +int id action_bar_title 0x7f08000d +int id action_container 0x7f08000e +int id action_context_bar 0x7f08000f +int id action_divider 0x7f080010 +int id action_image 0x7f080011 +int id action_menu_divider 0x7f080012 +int id action_menu_presenter 0x7f080013 +int id action_mode_bar 0x7f080014 +int id action_mode_bar_stub 0x7f080015 +int id action_mode_close_button 0x7f080016 +int id action_text 0x7f080017 +int id actions 0x7f080018 +int id activity_chooser_view_content 0x7f080019 +int id add 0x7f08001a +int id alertTitle 0x7f08001b +int id all 0x7f08001c +int id always 0x7f08001d +int id async 0x7f08001e +int id auto 0x7f08001f +int id beginning 0x7f080020 +int id blocking 0x7f080021 +int id bottom 0x7f080022 +int id buttonPanel 0x7f080023 +int id cancel_action 0x7f080024 +int id center 0x7f080025 +int id center_horizontal 0x7f080026 +int id center_vertical 0x7f080027 +int id checkbox 0x7f080028 +int id chronometer 0x7f080029 +int id clip_horizontal 0x7f08002a +int id clip_vertical 0x7f08002b +int id collapseActionView 0x7f08002c +int id container 0x7f08002d +int id content 0x7f08002e +int id contentPanel 0x7f08002f +int id coordinator 0x7f080030 +int id custom 0x7f080031 +int id customPanel 0x7f080032 +int id decor_content_parent 0x7f080033 +int id default_activity_button 0x7f080034 +int id design_bottom_sheet 0x7f080035 +int id design_menu_item_action_area 0x7f080036 +int id design_menu_item_action_area_stub 0x7f080037 +int id design_menu_item_text 0x7f080038 +int id design_navigation_view 0x7f080039 +int id disableHome 0x7f08003a +int id edit_query 0x7f08003b +int id end 0x7f08003c +int id end_padder 0x7f08003d +int id enterAlways 0x7f08003e +int id enterAlwaysCollapsed 0x7f08003f +int id exitUntilCollapsed 0x7f080040 +int id expand_activities_button 0x7f080041 +int id expanded_menu 0x7f080042 +int id fill 0x7f080043 +int id fill_horizontal 0x7f080044 +int id fill_vertical 0x7f080045 +int id filled 0x7f080046 +int id fixed 0x7f080047 +int id forever 0x7f080048 +int id ghost_view 0x7f080049 +int id group_divider 0x7f08004a +int id home 0x7f08004b +int id homeAsUp 0x7f08004c +int id icon 0x7f08004d +int id icon_group 0x7f08004e +int id ifRoom 0x7f08004f +int id image 0x7f080050 +int id info 0x7f080051 +int id italic 0x7f080052 +int id item_touch_helper_previous_elevation 0x7f080053 +int id labeled 0x7f080054 +int id largeLabel 0x7f080055 +int id left 0x7f080056 +int id line1 0x7f080057 +int id line3 0x7f080058 +int id listMode 0x7f080059 +int id list_item 0x7f08005a +int id masked 0x7f08005b +int id media_actions 0x7f08005c +int id message 0x7f08005d +int id middle 0x7f08005e +int id mini 0x7f08005f +int id mtrl_child_content_container 0x7f080060 +int id mtrl_internal_children_alpha_tag 0x7f080061 +int id multiply 0x7f080062 +int id navigation_header_container 0x7f080063 +int id never 0x7f080064 +int id none 0x7f080065 +int id normal 0x7f080066 +int id notification_background 0x7f080067 +int id notification_main_column 0x7f080068 +int id notification_main_column_container 0x7f080069 +int id outline 0x7f08006a +int id parallax 0x7f08006b +int id parentPanel 0x7f08006c +int id parent_matrix 0x7f08006d +int id pin 0x7f08006e +int id progress_circular 0x7f08006f +int id progress_horizontal 0x7f080070 +int id radio 0x7f080071 +int id right 0x7f080072 +int id right_icon 0x7f080073 +int id right_side 0x7f080074 +int id save_image_matrix 0x7f080075 +int id save_non_transition_alpha 0x7f080076 +int id save_scale_type 0x7f080077 +int id screen 0x7f080078 +int id scroll 0x7f080079 +int id scrollIndicatorDown 0x7f08007a +int id scrollIndicatorUp 0x7f08007b +int id scrollView 0x7f08007c +int id scrollable 0x7f08007d +int id search_badge 0x7f08007e +int id search_bar 0x7f08007f +int id search_button 0x7f080080 +int id search_close_btn 0x7f080081 +int id search_edit_frame 0x7f080082 +int id search_go_btn 0x7f080083 +int id search_mag_icon 0x7f080084 +int id search_plate 0x7f080085 +int id search_src_text 0x7f080086 +int id search_voice_btn 0x7f080087 +int id select_dialog_listview 0x7f080088 +int id selected 0x7f080089 +int id shortcut 0x7f08008a +int id showCustom 0x7f08008b +int id showHome 0x7f08008c +int id showTitle 0x7f08008d +int id smallLabel 0x7f08008e +int id snackbar_action 0x7f08008f +int id snackbar_text 0x7f080090 +int id snap 0x7f080091 +int id snapMargins 0x7f080092 +int id spacer 0x7f080093 +int id split_action_bar 0x7f080094 +int id src_atop 0x7f080095 +int id src_in 0x7f080096 +int id src_over 0x7f080097 +int id start 0x7f080098 +int id status_bar_latest_event_content 0x7f080099 +int id stretch 0x7f08009a +int id submenuarrow 0x7f08009b +int id submit_area 0x7f08009c +int id tabMode 0x7f08009d +int id tag_transition_group 0x7f08009e +int id tag_unhandled_key_event_manager 0x7f08009f +int id tag_unhandled_key_listeners 0x7f0800a0 +int id text 0x7f0800a1 +int id text2 0x7f0800a2 +int id textSpacerNoButtons 0x7f0800a3 +int id textSpacerNoTitle 0x7f0800a4 +int id textStart 0x7f0800a5 +int id text_input_password_toggle 0x7f0800a6 +int id textinput_counter 0x7f0800a7 +int id textinput_error 0x7f0800a8 +int id textinput_helper_text 0x7f0800a9 +int id time 0x7f0800aa +int id title 0x7f0800ab +int id titleDividerNoCustom 0x7f0800ac +int id title_template 0x7f0800ad +int id top 0x7f0800ae +int id topPanel 0x7f0800af +int id touch_outside 0x7f0800b0 +int id transition_current_scene 0x7f0800b1 +int id transition_layout_save 0x7f0800b2 +int id transition_position 0x7f0800b3 +int id transition_scene_layoutid_cache 0x7f0800b4 +int id transition_transform 0x7f0800b5 +int id uniform 0x7f0800b6 +int id unlabeled 0x7f0800b7 +int id up 0x7f0800b8 +int id useLogo 0x7f0800b9 +int id view_offset_helper 0x7f0800ba +int id visible 0x7f0800bb +int id withText 0x7f0800bc +int id wrap_content 0x7f0800bd +int integer abc_config_activityDefaultDur 0x7f090000 +int integer abc_config_activityShortDur 0x7f090001 +int integer app_bar_elevation_anim_duration 0x7f090002 +int integer bottom_sheet_slide_duration 0x7f090003 +int integer cancel_button_image_alpha 0x7f090004 +int integer config_tooltipAnimTime 0x7f090005 +int integer design_snackbar_text_max_lines 0x7f090006 +int integer design_tab_indicator_anim_duration_ms 0x7f090007 +int integer hide_password_duration 0x7f090008 +int integer mtrl_btn_anim_delay_ms 0x7f090009 +int integer mtrl_btn_anim_duration_ms 0x7f09000a +int integer mtrl_chip_anim_duration 0x7f09000b +int integer mtrl_tab_indicator_anim_duration_ms 0x7f09000c +int integer show_password_duration 0x7f09000d +int integer status_bar_notification_info_maxnum 0x7f09000e +int interpolator mtrl_fast_out_linear_in 0x7f0a0000 +int interpolator mtrl_fast_out_slow_in 0x7f0a0001 +int interpolator mtrl_linear 0x7f0a0002 +int interpolator mtrl_linear_out_slow_in 0x7f0a0003 +int layout abc_action_bar_title_item 0x7f0b0000 +int layout abc_action_bar_up_container 0x7f0b0001 +int layout abc_action_menu_item_layout 0x7f0b0002 +int layout abc_action_menu_layout 0x7f0b0003 +int layout abc_action_mode_bar 0x7f0b0004 +int layout abc_action_mode_close_item_material 0x7f0b0005 +int layout abc_activity_chooser_view 0x7f0b0006 +int layout abc_activity_chooser_view_list_item 0x7f0b0007 +int layout abc_alert_dialog_button_bar_material 0x7f0b0008 +int layout abc_alert_dialog_material 0x7f0b0009 +int layout abc_alert_dialog_title_material 0x7f0b000a +int layout abc_cascading_menu_item_layout 0x7f0b000b +int layout abc_dialog_title_material 0x7f0b000c +int layout abc_expanded_menu_layout 0x7f0b000d +int layout abc_list_menu_item_checkbox 0x7f0b000e +int layout abc_list_menu_item_icon 0x7f0b000f +int layout abc_list_menu_item_layout 0x7f0b0010 +int layout abc_list_menu_item_radio 0x7f0b0011 +int layout abc_popup_menu_header_item_layout 0x7f0b0012 +int layout abc_popup_menu_item_layout 0x7f0b0013 +int layout abc_screen_content_include 0x7f0b0014 +int layout abc_screen_simple 0x7f0b0015 +int layout abc_screen_simple_overlay_action_mode 0x7f0b0016 +int layout abc_screen_toolbar 0x7f0b0017 +int layout abc_search_dropdown_item_icons_2line 0x7f0b0018 +int layout abc_search_view 0x7f0b0019 +int layout abc_select_dialog_material 0x7f0b001a +int layout abc_tooltip 0x7f0b001b +int layout activity_app 0x7f0b001c +int layout design_bottom_navigation_item 0x7f0b001d +int layout design_bottom_sheet_dialog 0x7f0b001e +int layout design_layout_snackbar 0x7f0b001f +int layout design_layout_snackbar_include 0x7f0b0020 +int layout design_layout_tab_icon 0x7f0b0021 +int layout design_layout_tab_text 0x7f0b0022 +int layout design_menu_item_action_area 0x7f0b0023 +int layout design_navigation_item 0x7f0b0024 +int layout design_navigation_item_header 0x7f0b0025 +int layout design_navigation_item_separator 0x7f0b0026 +int layout design_navigation_item_subheader 0x7f0b0027 +int layout design_navigation_menu 0x7f0b0028 +int layout design_navigation_menu_item 0x7f0b0029 +int layout design_text_input_password_icon 0x7f0b002a +int layout mtrl_layout_snackbar 0x7f0b002b +int layout mtrl_layout_snackbar_include 0x7f0b002c +int layout notification_action 0x7f0b002d +int layout notification_action_tombstone 0x7f0b002e +int layout notification_media_action 0x7f0b002f +int layout notification_media_cancel_action 0x7f0b0030 +int layout notification_template_big_media 0x7f0b0031 +int layout notification_template_big_media_custom 0x7f0b0032 +int layout notification_template_big_media_narrow 0x7f0b0033 +int layout notification_template_big_media_narrow_custom 0x7f0b0034 +int layout notification_template_custom_big 0x7f0b0035 +int layout notification_template_icon_group 0x7f0b0036 +int layout notification_template_lines_media 0x7f0b0037 +int layout notification_template_media 0x7f0b0038 +int layout notification_template_media_custom 0x7f0b0039 +int layout notification_template_part_chronometer 0x7f0b003a +int layout notification_template_part_time 0x7f0b003b +int layout select_dialog_item_material 0x7f0b003c +int layout select_dialog_multichoice_material 0x7f0b003d +int layout select_dialog_singlechoice_material 0x7f0b003e +int layout support_simple_spinner_dropdown_item 0x7f0b003f +int raw my_ca 0x7f0c0000 +int string abc_action_bar_home_description 0x7f0d0000 +int string abc_action_bar_up_description 0x7f0d0001 +int string abc_action_menu_overflow_description 0x7f0d0002 +int string abc_action_mode_done 0x7f0d0003 +int string abc_activity_chooser_view_see_all 0x7f0d0004 +int string abc_activitychooserview_choose_application 0x7f0d0005 +int string abc_capital_off 0x7f0d0006 +int string abc_capital_on 0x7f0d0007 +int string abc_font_family_body_1_material 0x7f0d0008 +int string abc_font_family_body_2_material 0x7f0d0009 +int string abc_font_family_button_material 0x7f0d000a +int string abc_font_family_caption_material 0x7f0d000b +int string abc_font_family_display_1_material 0x7f0d000c +int string abc_font_family_display_2_material 0x7f0d000d +int string abc_font_family_display_3_material 0x7f0d000e +int string abc_font_family_display_4_material 0x7f0d000f +int string abc_font_family_headline_material 0x7f0d0010 +int string abc_font_family_menu_material 0x7f0d0011 +int string abc_font_family_subhead_material 0x7f0d0012 +int string abc_font_family_title_material 0x7f0d0013 +int string abc_menu_alt_shortcut_label 0x7f0d0014 +int string abc_menu_ctrl_shortcut_label 0x7f0d0015 +int string abc_menu_delete_shortcut_label 0x7f0d0016 +int string abc_menu_enter_shortcut_label 0x7f0d0017 +int string abc_menu_function_shortcut_label 0x7f0d0018 +int string abc_menu_meta_shortcut_label 0x7f0d0019 +int string abc_menu_shift_shortcut_label 0x7f0d001a +int string abc_menu_space_shortcut_label 0x7f0d001b +int string abc_menu_sym_shortcut_label 0x7f0d001c +int string abc_prepend_shortcut_label 0x7f0d001d +int string abc_search_hint 0x7f0d001e +int string abc_searchview_description_clear 0x7f0d001f +int string abc_searchview_description_query 0x7f0d0020 +int string abc_searchview_description_search 0x7f0d0021 +int string abc_searchview_description_submit 0x7f0d0022 +int string abc_searchview_description_voice 0x7f0d0023 +int string abc_shareactionprovider_share_with 0x7f0d0024 +int string abc_shareactionprovider_share_with_application 0x7f0d0025 +int string abc_toolbar_collapse_description 0x7f0d0026 +int string app_name 0x7f0d0027 +int string appbar_scrolling_view_behavior 0x7f0d0028 +int string bottom_sheet_behavior 0x7f0d0029 +int string character_counter_content_description 0x7f0d002a +int string character_counter_pattern 0x7f0d002b +int string fab_transformation_scrim_behavior 0x7f0d002c +int string fab_transformation_sheet_behavior 0x7f0d002d +int string hello_world 0x7f0d002e +int string hide_bottom_view_on_scroll_behavior 0x7f0d002f +int string mtrl_chip_close_icon_content_description 0x7f0d0030 +int string password_toggle_content_description 0x7f0d0031 +int string path_password_eye 0x7f0d0032 +int string path_password_eye_mask_strike_through 0x7f0d0033 +int string path_password_eye_mask_visible 0x7f0d0034 +int string path_password_strike_through 0x7f0d0035 +int string search_menu_title 0x7f0d0036 +int string status_bar_notification_info_overflow 0x7f0d0037 +int style AlertDialog_AppCompat 0x7f0e0000 +int style AlertDialog_AppCompat_Light 0x7f0e0001 +int style Animation_AppCompat_Dialog 0x7f0e0002 +int style Animation_AppCompat_DropDownUp 0x7f0e0003 +int style Animation_AppCompat_Tooltip 0x7f0e0004 +int style Animation_Design_BottomSheetDialog 0x7f0e0005 +int style AppBaseTheme 0x7f0e0006 +int style AppTheme 0x7f0e0007 +int style Base_AlertDialog_AppCompat 0x7f0e0008 +int style Base_AlertDialog_AppCompat_Light 0x7f0e0009 +int style Base_Animation_AppCompat_Dialog 0x7f0e000a +int style Base_Animation_AppCompat_DropDownUp 0x7f0e000b +int style Base_Animation_AppCompat_Tooltip 0x7f0e000c +int style Base_CardView 0x7f0e000d +int style Base_DialogWindowTitle_AppCompat 0x7f0e000e +int style Base_DialogWindowTitleBackground_AppCompat 0x7f0e000f +int style Base_TextAppearance_AppCompat 0x7f0e0010 +int style Base_TextAppearance_AppCompat_Body1 0x7f0e0011 +int style Base_TextAppearance_AppCompat_Body2 0x7f0e0012 +int style Base_TextAppearance_AppCompat_Button 0x7f0e0013 +int style Base_TextAppearance_AppCompat_Caption 0x7f0e0014 +int style Base_TextAppearance_AppCompat_Display1 0x7f0e0015 +int style Base_TextAppearance_AppCompat_Display2 0x7f0e0016 +int style Base_TextAppearance_AppCompat_Display3 0x7f0e0017 +int style Base_TextAppearance_AppCompat_Display4 0x7f0e0018 +int style Base_TextAppearance_AppCompat_Headline 0x7f0e0019 +int style Base_TextAppearance_AppCompat_Inverse 0x7f0e001a +int style Base_TextAppearance_AppCompat_Large 0x7f0e001b +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0e001c +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0e001d +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0e001e +int style Base_TextAppearance_AppCompat_Medium 0x7f0e001f +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0e0020 +int style Base_TextAppearance_AppCompat_Menu 0x7f0e0021 +int style Base_TextAppearance_AppCompat_SearchResult 0x7f0e0022 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0e0023 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0e0024 +int style Base_TextAppearance_AppCompat_Small 0x7f0e0025 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0e0026 +int style Base_TextAppearance_AppCompat_Subhead 0x7f0e0027 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0e0028 +int style Base_TextAppearance_AppCompat_Title 0x7f0e0029 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0e002a +int style Base_TextAppearance_AppCompat_Tooltip 0x7f0e002b +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0e002c +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0e002d +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0e002e +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0e002f +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0e0030 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0e0031 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0e0032 +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0e0033 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0e0034 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0e0035 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0e0036 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0e0037 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0e0038 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0e0039 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0e003a +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0e003b +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0e003c +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0e003d +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0e003e +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0e003f +int style Base_Theme_AppCompat 0x7f0e0040 +int style Base_Theme_AppCompat_CompactMenu 0x7f0e0041 +int style Base_Theme_AppCompat_Dialog 0x7f0e0042 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f0e0043 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0e0044 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0e0045 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0e0046 +int style Base_Theme_AppCompat_Light 0x7f0e0047 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0e0048 +int style Base_Theme_AppCompat_Light_Dialog 0x7f0e0049 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0e004a +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0e004b +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0e004c +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0e004d +int style Base_Theme_MaterialComponents 0x7f0e004e +int style Base_Theme_MaterialComponents_Bridge 0x7f0e004f +int style Base_Theme_MaterialComponents_CompactMenu 0x7f0e0050 +int style Base_Theme_MaterialComponents_Dialog 0x7f0e0051 +int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f0e0052 +int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f0e0053 +int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f0e0054 +int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f0e0055 +int style Base_Theme_MaterialComponents_Light 0x7f0e0056 +int style Base_Theme_MaterialComponents_Light_Bridge 0x7f0e0057 +int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f0e0058 +int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0e0059 +int style Base_Theme_MaterialComponents_Light_Dialog 0x7f0e005a +int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f0e005b +int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f0e005c +int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f0e005d +int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f0e005e +int style Base_ThemeOverlay_AppCompat 0x7f0e005f +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0e0060 +int style Base_ThemeOverlay_AppCompat_Dark 0x7f0e0061 +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0e0062 +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0e0063 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0e0064 +int style Base_ThemeOverlay_AppCompat_Light 0x7f0e0065 +int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f0e0066 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0e0067 +int style Base_V14_Theme_MaterialComponents 0x7f0e0068 +int style Base_V14_Theme_MaterialComponents_Bridge 0x7f0e0069 +int style Base_V14_Theme_MaterialComponents_Dialog 0x7f0e006a +int style Base_V14_Theme_MaterialComponents_Light 0x7f0e006b +int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f0e006c +int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0e006d +int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f0e006e +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f0e006f +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0e0070 +int style Base_V21_Theme_AppCompat 0x7f0e0071 +int style Base_V21_Theme_AppCompat_Dialog 0x7f0e0072 +int style Base_V21_Theme_AppCompat_Light 0x7f0e0073 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0e0074 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0e0075 +int style Base_V22_Theme_AppCompat 0x7f0e0076 +int style Base_V22_Theme_AppCompat_Light 0x7f0e0077 +int style Base_V23_Theme_AppCompat 0x7f0e0078 +int style Base_V23_Theme_AppCompat_Light 0x7f0e0079 +int style Base_V26_Theme_AppCompat 0x7f0e007a +int style Base_V26_Theme_AppCompat_Light 0x7f0e007b +int style Base_V26_Widget_AppCompat_Toolbar 0x7f0e007c +int style Base_V28_Theme_AppCompat 0x7f0e007d +int style Base_V28_Theme_AppCompat_Light 0x7f0e007e +int style Base_V7_Theme_AppCompat 0x7f0e007f +int style Base_V7_Theme_AppCompat_Dialog 0x7f0e0080 +int style Base_V7_Theme_AppCompat_Light 0x7f0e0081 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0e0082 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0e0083 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0e0084 +int style Base_V7_Widget_AppCompat_EditText 0x7f0e0085 +int style Base_V7_Widget_AppCompat_Toolbar 0x7f0e0086 +int style Base_Widget_AppCompat_ActionBar 0x7f0e0087 +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0e0088 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0e0089 +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0e008a +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0e008b +int style Base_Widget_AppCompat_ActionButton 0x7f0e008c +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0e008d +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0e008e +int style Base_Widget_AppCompat_ActionMode 0x7f0e008f +int style Base_Widget_AppCompat_ActivityChooserView 0x7f0e0090 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0e0091 +int style Base_Widget_AppCompat_Button 0x7f0e0092 +int style Base_Widget_AppCompat_Button_Borderless 0x7f0e0093 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0e0094 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0e0095 +int style Base_Widget_AppCompat_Button_Colored 0x7f0e0096 +int style Base_Widget_AppCompat_Button_Small 0x7f0e0097 +int style Base_Widget_AppCompat_ButtonBar 0x7f0e0098 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0e0099 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0e009a +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0e009b +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0e009c +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0e009d +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0e009e +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0e009f +int style Base_Widget_AppCompat_EditText 0x7f0e00a0 +int style Base_Widget_AppCompat_ImageButton 0x7f0e00a1 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f0e00a2 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0e00a3 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0e00a4 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0e00a5 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0e00a6 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0e00a7 +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0e00a8 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0e00a9 +int style Base_Widget_AppCompat_ListMenuView 0x7f0e00aa +int style Base_Widget_AppCompat_ListPopupWindow 0x7f0e00ab +int style Base_Widget_AppCompat_ListView 0x7f0e00ac +int style Base_Widget_AppCompat_ListView_DropDown 0x7f0e00ad +int style Base_Widget_AppCompat_ListView_Menu 0x7f0e00ae +int style Base_Widget_AppCompat_PopupMenu 0x7f0e00af +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0e00b0 +int style Base_Widget_AppCompat_PopupWindow 0x7f0e00b1 +int style Base_Widget_AppCompat_ProgressBar 0x7f0e00b2 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0e00b3 +int style Base_Widget_AppCompat_RatingBar 0x7f0e00b4 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0e00b5 +int style Base_Widget_AppCompat_RatingBar_Small 0x7f0e00b6 +int style Base_Widget_AppCompat_SearchView 0x7f0e00b7 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0e00b8 +int style Base_Widget_AppCompat_SeekBar 0x7f0e00b9 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0e00ba +int style Base_Widget_AppCompat_Spinner 0x7f0e00bb +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0e00bc +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0e00bd +int style Base_Widget_AppCompat_Toolbar 0x7f0e00be +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0e00bf +int style Base_Widget_Design_TabLayout 0x7f0e00c0 +int style Base_Widget_MaterialComponents_Chip 0x7f0e00c1 +int style Base_Widget_MaterialComponents_TextInputEditText 0x7f0e00c2 +int style Base_Widget_MaterialComponents_TextInputLayout 0x7f0e00c3 +int style CardView 0x7f0e00c4 +int style CardView_Dark 0x7f0e00c5 +int style CardView_Light 0x7f0e00c6 +int style Platform_AppCompat 0x7f0e00c7 +int style Platform_AppCompat_Light 0x7f0e00c8 +int style Platform_MaterialComponents 0x7f0e00c9 +int style Platform_MaterialComponents_Dialog 0x7f0e00ca +int style Platform_MaterialComponents_Light 0x7f0e00cb +int style Platform_MaterialComponents_Light_Dialog 0x7f0e00cc +int style Platform_ThemeOverlay_AppCompat 0x7f0e00cd +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0e00ce +int style Platform_ThemeOverlay_AppCompat_Light 0x7f0e00cf +int style Platform_V21_AppCompat 0x7f0e00d0 +int style Platform_V21_AppCompat_Light 0x7f0e00d1 +int style Platform_V25_AppCompat 0x7f0e00d2 +int style Platform_V25_AppCompat_Light 0x7f0e00d3 +int style Platform_Widget_AppCompat_Spinner 0x7f0e00d4 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0e00d5 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0e00d6 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0e00d7 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0e00d8 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0e00d9 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f0e00da +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f0e00db +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0e00dc +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f0e00dd +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0e00de +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0e00df +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0e00e0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0e00e1 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0e00e2 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0e00e3 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0e00e4 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0e00e5 +int style TextAppearance_AppCompat 0x7f0e00e6 +int style TextAppearance_AppCompat_Body1 0x7f0e00e7 +int style TextAppearance_AppCompat_Body2 0x7f0e00e8 +int style TextAppearance_AppCompat_Button 0x7f0e00e9 +int style TextAppearance_AppCompat_Caption 0x7f0e00ea +int style TextAppearance_AppCompat_Display1 0x7f0e00eb +int style TextAppearance_AppCompat_Display2 0x7f0e00ec +int style TextAppearance_AppCompat_Display3 0x7f0e00ed +int style TextAppearance_AppCompat_Display4 0x7f0e00ee +int style TextAppearance_AppCompat_Headline 0x7f0e00ef +int style TextAppearance_AppCompat_Inverse 0x7f0e00f0 +int style TextAppearance_AppCompat_Large 0x7f0e00f1 +int style TextAppearance_AppCompat_Large_Inverse 0x7f0e00f2 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0e00f3 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0e00f4 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0e00f5 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0e00f6 +int style TextAppearance_AppCompat_Medium 0x7f0e00f7 +int style TextAppearance_AppCompat_Medium_Inverse 0x7f0e00f8 +int style TextAppearance_AppCompat_Menu 0x7f0e00f9 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0e00fa +int style TextAppearance_AppCompat_SearchResult_Title 0x7f0e00fb +int style TextAppearance_AppCompat_Small 0x7f0e00fc +int style TextAppearance_AppCompat_Small_Inverse 0x7f0e00fd +int style TextAppearance_AppCompat_Subhead 0x7f0e00fe +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0e00ff +int style TextAppearance_AppCompat_Title 0x7f0e0100 +int style TextAppearance_AppCompat_Title_Inverse 0x7f0e0101 +int style TextAppearance_AppCompat_Tooltip 0x7f0e0102 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0e0103 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0e0104 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0e0105 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0e0106 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0e0107 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0e0108 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0e0109 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0e010a +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0e010b +int style TextAppearance_AppCompat_Widget_Button 0x7f0e010c +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0e010d +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0e010e +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0e010f +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0e0110 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0e0111 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0e0112 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0e0113 +int style TextAppearance_AppCompat_Widget_Switch 0x7f0e0114 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0e0115 +int style TextAppearance_Compat_Notification 0x7f0e0116 +int style TextAppearance_Compat_Notification_Info 0x7f0e0117 +int style TextAppearance_Compat_Notification_Info_Media 0x7f0e0118 +int style TextAppearance_Compat_Notification_Line2 0x7f0e0119 +int style TextAppearance_Compat_Notification_Line2_Media 0x7f0e011a +int style TextAppearance_Compat_Notification_Media 0x7f0e011b +int style TextAppearance_Compat_Notification_Time 0x7f0e011c +int style TextAppearance_Compat_Notification_Time_Media 0x7f0e011d +int style TextAppearance_Compat_Notification_Title 0x7f0e011e +int style TextAppearance_Compat_Notification_Title_Media 0x7f0e011f +int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0e0120 +int style TextAppearance_Design_Counter 0x7f0e0121 +int style TextAppearance_Design_Counter_Overflow 0x7f0e0122 +int style TextAppearance_Design_Error 0x7f0e0123 +int style TextAppearance_Design_HelperText 0x7f0e0124 +int style TextAppearance_Design_Hint 0x7f0e0125 +int style TextAppearance_Design_Snackbar_Message 0x7f0e0126 +int style TextAppearance_Design_Tab 0x7f0e0127 +int style TextAppearance_MaterialComponents_Body1 0x7f0e0128 +int style TextAppearance_MaterialComponents_Body2 0x7f0e0129 +int style TextAppearance_MaterialComponents_Button 0x7f0e012a +int style TextAppearance_MaterialComponents_Caption 0x7f0e012b +int style TextAppearance_MaterialComponents_Chip 0x7f0e012c +int style TextAppearance_MaterialComponents_Headline1 0x7f0e012d +int style TextAppearance_MaterialComponents_Headline2 0x7f0e012e +int style TextAppearance_MaterialComponents_Headline3 0x7f0e012f +int style TextAppearance_MaterialComponents_Headline4 0x7f0e0130 +int style TextAppearance_MaterialComponents_Headline5 0x7f0e0131 +int style TextAppearance_MaterialComponents_Headline6 0x7f0e0132 +int style TextAppearance_MaterialComponents_Overline 0x7f0e0133 +int style TextAppearance_MaterialComponents_Subtitle1 0x7f0e0134 +int style TextAppearance_MaterialComponents_Subtitle2 0x7f0e0135 +int style TextAppearance_MaterialComponents_Tab 0x7f0e0136 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0e0137 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0e0138 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0e0139 +int style Theme_AppCompat 0x7f0e013a +int style Theme_AppCompat_CompactMenu 0x7f0e013b +int style Theme_AppCompat_DayNight 0x7f0e013c +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0e013d +int style Theme_AppCompat_DayNight_Dialog 0x7f0e013e +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0e013f +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0e0140 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0e0141 +int style Theme_AppCompat_DayNight_NoActionBar 0x7f0e0142 +int style Theme_AppCompat_Dialog 0x7f0e0143 +int style Theme_AppCompat_Dialog_Alert 0x7f0e0144 +int style Theme_AppCompat_Dialog_MinWidth 0x7f0e0145 +int style Theme_AppCompat_DialogWhenLarge 0x7f0e0146 +int style Theme_AppCompat_Light 0x7f0e0147 +int style Theme_AppCompat_Light_DarkActionBar 0x7f0e0148 +int style Theme_AppCompat_Light_Dialog 0x7f0e0149 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f0e014a +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0e014b +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0e014c +int style Theme_AppCompat_Light_NoActionBar 0x7f0e014d +int style Theme_AppCompat_NoActionBar 0x7f0e014e +int style Theme_Design 0x7f0e014f +int style Theme_Design_BottomSheetDialog 0x7f0e0150 +int style Theme_Design_Light 0x7f0e0151 +int style Theme_Design_Light_BottomSheetDialog 0x7f0e0152 +int style Theme_Design_Light_NoActionBar 0x7f0e0153 +int style Theme_Design_NoActionBar 0x7f0e0154 +int style Theme_MaterialComponents 0x7f0e0155 +int style Theme_MaterialComponents_BottomSheetDialog 0x7f0e0156 +int style Theme_MaterialComponents_Bridge 0x7f0e0157 +int style Theme_MaterialComponents_CompactMenu 0x7f0e0158 +int style Theme_MaterialComponents_Dialog 0x7f0e0159 +int style Theme_MaterialComponents_Dialog_Alert 0x7f0e015a +int style Theme_MaterialComponents_Dialog_MinWidth 0x7f0e015b +int style Theme_MaterialComponents_DialogWhenLarge 0x7f0e015c +int style Theme_MaterialComponents_Light 0x7f0e015d +int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f0e015e +int style Theme_MaterialComponents_Light_Bridge 0x7f0e015f +int style Theme_MaterialComponents_Light_DarkActionBar 0x7f0e0160 +int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0e0161 +int style Theme_MaterialComponents_Light_Dialog 0x7f0e0162 +int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f0e0163 +int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f0e0164 +int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f0e0165 +int style Theme_MaterialComponents_Light_NoActionBar 0x7f0e0166 +int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f0e0167 +int style Theme_MaterialComponents_NoActionBar 0x7f0e0168 +int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f0e0169 +int style ThemeOverlay_AppCompat 0x7f0e016a +int style ThemeOverlay_AppCompat_ActionBar 0x7f0e016b +int style ThemeOverlay_AppCompat_Dark 0x7f0e016c +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0e016d +int style ThemeOverlay_AppCompat_Dialog 0x7f0e016e +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0e016f +int style ThemeOverlay_AppCompat_Light 0x7f0e0170 +int style ThemeOverlay_MaterialComponents 0x7f0e0171 +int style ThemeOverlay_MaterialComponents_ActionBar 0x7f0e0172 +int style ThemeOverlay_MaterialComponents_Dark 0x7f0e0173 +int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f0e0174 +int style ThemeOverlay_MaterialComponents_Dialog 0x7f0e0175 +int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0e0176 +int style ThemeOverlay_MaterialComponents_Light 0x7f0e0177 +int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f0e0178 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f0e0179 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f0e017a +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f0e017b +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f0e017c +int style Widget_AppCompat_ActionBar 0x7f0e017d +int style Widget_AppCompat_ActionBar_Solid 0x7f0e017e +int style Widget_AppCompat_ActionBar_TabBar 0x7f0e017f +int style Widget_AppCompat_ActionBar_TabText 0x7f0e0180 +int style Widget_AppCompat_ActionBar_TabView 0x7f0e0181 +int style Widget_AppCompat_ActionButton 0x7f0e0182 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f0e0183 +int style Widget_AppCompat_ActionButton_Overflow 0x7f0e0184 +int style Widget_AppCompat_ActionMode 0x7f0e0185 +int style Widget_AppCompat_ActivityChooserView 0x7f0e0186 +int style Widget_AppCompat_AutoCompleteTextView 0x7f0e0187 +int style Widget_AppCompat_Button 0x7f0e0188 +int style Widget_AppCompat_Button_Borderless 0x7f0e0189 +int style Widget_AppCompat_Button_Borderless_Colored 0x7f0e018a +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0e018b +int style Widget_AppCompat_Button_Colored 0x7f0e018c +int style Widget_AppCompat_Button_Small 0x7f0e018d +int style Widget_AppCompat_ButtonBar 0x7f0e018e +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0e018f +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0e0190 +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0e0191 +int style Widget_AppCompat_CompoundButton_Switch 0x7f0e0192 +int style Widget_AppCompat_DrawerArrowToggle 0x7f0e0193 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f0e0194 +int style Widget_AppCompat_EditText 0x7f0e0195 +int style Widget_AppCompat_ImageButton 0x7f0e0196 +int style Widget_AppCompat_Light_ActionBar 0x7f0e0197 +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0e0198 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0e0199 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0e019a +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0e019b +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0e019c +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0e019d +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0e019e +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0e019f +int style Widget_AppCompat_Light_ActionButton 0x7f0e01a0 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0e01a1 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0e01a2 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0e01a3 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f0e01a4 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0e01a5 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0e01a6 +int style Widget_AppCompat_Light_ListPopupWindow 0x7f0e01a7 +int style Widget_AppCompat_Light_ListView_DropDown 0x7f0e01a8 +int style Widget_AppCompat_Light_PopupMenu 0x7f0e01a9 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0e01aa +int style Widget_AppCompat_Light_SearchView 0x7f0e01ab +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0e01ac +int style Widget_AppCompat_ListMenuView 0x7f0e01ad +int style Widget_AppCompat_ListPopupWindow 0x7f0e01ae +int style Widget_AppCompat_ListView 0x7f0e01af +int style Widget_AppCompat_ListView_DropDown 0x7f0e01b0 +int style Widget_AppCompat_ListView_Menu 0x7f0e01b1 +int style Widget_AppCompat_PopupMenu 0x7f0e01b2 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f0e01b3 +int style Widget_AppCompat_PopupWindow 0x7f0e01b4 +int style Widget_AppCompat_ProgressBar 0x7f0e01b5 +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0e01b6 +int style Widget_AppCompat_RatingBar 0x7f0e01b7 +int style Widget_AppCompat_RatingBar_Indicator 0x7f0e01b8 +int style Widget_AppCompat_RatingBar_Small 0x7f0e01b9 +int style Widget_AppCompat_SearchView 0x7f0e01ba +int style Widget_AppCompat_SearchView_ActionBar 0x7f0e01bb +int style Widget_AppCompat_SeekBar 0x7f0e01bc +int style Widget_AppCompat_SeekBar_Discrete 0x7f0e01bd +int style Widget_AppCompat_Spinner 0x7f0e01be +int style Widget_AppCompat_Spinner_DropDown 0x7f0e01bf +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0e01c0 +int style Widget_AppCompat_Spinner_Underlined 0x7f0e01c1 +int style Widget_AppCompat_TextView_SpinnerItem 0x7f0e01c2 +int style Widget_AppCompat_Toolbar 0x7f0e01c3 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0e01c4 +int style Widget_Compat_NotificationActionContainer 0x7f0e01c5 +int style Widget_Compat_NotificationActionText 0x7f0e01c6 +int style Widget_Design_AppBarLayout 0x7f0e01c7 +int style Widget_Design_BottomNavigationView 0x7f0e01c8 +int style Widget_Design_BottomSheet_Modal 0x7f0e01c9 +int style Widget_Design_CollapsingToolbar 0x7f0e01ca +int style Widget_Design_FloatingActionButton 0x7f0e01cb +int style Widget_Design_NavigationView 0x7f0e01cc +int style Widget_Design_ScrimInsetsFrameLayout 0x7f0e01cd +int style Widget_Design_Snackbar 0x7f0e01ce +int style Widget_Design_TabLayout 0x7f0e01cf +int style Widget_Design_TextInputLayout 0x7f0e01d0 +int style Widget_MaterialComponents_BottomAppBar 0x7f0e01d1 +int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f0e01d2 +int style Widget_MaterialComponents_BottomNavigationView 0x7f0e01d3 +int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f0e01d4 +int style Widget_MaterialComponents_BottomSheet_Modal 0x7f0e01d5 +int style Widget_MaterialComponents_Button 0x7f0e01d6 +int style Widget_MaterialComponents_Button_Icon 0x7f0e01d7 +int style Widget_MaterialComponents_Button_OutlinedButton 0x7f0e01d8 +int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f0e01d9 +int style Widget_MaterialComponents_Button_TextButton 0x7f0e01da +int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f0e01db +int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f0e01dc +int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f0e01dd +int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f0e01de +int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f0e01df +int style Widget_MaterialComponents_CardView 0x7f0e01e0 +int style Widget_MaterialComponents_Chip_Action 0x7f0e01e1 +int style Widget_MaterialComponents_Chip_Choice 0x7f0e01e2 +int style Widget_MaterialComponents_Chip_Entry 0x7f0e01e3 +int style Widget_MaterialComponents_Chip_Filter 0x7f0e01e4 +int style Widget_MaterialComponents_ChipGroup 0x7f0e01e5 +int style Widget_MaterialComponents_FloatingActionButton 0x7f0e01e6 +int style Widget_MaterialComponents_NavigationView 0x7f0e01e7 +int style Widget_MaterialComponents_Snackbar 0x7f0e01e8 +int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f0e01e9 +int style Widget_MaterialComponents_TabLayout 0x7f0e01ea +int style Widget_MaterialComponents_TabLayout_Colored 0x7f0e01eb +int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f0e01ec +int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f0e01ed +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f0e01ee +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f0e01ef +int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f0e01f0 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f0e01f1 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f0e01f2 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f0e01f3 +int style Widget_MaterialComponents_Toolbar 0x7f0e01f4 +int style Widget_Support_CoordinatorLayout 0x7f0e01f5 +int[] styleable ActionBar { 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f0300a4, 0x7f0300a9, 0x7f0300aa, 0x7f0300b5, 0x7f0300df, 0x7f0300e4, 0x7f0300e9, 0x7f0300ea, 0x7f0300ec, 0x7f0300f6, 0x7f030100, 0x7f030123, 0x7f03012f, 0x7f030140, 0x7f030144, 0x7f030145, 0x7f030173, 0x7f030176, 0x7f0301bb, 0x7f0301c5 } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x010100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x0101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f030031, 0x7f030032, 0x7f03007e, 0x7f0300df, 0x7f030176, 0x7f0301c5 } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f0300ba, 0x7f0300f7 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x010100f2, 0x7f030052, 0x7f030053, 0x7f03011a, 0x7f03011b, 0x7f03012c, 0x7f03015b, 0x7f03015c } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } +int styleable AnimatedStateListDrawableCompat_android_dither 0 +int styleable AnimatedStateListDrawableCompat_android_visible 1 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 2 +int styleable AnimatedStateListDrawableCompat_android_constantSize 3 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 4 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 5 +int[] styleable AnimatedStateListDrawableItem { 0x010100d0, 0x01010199 } +int styleable AnimatedStateListDrawableItem_android_id 0 +int styleable AnimatedStateListDrawableItem_android_drawable 1 +int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_toId 1 +int styleable AnimatedStateListDrawableTransition_android_fromId 2 +int styleable AnimatedStateListDrawableTransition_android_reversible 3 +int[] styleable AppBarLayout { 0x010100d4, 0x0101048f, 0x01010540, 0x7f0300b5, 0x7f0300bb, 0x7f030115 } +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_android_touchscreenBlocksFocus 1 +int styleable AppBarLayout_android_keyboardNavigationCluster 2 +int styleable AppBarLayout_elevation 3 +int styleable AppBarLayout_expanded 4 +int styleable AppBarLayout_liftOnScroll 5 +int[] styleable AppBarLayoutStates { 0x7f030169, 0x7f03016a, 0x7f03016b, 0x7f03016c } +int styleable AppBarLayoutStates_state_collapsed 0 +int styleable AppBarLayoutStates_state_collapsible 1 +int styleable AppBarLayoutStates_state_liftable 2 +int styleable AppBarLayoutStates_state_lifted 3 +int[] styleable AppBarLayout_Layout { 0x7f030113, 0x7f030114 } +int styleable AppBarLayout_Layout_layout_scrollFlags 0 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 1 +int[] styleable AppCompatImageView { 0x01010119, 0x7f030166, 0x7f0301b9, 0x7f0301ba } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x01010142, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 } +int styleable AppCompatTextHelper_android_textAppearance 0 +int styleable AppCompatTextHelper_android_drawableTop 1 +int styleable AppCompatTextHelper_android_drawableBottom 2 +int styleable AppCompatTextHelper_android_drawableLeft 3 +int styleable AppCompatTextHelper_android_drawableRight 4 +int styleable AppCompatTextHelper_android_drawableStart 5 +int styleable AppCompatTextHelper_android_drawableEnd 6 +int[] styleable AppCompatTextView { 0x01010034, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030030, 0x7f0300ce, 0x7f0300d1, 0x7f030108, 0x7f030116, 0x7f030196 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_firstBaselineToTopHeight 6 +int styleable AppCompatTextView_fontFamily 7 +int styleable AppCompatTextView_lastBaselineToBottomHeight 8 +int styleable AppCompatTextView_lineHeight 9 +int styleable AppCompatTextView_textAllCaps 10 +int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, 0x7f030025, 0x7f03002b, 0x7f03003e, 0x7f03004c, 0x7f03004d, 0x7f03004e, 0x7f03004f, 0x7f030050, 0x7f030054, 0x7f030055, 0x7f03005f, 0x7f030064, 0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008e, 0x7f03009d, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300ab, 0x7f0300ad, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3, 0x7f0300b4, 0x7f0300e9, 0x7f0300f5, 0x7f030118, 0x7f030119, 0x7f03011c, 0x7f03011d, 0x7f03011e, 0x7f03011f, 0x7f030120, 0x7f030121, 0x7f030122, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013f, 0x7f030141, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f030156, 0x7f030163, 0x7f030164, 0x7f03017a, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301ac, 0x7f0301ad, 0x7f0301c7, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca, 0x7f0301d1, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc } +int styleable AppCompatTheme_android_windowIsFloating 0 +int styleable AppCompatTheme_android_windowAnimationStyle 1 +int styleable AppCompatTheme_actionBarDivider 2 +int styleable AppCompatTheme_actionBarItemBackground 3 +int styleable AppCompatTheme_actionBarPopupTheme 4 +int styleable AppCompatTheme_actionBarSize 5 +int styleable AppCompatTheme_actionBarSplitStyle 6 +int styleable AppCompatTheme_actionBarStyle 7 +int styleable AppCompatTheme_actionBarTabBarStyle 8 +int styleable AppCompatTheme_actionBarTabStyle 9 +int styleable AppCompatTheme_actionBarTabTextStyle 10 +int styleable AppCompatTheme_actionBarTheme 11 +int styleable AppCompatTheme_actionBarWidgetTheme 12 +int styleable AppCompatTheme_actionButtonStyle 13 +int styleable AppCompatTheme_actionDropDownStyle 14 +int styleable AppCompatTheme_actionMenuTextAppearance 15 +int styleable AppCompatTheme_actionMenuTextColor 16 +int styleable AppCompatTheme_actionModeBackground 17 +int styleable AppCompatTheme_actionModeCloseButtonStyle 18 +int styleable AppCompatTheme_actionModeCloseDrawable 19 +int styleable AppCompatTheme_actionModeCopyDrawable 20 +int styleable AppCompatTheme_actionModeCutDrawable 21 +int styleable AppCompatTheme_actionModeFindDrawable 22 +int styleable AppCompatTheme_actionModePasteDrawable 23 +int styleable AppCompatTheme_actionModePopupWindowStyle 24 +int styleable AppCompatTheme_actionModeSelectAllDrawable 25 +int styleable AppCompatTheme_actionModeShareDrawable 26 +int styleable AppCompatTheme_actionModeSplitBackground 27 +int styleable AppCompatTheme_actionModeStyle 28 +int styleable AppCompatTheme_actionModeWebSearchDrawable 29 +int styleable AppCompatTheme_actionOverflowButtonStyle 30 +int styleable AppCompatTheme_actionOverflowMenuStyle 31 +int styleable AppCompatTheme_activityChooserViewStyle 32 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 +int styleable AppCompatTheme_alertDialogCenterButtons 34 +int styleable AppCompatTheme_alertDialogStyle 35 +int styleable AppCompatTheme_alertDialogTheme 36 +int styleable AppCompatTheme_autoCompleteTextViewStyle 37 +int styleable AppCompatTheme_borderlessButtonStyle 38 +int styleable AppCompatTheme_buttonBarButtonStyle 39 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 +int styleable AppCompatTheme_buttonBarStyle 43 +int styleable AppCompatTheme_buttonStyle 44 +int styleable AppCompatTheme_buttonStyleSmall 45 +int styleable AppCompatTheme_checkboxStyle 46 +int styleable AppCompatTheme_checkedTextViewStyle 47 +int styleable AppCompatTheme_colorAccent 48 +int styleable AppCompatTheme_colorBackgroundFloating 49 +int styleable AppCompatTheme_colorButtonNormal 50 +int styleable AppCompatTheme_colorControlActivated 51 +int styleable AppCompatTheme_colorControlHighlight 52 +int styleable AppCompatTheme_colorControlNormal 53 +int styleable AppCompatTheme_colorError 54 +int styleable AppCompatTheme_colorPrimary 55 +int styleable AppCompatTheme_colorPrimaryDark 56 +int styleable AppCompatTheme_colorSwitchThumbNormal 57 +int styleable AppCompatTheme_controlBackground 58 +int styleable AppCompatTheme_dialogCornerRadius 59 +int styleable AppCompatTheme_dialogPreferredPadding 60 +int styleable AppCompatTheme_dialogTheme 61 +int styleable AppCompatTheme_dividerHorizontal 62 +int styleable AppCompatTheme_dividerVertical 63 +int styleable AppCompatTheme_dropDownListViewStyle 64 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 65 +int styleable AppCompatTheme_editTextBackground 66 +int styleable AppCompatTheme_editTextColor 67 +int styleable AppCompatTheme_editTextStyle 68 +int styleable AppCompatTheme_homeAsUpIndicator 69 +int styleable AppCompatTheme_imageButtonStyle 70 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 71 +int styleable AppCompatTheme_listDividerAlertDialog 72 +int styleable AppCompatTheme_listMenuViewStyle 73 +int styleable AppCompatTheme_listPopupWindowStyle 74 +int styleable AppCompatTheme_listPreferredItemHeight 75 +int styleable AppCompatTheme_listPreferredItemHeightLarge 76 +int styleable AppCompatTheme_listPreferredItemHeightSmall 77 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 78 +int styleable AppCompatTheme_listPreferredItemPaddingRight 79 +int styleable AppCompatTheme_panelBackground 80 +int styleable AppCompatTheme_panelMenuListTheme 81 +int styleable AppCompatTheme_panelMenuListWidth 82 +int styleable AppCompatTheme_popupMenuStyle 83 +int styleable AppCompatTheme_popupWindowStyle 84 +int styleable AppCompatTheme_radioButtonStyle 85 +int styleable AppCompatTheme_ratingBarStyle 86 +int styleable AppCompatTheme_ratingBarStyleIndicator 87 +int styleable AppCompatTheme_ratingBarStyleSmall 88 +int styleable AppCompatTheme_searchViewStyle 89 +int styleable AppCompatTheme_seekBarStyle 90 +int styleable AppCompatTheme_selectableItemBackground 91 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 92 +int styleable AppCompatTheme_spinnerDropDownItemStyle 93 +int styleable AppCompatTheme_spinnerStyle 94 +int styleable AppCompatTheme_switchStyle 95 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 96 +int styleable AppCompatTheme_textAppearanceListItem 97 +int styleable AppCompatTheme_textAppearanceListItemSecondary 98 +int styleable AppCompatTheme_textAppearanceListItemSmall 99 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 100 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 102 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103 +int styleable AppCompatTheme_textColorAlertDialogListItem 104 +int styleable AppCompatTheme_textColorSearchUrl 105 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 106 +int styleable AppCompatTheme_toolbarStyle 107 +int styleable AppCompatTheme_tooltipForegroundColor 108 +int styleable AppCompatTheme_tooltipFrameBackground 109 +int styleable AppCompatTheme_viewInflaterClass 110 +int styleable AppCompatTheme_windowActionBar 111 +int styleable AppCompatTheme_windowActionBarOverlay 112 +int styleable AppCompatTheme_windowActionModeOverlay 113 +int styleable AppCompatTheme_windowFixedHeightMajor 114 +int styleable AppCompatTheme_windowFixedHeightMinor 115 +int styleable AppCompatTheme_windowFixedWidthMajor 116 +int styleable AppCompatTheme_windowFixedWidthMinor 117 +int styleable AppCompatTheme_windowMinWidthMajor 118 +int styleable AppCompatTheme_windowMinWidthMinor 119 +int styleable AppCompatTheme_windowNoTitle 120 +int[] styleable BottomAppBar { 0x7f030034, 0x7f0300c3, 0x7f0300c4, 0x7f0300c5, 0x7f0300c6, 0x7f0300e5 } +int styleable BottomAppBar_backgroundTint 0 +int styleable BottomAppBar_fabAlignmentMode 1 +int styleable BottomAppBar_fabCradleMargin 2 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 3 +int styleable BottomAppBar_fabCradleVerticalOffset 4 +int styleable BottomAppBar_hideOnScroll 5 +int[] styleable BottomNavigationView { 0x7f0300b5, 0x7f0300fa, 0x7f0300fc, 0x7f0300fe, 0x7f0300ff, 0x7f030103, 0x7f030104, 0x7f030105, 0x7f030107, 0x7f03012b } +int styleable BottomNavigationView_elevation 0 +int styleable BottomNavigationView_itemBackground 1 +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2 +int styleable BottomNavigationView_itemIconSize 3 +int styleable BottomNavigationView_itemIconTint 4 +int styleable BottomNavigationView_itemTextAppearanceActive 5 +int styleable BottomNavigationView_itemTextAppearanceInactive 6 +int styleable BottomNavigationView_itemTextColor 7 +int styleable BottomNavigationView_labelVisibilityMode 8 +int styleable BottomNavigationView_menu 9 +int[] styleable BottomSheetBehavior_Layout { 0x7f030038, 0x7f030039, 0x7f03003b, 0x7f03003c } +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 0 +int styleable BottomSheetBehavior_Layout_behavior_hideable 1 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 2 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 3 +int[] styleable ButtonBarLayout { 0x7f030026 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable CardView { 0x0101013f, 0x01010140, 0x7f030058, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a, 0x7f03009b } +int styleable CardView_android_minWidth 0 +int styleable CardView_android_minHeight 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 +int[] styleable Chip { 0x01010034, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030065, 0x7f030066, 0x7f030067, 0x7f030069, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f03006d, 0x7f03006e, 0x7f030073, 0x7f030074, 0x7f030075, 0x7f030077, 0x7f030078, 0x7f030079, 0x7f03007a, 0x7f03007b, 0x7f03007c, 0x7f03007d, 0x7f0300e3, 0x7f0300ed, 0x7f0300f1, 0x7f03014d, 0x7f030159, 0x7f0301ae, 0x7f0301b0 } +int styleable Chip_android_textAppearance 0 +int styleable Chip_android_ellipsize 1 +int styleable Chip_android_maxWidth 2 +int styleable Chip_android_text 3 +int styleable Chip_android_checkable 4 +int styleable Chip_checkedIcon 5 +int styleable Chip_checkedIconEnabled 6 +int styleable Chip_checkedIconVisible 7 +int styleable Chip_chipBackgroundColor 8 +int styleable Chip_chipCornerRadius 9 +int styleable Chip_chipEndPadding 10 +int styleable Chip_chipIcon 11 +int styleable Chip_chipIconEnabled 12 +int styleable Chip_chipIconSize 13 +int styleable Chip_chipIconTint 14 +int styleable Chip_chipIconVisible 15 +int styleable Chip_chipMinHeight 16 +int styleable Chip_chipStartPadding 17 +int styleable Chip_chipStrokeColor 18 +int styleable Chip_chipStrokeWidth 19 +int styleable Chip_closeIcon 20 +int styleable Chip_closeIconEnabled 21 +int styleable Chip_closeIconEndPadding 22 +int styleable Chip_closeIconSize 23 +int styleable Chip_closeIconStartPadding 24 +int styleable Chip_closeIconTint 25 +int styleable Chip_closeIconVisible 26 +int styleable Chip_hideMotionSpec 27 +int styleable Chip_iconEndPadding 28 +int styleable Chip_iconStartPadding 29 +int styleable Chip_rippleColor 30 +int styleable Chip_showMotionSpec 31 +int styleable Chip_textEndPadding 32 +int styleable Chip_textStartPadding 33 +int[] styleable ChipGroup { 0x7f030060, 0x7f03006f, 0x7f030070, 0x7f030071, 0x7f03015d, 0x7f03015e } +int styleable ChipGroup_checkedChip 0 +int styleable ChipGroup_chipSpacing 1 +int styleable ChipGroup_chipSpacingHorizontal 2 +int styleable ChipGroup_chipSpacingVertical 3 +int styleable ChipGroup_singleLine 4 +int styleable ChipGroup_singleSelection 5 +int[] styleable CollapsingToolbarLayout { 0x7f030081, 0x7f030082, 0x7f03009c, 0x7f0300bc, 0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f03014e, 0x7f030150, 0x7f03016e, 0x7f0301bb, 0x7f0301bc, 0x7f0301c6 } +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_contentScrim 2 +int styleable CollapsingToolbarLayout_expandedTitleGravity 3 +int styleable CollapsingToolbarLayout_expandedTitleMargin 4 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 10 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 11 +int styleable CollapsingToolbarLayout_statusBarScrim 12 +int styleable CollapsingToolbarLayout_title 13 +int styleable CollapsingToolbarLayout_titleEnabled 14 +int styleable CollapsingToolbarLayout_toolbarId 15 +int[] styleable CollapsingToolbarLayout_Layout { 0x7f03010e, 0x7f03010f } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f030027 } +int styleable ColorStateListItem_android_color 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_alpha 2 +int[] styleable CompoundButton { 0x01010107, 0x7f030056, 0x7f030057 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonTint 1 +int styleable CompoundButton_buttonTintMode 2 +int[] styleable CoordinatorLayout { 0x7f030106, 0x7f03016d } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable DesignTheme { 0x7f030041, 0x7f030042 } +int styleable DesignTheme_bottomSheetDialogTheme 0 +int styleable DesignTheme_bottomSheetStyle 1 +int[] styleable DrawerArrowToggle { 0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030083, 0x7f0300ae, 0x7f0300dc, 0x7f030162, 0x7f0301b2 } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable FloatingActionButton { 0x7f030034, 0x7f030035, 0x7f03003d, 0x7f0300b5, 0x7f0300c7, 0x7f0300c8, 0x7f0300e3, 0x7f0300eb, 0x7f030129, 0x7f030143, 0x7f03014d, 0x7f030159, 0x7f0301d0 } +int styleable FloatingActionButton_backgroundTint 0 +int styleable FloatingActionButton_backgroundTintMode 1 +int styleable FloatingActionButton_borderWidth 2 +int styleable FloatingActionButton_elevation 3 +int styleable FloatingActionButton_fabCustomSize 4 +int styleable FloatingActionButton_fabSize 5 +int styleable FloatingActionButton_hideMotionSpec 6 +int styleable FloatingActionButton_hoveredFocusedTranslationZ 7 +int styleable FloatingActionButton_maxImageSize 8 +int styleable FloatingActionButton_pressedTranslationZ 9 +int styleable FloatingActionButton_rippleColor 10 +int styleable FloatingActionButton_showMotionSpec 11 +int styleable FloatingActionButton_useCompatPadding 12 +int[] styleable FloatingActionButton_Behavior_Layout { 0x7f030037 } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int[] styleable FlowLayout { 0x7f030101, 0x7f030117 } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontWeight 1 +int styleable FontFamilyFont_android_fontStyle 2 +int styleable FontFamilyFont_android_ttcIndex 3 +int styleable FontFamilyFont_android_fontVariationSettings 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f0300db } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 } +int styleable GradientColor_android_startColor 0 +int styleable GradientColor_android_endColor 1 +int styleable GradientColor_android_type 2 +int styleable GradientColor_android_centerX 3 +int styleable GradientColor_android_centerY 4 +int styleable GradientColor_android_gradientRadius 5 +int styleable GradientColor_android_tileMode 6 +int styleable GradientColor_android_centerColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_endX 10 +int styleable GradientColor_android_endY 11 +int[] styleable GradientColorItem { 0x010101a5, 0x01010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f0300aa, 0x7f0300ac, 0x7f03012a, 0x7f030158 } +int styleable LinearLayoutCompat_android_gravity 0 +int styleable LinearLayoutCompat_android_orientation 1 +int styleable LinearLayoutCompat_android_baselineAligned 2 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_width 1 +int styleable LinearLayoutCompat_Layout_android_layout_height 2 +int styleable LinearLayoutCompat_Layout_android_layout_weight 3 +int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MaterialButton { 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f030034, 0x7f030035, 0x7f03009f, 0x7f0300ec, 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f2, 0x7f0300f3, 0x7f03014d, 0x7f03016f, 0x7f030170 } +int styleable MaterialButton_android_insetLeft 0 +int styleable MaterialButton_android_insetRight 1 +int styleable MaterialButton_android_insetTop 2 +int styleable MaterialButton_android_insetBottom 3 +int styleable MaterialButton_backgroundTint 4 +int styleable MaterialButton_backgroundTintMode 5 +int styleable MaterialButton_cornerRadius 6 +int styleable MaterialButton_icon 7 +int styleable MaterialButton_iconGravity 8 +int styleable MaterialButton_iconPadding 9 +int styleable MaterialButton_iconSize 10 +int styleable MaterialButton_iconTint 11 +int styleable MaterialButton_iconTintMode 12 +int styleable MaterialButton_rippleColor 13 +int styleable MaterialButton_strokeColor 14 +int styleable MaterialButton_strokeWidth 15 +int[] styleable MaterialCardView { 0x7f03016f, 0x7f030170 } +int styleable MaterialCardView_strokeColor 0 +int styleable MaterialCardView_strokeWidth 1 +int[] styleable MaterialComponentsTheme { 0x7f030041, 0x7f030042, 0x7f030068, 0x7f030072, 0x7f030076, 0x7f030084, 0x7f030085, 0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f0300b4, 0x7f0300cf, 0x7f030125, 0x7f030126, 0x7f030130, 0x7f03014f, 0x7f03015f, 0x7f030192, 0x7f030197, 0x7f030198, 0x7f030199, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f03019e, 0x7f03019f, 0x7f0301a0, 0x7f0301a5, 0x7f0301aa, 0x7f0301ab, 0x7f0301af } +int styleable MaterialComponentsTheme_bottomSheetDialogTheme 0 +int styleable MaterialComponentsTheme_bottomSheetStyle 1 +int styleable MaterialComponentsTheme_chipGroupStyle 2 +int styleable MaterialComponentsTheme_chipStandaloneStyle 3 +int styleable MaterialComponentsTheme_chipStyle 4 +int styleable MaterialComponentsTheme_colorAccent 5 +int styleable MaterialComponentsTheme_colorBackgroundFloating 6 +int styleable MaterialComponentsTheme_colorPrimary 7 +int styleable MaterialComponentsTheme_colorPrimaryDark 8 +int styleable MaterialComponentsTheme_colorSecondary 9 +int styleable MaterialComponentsTheme_editTextStyle 10 +int styleable MaterialComponentsTheme_floatingActionButtonStyle 11 +int styleable MaterialComponentsTheme_materialButtonStyle 12 +int styleable MaterialComponentsTheme_materialCardViewStyle 13 +int styleable MaterialComponentsTheme_navigationViewStyle 14 +int styleable MaterialComponentsTheme_scrimBackground 15 +int styleable MaterialComponentsTheme_snackbarButtonStyle 16 +int styleable MaterialComponentsTheme_tabStyle 17 +int styleable MaterialComponentsTheme_textAppearanceBody1 18 +int styleable MaterialComponentsTheme_textAppearanceBody2 19 +int styleable MaterialComponentsTheme_textAppearanceButton 20 +int styleable MaterialComponentsTheme_textAppearanceCaption 21 +int styleable MaterialComponentsTheme_textAppearanceHeadline1 22 +int styleable MaterialComponentsTheme_textAppearanceHeadline2 23 +int styleable MaterialComponentsTheme_textAppearanceHeadline3 24 +int styleable MaterialComponentsTheme_textAppearanceHeadline4 25 +int styleable MaterialComponentsTheme_textAppearanceHeadline5 26 +int styleable MaterialComponentsTheme_textAppearanceHeadline6 27 +int styleable MaterialComponentsTheme_textAppearanceOverline 28 +int styleable MaterialComponentsTheme_textAppearanceSubtitle1 29 +int styleable MaterialComponentsTheme_textAppearanceSubtitle2 30 +int styleable MaterialComponentsTheme_textInputStyle 31 +int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } +int styleable MenuGroup_android_enabled 0 +int styleable MenuGroup_android_id 1 +int styleable MenuGroup_android_visible 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_checkableBehavior 5 +int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f03000d, 0x7f03001f, 0x7f030020, 0x7f030028, 0x7f030090, 0x7f0300f2, 0x7f0300f3, 0x7f030131, 0x7f030157, 0x7f0301cb } +int styleable MenuItem_android_icon 0 +int styleable MenuItem_android_enabled 1 +int styleable MenuItem_android_id 2 +int styleable MenuItem_android_checked 3 +int styleable MenuItem_android_visible 4 +int styleable MenuItem_android_menuCategory 5 +int styleable MenuItem_android_orderInCategory 6 +int styleable MenuItem_android_title 7 +int styleable MenuItem_android_titleCondensed 8 +int styleable MenuItem_android_alphabeticShortcut 9 +int styleable MenuItem_android_numericShortcut 10 +int styleable MenuItem_android_checkable 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_actionLayout 13 +int styleable MenuItem_actionProviderClass 14 +int styleable MenuItem_actionViewClass 15 +int styleable MenuItem_alphabeticModifiers 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f030142, 0x7f030171 } +int styleable MenuView_android_windowAnimationStyle 0 +int styleable MenuView_android_itemTextAppearance 1 +int styleable MenuView_android_horizontalDivider 2 +int styleable MenuView_android_verticalDivider 3 +int styleable MenuView_android_headerBackground 4 +int styleable MenuView_android_itemBackground 5 +int styleable MenuView_android_itemIconDisabledAlpha 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f0300b5, 0x7f0300de, 0x7f0300fa, 0x7f0300fb, 0x7f0300fd, 0x7f0300ff, 0x7f030102, 0x7f030105, 0x7f03012b } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_maxWidth 2 +int styleable NavigationView_elevation 3 +int styleable NavigationView_headerLayout 4 +int styleable NavigationView_itemBackground 5 +int styleable NavigationView_itemHorizontalPadding 6 +int styleable NavigationView_itemIconPadding 7 +int styleable NavigationView_itemIconTint 8 +int styleable NavigationView_itemTextAppearance 9 +int styleable NavigationView_itemTextColor 10 +int styleable NavigationView_menu 11 +int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f030132 } +int styleable PopupWindow_android_popupBackground 0 +int styleable PopupWindow_android_popupAnimationStyle 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f030168 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable RecycleListView { 0x7f030133, 0x7f030136 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x010100c4, 0x010100f1, 0x7f0300c9, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f03010a, 0x7f03014c, 0x7f030161, 0x7f030167 } +int styleable RecyclerView_android_orientation 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_fastScrollEnabled 2 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 3 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 4 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 5 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 6 +int styleable RecyclerView_layoutManager 7 +int styleable RecyclerView_reverseLayout 8 +int styleable RecyclerView_spanCount 9 +int styleable RecyclerView_stackFromEnd 10 +int[] styleable ScrimInsetsFrameLayout { 0x7f0300f8 } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollingViewBehavior_Layout { 0x7f03003a } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f030077, 0x7f03008f, 0x7f0300a5, 0x7f0300dd, 0x7f0300f4, 0x7f030109, 0x7f030146, 0x7f030147, 0x7f030151, 0x7f030152, 0x7f030172, 0x7f030177, 0x7f0301d2 } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_maxWidth 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_imeOptions 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable Snackbar { 0x7f03015f, 0x7f030160 } +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int[] styleable SnackbarLayout { 0x0101011f, 0x7f0300b5, 0x7f030127 } +int styleable SnackbarLayout_android_maxWidth 0 +int styleable SnackbarLayout_elevation 1 +int styleable SnackbarLayout_maxActionInlineWidth 2 +int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f030140 } +int styleable Spinner_android_entries 0 +int styleable Spinner_android_popupBackground 1 +int styleable Spinner_android_prompt 2 +int styleable Spinner_android_dropDownWidth 3 +int styleable Spinner_popupTheme 4 +int[] styleable StateListDrawable { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } +int styleable StateListDrawable_android_dither 0 +int styleable StateListDrawable_android_visible 1 +int styleable StateListDrawable_android_variablePadding 2 +int styleable StateListDrawable_android_constantSize 3 +int styleable StateListDrawable_android_enterFadeDuration 4 +int styleable StateListDrawable_android_exitFadeDuration 5 +int[] styleable StateListDrawableItem { 0x01010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f03015a, 0x7f030165, 0x7f030178, 0x7f030179, 0x7f03017b, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301cc, 0x7f0301cd, 0x7f0301ce } +int styleable SwitchCompat_android_textOn 0 +int styleable SwitchCompat_android_textOff 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x7f03017c, 0x7f03017d, 0x7f03017e, 0x7f03017f, 0x7f030180, 0x7f030181, 0x7f030182, 0x7f030183, 0x7f030184, 0x7f030185, 0x7f030186, 0x7f030187, 0x7f030188, 0x7f030189, 0x7f03018a, 0x7f03018b, 0x7f03018c, 0x7f03018d, 0x7f03018e, 0x7f03018f, 0x7f030190, 0x7f030191, 0x7f030193, 0x7f030194, 0x7f030195 } +int styleable TabLayout_tabBackground 0 +int styleable TabLayout_tabContentStart 1 +int styleable TabLayout_tabGravity 2 +int styleable TabLayout_tabIconTint 3 +int styleable TabLayout_tabIconTintMode 4 +int styleable TabLayout_tabIndicator 5 +int styleable TabLayout_tabIndicatorAnimationDuration 6 +int styleable TabLayout_tabIndicatorColor 7 +int styleable TabLayout_tabIndicatorFullWidth 8 +int styleable TabLayout_tabIndicatorGravity 9 +int styleable TabLayout_tabIndicatorHeight 10 +int styleable TabLayout_tabInlineLabel 11 +int styleable TabLayout_tabMaxWidth 12 +int styleable TabLayout_tabMinWidth 13 +int styleable TabLayout_tabMode 14 +int styleable TabLayout_tabPadding 15 +int styleable TabLayout_tabPaddingBottom 16 +int styleable TabLayout_tabPaddingEnd 17 +int styleable TabLayout_tabPaddingStart 18 +int styleable TabLayout_tabPaddingTop 19 +int styleable TabLayout_tabRippleColor 20 +int styleable TabLayout_tabSelectedTextColor 21 +int styleable TabLayout_tabTextAppearance 22 +int styleable TabLayout_tabTextColor 23 +int styleable TabLayout_tabUnboundedRipple 24 +int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f0300d1, 0x7f030196 } +int styleable TextAppearance_android_textSize 0 +int styleable TextAppearance_android_typeface 1 +int styleable TextAppearance_android_textStyle 2 +int styleable TextAppearance_android_textColor 3 +int styleable TextAppearance_android_textColorHint 4 +int styleable TextAppearance_android_textColorLink 5 +int styleable TextAppearance_android_shadowColor 6 +int styleable TextAppearance_android_shadowDx 7 +int styleable TextAppearance_android_shadowDy 8 +int styleable TextAppearance_android_shadowRadius 9 +int styleable TextAppearance_android_fontFamily 10 +int styleable TextAppearance_fontFamily 11 +int styleable TextAppearance_textAllCaps 12 +int[] styleable TextInputLayout { 0x0101009a, 0x01010150, 0x7f030043, 0x7f030044, 0x7f030045, 0x7f030046, 0x7f030047, 0x7f030048, 0x7f030049, 0x7f03004a, 0x7f03004b, 0x7f0300a0, 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f0300b8, 0x7f0300b9, 0x7f0300e0, 0x7f0300e1, 0x7f0300e2, 0x7f0300e6, 0x7f0300e7, 0x7f0300e8, 0x7f03013a, 0x7f03013b, 0x7f03013c, 0x7f03013d, 0x7f03013e } +int styleable TextInputLayout_android_textColorHint 0 +int styleable TextInputLayout_android_hint 1 +int styleable TextInputLayout_boxBackgroundColor 2 +int styleable TextInputLayout_boxBackgroundMode 3 +int styleable TextInputLayout_boxCollapsedPaddingTop 4 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 5 +int styleable TextInputLayout_boxCornerRadiusBottomStart 6 +int styleable TextInputLayout_boxCornerRadiusTopEnd 7 +int styleable TextInputLayout_boxCornerRadiusTopStart 8 +int styleable TextInputLayout_boxStrokeColor 9 +int styleable TextInputLayout_boxStrokeWidth 10 +int styleable TextInputLayout_counterEnabled 11 +int styleable TextInputLayout_counterMaxLength 12 +int styleable TextInputLayout_counterOverflowTextAppearance 13 +int styleable TextInputLayout_counterTextAppearance 14 +int styleable TextInputLayout_errorEnabled 15 +int styleable TextInputLayout_errorTextAppearance 16 +int styleable TextInputLayout_helperText 17 +int styleable TextInputLayout_helperTextEnabled 18 +int styleable TextInputLayout_helperTextTextAppearance 19 +int styleable TextInputLayout_hintAnimationEnabled 20 +int styleable TextInputLayout_hintEnabled 21 +int styleable TextInputLayout_hintTextAppearance 22 +int styleable TextInputLayout_passwordToggleContentDescription 23 +int styleable TextInputLayout_passwordToggleDrawable 24 +int styleable TextInputLayout_passwordToggleEnabled 25 +int styleable TextInputLayout_passwordToggleTint 26 +int styleable TextInputLayout_passwordToggleTintMode 27 +int[] styleable ThemeEnforcement { 0x01010034, 0x7f0300b6, 0x7f0300b7 } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f030051, 0x7f03007f, 0x7f030080, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f030123, 0x7f030124, 0x7f030128, 0x7f03012d, 0x7f03012e, 0x7f030140, 0x7f030173, 0x7f030174, 0x7f030175, 0x7f0301bb, 0x7f0301bd, 0x7f0301be, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_navigationContentDescription 14 +int styleable Toolbar_navigationIcon 15 +int styleable Toolbar_popupTheme 16 +int styleable Toolbar_subtitle 17 +int styleable Toolbar_subtitleTextAppearance 18 +int styleable Toolbar_subtitleTextColor 19 +int styleable Toolbar_title 20 +int styleable Toolbar_titleMargin 21 +int styleable Toolbar_titleMarginBottom 22 +int styleable Toolbar_titleMarginEnd 23 +int styleable Toolbar_titleMarginStart 24 +int styleable Toolbar_titleMarginTop 25 +int styleable Toolbar_titleMargins 26 +int styleable Toolbar_titleTextAppearance 27 +int styleable Toolbar_titleTextColor 28 +int[] styleable View { 0x01010000, 0x010100da, 0x7f030134, 0x7f030135, 0x7f0301b1 } +int styleable View_android_theme 0 +int styleable View_android_focusable 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f030034, 0x7f030035 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_layout 1 +int styleable ViewStubCompat_android_inflatedId 2 +int xml network_security_config 0x7f100000 diff --git a/SmartFritz/build/intermediates/symbols/release/R.txt b/SmartFritz/build/intermediates/symbols/release/R.txt new file mode 100644 index 0000000000000000000000000000000000000000..487a97950821799e0eea5329a8774abc68d1ce4c --- /dev/null +++ b/SmartFritz/build/intermediates/symbols/release/R.txt @@ -0,0 +1,2576 @@ +int anim abc_fade_in 0x7f010000 +int anim abc_fade_out 0x7f010001 +int anim abc_grow_fade_in_from_bottom 0x7f010002 +int anim abc_popup_enter 0x7f010003 +int anim abc_popup_exit 0x7f010004 +int anim abc_shrink_fade_out_from_bottom 0x7f010005 +int anim abc_slide_in_bottom 0x7f010006 +int anim abc_slide_in_top 0x7f010007 +int anim abc_slide_out_bottom 0x7f010008 +int anim abc_slide_out_top 0x7f010009 +int anim abc_tooltip_enter 0x7f01000a +int anim abc_tooltip_exit 0x7f01000b +int anim design_bottom_sheet_slide_in 0x7f01000c +int anim design_bottom_sheet_slide_out 0x7f01000d +int anim design_snackbar_in 0x7f01000e +int anim design_snackbar_out 0x7f01000f +int animator design_appbar_state_list_animator 0x7f020000 +int animator design_fab_hide_motion_spec 0x7f020001 +int animator design_fab_show_motion_spec 0x7f020002 +int animator mtrl_btn_state_list_anim 0x7f020003 +int animator mtrl_btn_unelevated_state_list_anim 0x7f020004 +int animator mtrl_chip_state_list_anim 0x7f020005 +int animator mtrl_fab_hide_motion_spec 0x7f020006 +int animator mtrl_fab_show_motion_spec 0x7f020007 +int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020008 +int animator mtrl_fab_transformation_sheet_expand_spec 0x7f020009 +int attr actionBarDivider 0x7f030000 +int attr actionBarItemBackground 0x7f030001 +int attr actionBarPopupTheme 0x7f030002 +int attr actionBarSize 0x7f030003 +int attr actionBarSplitStyle 0x7f030004 +int attr actionBarStyle 0x7f030005 +int attr actionBarTabBarStyle 0x7f030006 +int attr actionBarTabStyle 0x7f030007 +int attr actionBarTabTextStyle 0x7f030008 +int attr actionBarTheme 0x7f030009 +int attr actionBarWidgetTheme 0x7f03000a +int attr actionButtonStyle 0x7f03000b +int attr actionDropDownStyle 0x7f03000c +int attr actionLayout 0x7f03000d +int attr actionMenuTextAppearance 0x7f03000e +int attr actionMenuTextColor 0x7f03000f +int attr actionModeBackground 0x7f030010 +int attr actionModeCloseButtonStyle 0x7f030011 +int attr actionModeCloseDrawable 0x7f030012 +int attr actionModeCopyDrawable 0x7f030013 +int attr actionModeCutDrawable 0x7f030014 +int attr actionModeFindDrawable 0x7f030015 +int attr actionModePasteDrawable 0x7f030016 +int attr actionModePopupWindowStyle 0x7f030017 +int attr actionModeSelectAllDrawable 0x7f030018 +int attr actionModeShareDrawable 0x7f030019 +int attr actionModeSplitBackground 0x7f03001a +int attr actionModeStyle 0x7f03001b +int attr actionModeWebSearchDrawable 0x7f03001c +int attr actionOverflowButtonStyle 0x7f03001d +int attr actionOverflowMenuStyle 0x7f03001e +int attr actionProviderClass 0x7f03001f +int attr actionViewClass 0x7f030020 +int attr activityChooserViewStyle 0x7f030021 +int attr alertDialogButtonGroupStyle 0x7f030022 +int attr alertDialogCenterButtons 0x7f030023 +int attr alertDialogStyle 0x7f030024 +int attr alertDialogTheme 0x7f030025 +int attr allowStacking 0x7f030026 +int attr alpha 0x7f030027 +int attr alphabeticModifiers 0x7f030028 +int attr arrowHeadLength 0x7f030029 +int attr arrowShaftLength 0x7f03002a +int attr autoCompleteTextViewStyle 0x7f03002b +int attr autoSizeMaxTextSize 0x7f03002c +int attr autoSizeMinTextSize 0x7f03002d +int attr autoSizePresetSizes 0x7f03002e +int attr autoSizeStepGranularity 0x7f03002f +int attr autoSizeTextType 0x7f030030 +int attr background 0x7f030031 +int attr backgroundSplit 0x7f030032 +int attr backgroundStacked 0x7f030033 +int attr backgroundTint 0x7f030034 +int attr backgroundTintMode 0x7f030035 +int attr barLength 0x7f030036 +int attr behavior_autoHide 0x7f030037 +int attr behavior_fitToContents 0x7f030038 +int attr behavior_hideable 0x7f030039 +int attr behavior_overlapTop 0x7f03003a +int attr behavior_peekHeight 0x7f03003b +int attr behavior_skipCollapsed 0x7f03003c +int attr borderWidth 0x7f03003d +int attr borderlessButtonStyle 0x7f03003e +int attr bottomAppBarStyle 0x7f03003f +int attr bottomNavigationStyle 0x7f030040 +int attr bottomSheetDialogTheme 0x7f030041 +int attr bottomSheetStyle 0x7f030042 +int attr boxBackgroundColor 0x7f030043 +int attr boxBackgroundMode 0x7f030044 +int attr boxCollapsedPaddingTop 0x7f030045 +int attr boxCornerRadiusBottomEnd 0x7f030046 +int attr boxCornerRadiusBottomStart 0x7f030047 +int attr boxCornerRadiusTopEnd 0x7f030048 +int attr boxCornerRadiusTopStart 0x7f030049 +int attr boxStrokeColor 0x7f03004a +int attr boxStrokeWidth 0x7f03004b +int attr buttonBarButtonStyle 0x7f03004c +int attr buttonBarNegativeButtonStyle 0x7f03004d +int attr buttonBarNeutralButtonStyle 0x7f03004e +int attr buttonBarPositiveButtonStyle 0x7f03004f +int attr buttonBarStyle 0x7f030050 +int attr buttonGravity 0x7f030051 +int attr buttonIconDimen 0x7f030052 +int attr buttonPanelSideLayout 0x7f030053 +int attr buttonStyle 0x7f030054 +int attr buttonStyleSmall 0x7f030055 +int attr buttonTint 0x7f030056 +int attr buttonTintMode 0x7f030057 +int attr cardBackgroundColor 0x7f030058 +int attr cardCornerRadius 0x7f030059 +int attr cardElevation 0x7f03005a +int attr cardMaxElevation 0x7f03005b +int attr cardPreventCornerOverlap 0x7f03005c +int attr cardUseCompatPadding 0x7f03005d +int attr cardViewStyle 0x7f03005e +int attr checkboxStyle 0x7f03005f +int attr checkedChip 0x7f030060 +int attr checkedIcon 0x7f030061 +int attr checkedIconEnabled 0x7f030062 +int attr checkedIconVisible 0x7f030063 +int attr checkedTextViewStyle 0x7f030064 +int attr chipBackgroundColor 0x7f030065 +int attr chipCornerRadius 0x7f030066 +int attr chipEndPadding 0x7f030067 +int attr chipGroupStyle 0x7f030068 +int attr chipIcon 0x7f030069 +int attr chipIconEnabled 0x7f03006a +int attr chipIconSize 0x7f03006b +int attr chipIconTint 0x7f03006c +int attr chipIconVisible 0x7f03006d +int attr chipMinHeight 0x7f03006e +int attr chipSpacing 0x7f03006f +int attr chipSpacingHorizontal 0x7f030070 +int attr chipSpacingVertical 0x7f030071 +int attr chipStandaloneStyle 0x7f030072 +int attr chipStartPadding 0x7f030073 +int attr chipStrokeColor 0x7f030074 +int attr chipStrokeWidth 0x7f030075 +int attr chipStyle 0x7f030076 +int attr closeIcon 0x7f030077 +int attr closeIconEnabled 0x7f030078 +int attr closeIconEndPadding 0x7f030079 +int attr closeIconSize 0x7f03007a +int attr closeIconStartPadding 0x7f03007b +int attr closeIconTint 0x7f03007c +int attr closeIconVisible 0x7f03007d +int attr closeItemLayout 0x7f03007e +int attr collapseContentDescription 0x7f03007f +int attr collapseIcon 0x7f030080 +int attr collapsedTitleGravity 0x7f030081 +int attr collapsedTitleTextAppearance 0x7f030082 +int attr color 0x7f030083 +int attr colorAccent 0x7f030084 +int attr colorBackgroundFloating 0x7f030085 +int attr colorButtonNormal 0x7f030086 +int attr colorControlActivated 0x7f030087 +int attr colorControlHighlight 0x7f030088 +int attr colorControlNormal 0x7f030089 +int attr colorError 0x7f03008a +int attr colorPrimary 0x7f03008b +int attr colorPrimaryDark 0x7f03008c +int attr colorSecondary 0x7f03008d +int attr colorSwitchThumbNormal 0x7f03008e +int attr commitIcon 0x7f03008f +int attr contentDescription 0x7f030090 +int attr contentInsetEnd 0x7f030091 +int attr contentInsetEndWithActions 0x7f030092 +int attr contentInsetLeft 0x7f030093 +int attr contentInsetRight 0x7f030094 +int attr contentInsetStart 0x7f030095 +int attr contentInsetStartWithNavigation 0x7f030096 +int attr contentPadding 0x7f030097 +int attr contentPaddingBottom 0x7f030098 +int attr contentPaddingLeft 0x7f030099 +int attr contentPaddingRight 0x7f03009a +int attr contentPaddingTop 0x7f03009b +int attr contentScrim 0x7f03009c +int attr controlBackground 0x7f03009d +int attr coordinatorLayoutStyle 0x7f03009e +int attr cornerRadius 0x7f03009f +int attr counterEnabled 0x7f0300a0 +int attr counterMaxLength 0x7f0300a1 +int attr counterOverflowTextAppearance 0x7f0300a2 +int attr counterTextAppearance 0x7f0300a3 +int attr customNavigationLayout 0x7f0300a4 +int attr defaultQueryHint 0x7f0300a5 +int attr dialogCornerRadius 0x7f0300a6 +int attr dialogPreferredPadding 0x7f0300a7 +int attr dialogTheme 0x7f0300a8 +int attr displayOptions 0x7f0300a9 +int attr divider 0x7f0300aa +int attr dividerHorizontal 0x7f0300ab +int attr dividerPadding 0x7f0300ac +int attr dividerVertical 0x7f0300ad +int attr drawableSize 0x7f0300ae +int attr drawerArrowStyle 0x7f0300af +int attr dropDownListViewStyle 0x7f0300b0 +int attr dropdownListPreferredItemHeight 0x7f0300b1 +int attr editTextBackground 0x7f0300b2 +int attr editTextColor 0x7f0300b3 +int attr editTextStyle 0x7f0300b4 +int attr elevation 0x7f0300b5 +int attr enforceMaterialTheme 0x7f0300b6 +int attr enforceTextAppearance 0x7f0300b7 +int attr errorEnabled 0x7f0300b8 +int attr errorTextAppearance 0x7f0300b9 +int attr expandActivityOverflowButtonDrawable 0x7f0300ba +int attr expanded 0x7f0300bb +int attr expandedTitleGravity 0x7f0300bc +int attr expandedTitleMargin 0x7f0300bd +int attr expandedTitleMarginBottom 0x7f0300be +int attr expandedTitleMarginEnd 0x7f0300bf +int attr expandedTitleMarginStart 0x7f0300c0 +int attr expandedTitleMarginTop 0x7f0300c1 +int attr expandedTitleTextAppearance 0x7f0300c2 +int attr fabAlignmentMode 0x7f0300c3 +int attr fabCradleMargin 0x7f0300c4 +int attr fabCradleRoundedCornerRadius 0x7f0300c5 +int attr fabCradleVerticalOffset 0x7f0300c6 +int attr fabCustomSize 0x7f0300c7 +int attr fabSize 0x7f0300c8 +int attr fastScrollEnabled 0x7f0300c9 +int attr fastScrollHorizontalThumbDrawable 0x7f0300ca +int attr fastScrollHorizontalTrackDrawable 0x7f0300cb +int attr fastScrollVerticalThumbDrawable 0x7f0300cc +int attr fastScrollVerticalTrackDrawable 0x7f0300cd +int attr firstBaselineToTopHeight 0x7f0300ce +int attr floatingActionButtonStyle 0x7f0300cf +int attr font 0x7f0300d0 +int attr fontFamily 0x7f0300d1 +int attr fontProviderAuthority 0x7f0300d2 +int attr fontProviderCerts 0x7f0300d3 +int attr fontProviderFetchStrategy 0x7f0300d4 +int attr fontProviderFetchTimeout 0x7f0300d5 +int attr fontProviderPackage 0x7f0300d6 +int attr fontProviderQuery 0x7f0300d7 +int attr fontStyle 0x7f0300d8 +int attr fontVariationSettings 0x7f0300d9 +int attr fontWeight 0x7f0300da +int attr foregroundInsidePadding 0x7f0300db +int attr gapBetweenBars 0x7f0300dc +int attr goIcon 0x7f0300dd +int attr headerLayout 0x7f0300de +int attr height 0x7f0300df +int attr helperText 0x7f0300e0 +int attr helperTextEnabled 0x7f0300e1 +int attr helperTextTextAppearance 0x7f0300e2 +int attr hideMotionSpec 0x7f0300e3 +int attr hideOnContentScroll 0x7f0300e4 +int attr hideOnScroll 0x7f0300e5 +int attr hintAnimationEnabled 0x7f0300e6 +int attr hintEnabled 0x7f0300e7 +int attr hintTextAppearance 0x7f0300e8 +int attr homeAsUpIndicator 0x7f0300e9 +int attr homeLayout 0x7f0300ea +int attr hoveredFocusedTranslationZ 0x7f0300eb +int attr icon 0x7f0300ec +int attr iconEndPadding 0x7f0300ed +int attr iconGravity 0x7f0300ee +int attr iconPadding 0x7f0300ef +int attr iconSize 0x7f0300f0 +int attr iconStartPadding 0x7f0300f1 +int attr iconTint 0x7f0300f2 +int attr iconTintMode 0x7f0300f3 +int attr iconifiedByDefault 0x7f0300f4 +int attr imageButtonStyle 0x7f0300f5 +int attr indeterminateProgressStyle 0x7f0300f6 +int attr initialActivityCount 0x7f0300f7 +int attr insetForeground 0x7f0300f8 +int attr isLightTheme 0x7f0300f9 +int attr itemBackground 0x7f0300fa +int attr itemHorizontalPadding 0x7f0300fb +int attr itemHorizontalTranslationEnabled 0x7f0300fc +int attr itemIconPadding 0x7f0300fd +int attr itemIconSize 0x7f0300fe +int attr itemIconTint 0x7f0300ff +int attr itemPadding 0x7f030100 +int attr itemSpacing 0x7f030101 +int attr itemTextAppearance 0x7f030102 +int attr itemTextAppearanceActive 0x7f030103 +int attr itemTextAppearanceInactive 0x7f030104 +int attr itemTextColor 0x7f030105 +int attr keylines 0x7f030106 +int attr labelVisibilityMode 0x7f030107 +int attr lastBaselineToBottomHeight 0x7f030108 +int attr layout 0x7f030109 +int attr layoutManager 0x7f03010a +int attr layout_anchor 0x7f03010b +int attr layout_anchorGravity 0x7f03010c +int attr layout_behavior 0x7f03010d +int attr layout_collapseMode 0x7f03010e +int attr layout_collapseParallaxMultiplier 0x7f03010f +int attr layout_dodgeInsetEdges 0x7f030110 +int attr layout_insetEdge 0x7f030111 +int attr layout_keyline 0x7f030112 +int attr layout_scrollFlags 0x7f030113 +int attr layout_scrollInterpolator 0x7f030114 +int attr liftOnScroll 0x7f030115 +int attr lineHeight 0x7f030116 +int attr lineSpacing 0x7f030117 +int attr listChoiceBackgroundIndicator 0x7f030118 +int attr listDividerAlertDialog 0x7f030119 +int attr listItemLayout 0x7f03011a +int attr listLayout 0x7f03011b +int attr listMenuViewStyle 0x7f03011c +int attr listPopupWindowStyle 0x7f03011d +int attr listPreferredItemHeight 0x7f03011e +int attr listPreferredItemHeightLarge 0x7f03011f +int attr listPreferredItemHeightSmall 0x7f030120 +int attr listPreferredItemPaddingLeft 0x7f030121 +int attr listPreferredItemPaddingRight 0x7f030122 +int attr logo 0x7f030123 +int attr logoDescription 0x7f030124 +int attr materialButtonStyle 0x7f030125 +int attr materialCardViewStyle 0x7f030126 +int attr maxActionInlineWidth 0x7f030127 +int attr maxButtonHeight 0x7f030128 +int attr maxImageSize 0x7f030129 +int attr measureWithLargestChild 0x7f03012a +int attr menu 0x7f03012b +int attr multiChoiceItemLayout 0x7f03012c +int attr navigationContentDescription 0x7f03012d +int attr navigationIcon 0x7f03012e +int attr navigationMode 0x7f03012f +int attr navigationViewStyle 0x7f030130 +int attr numericModifiers 0x7f030131 +int attr overlapAnchor 0x7f030132 +int attr paddingBottomNoButtons 0x7f030133 +int attr paddingEnd 0x7f030134 +int attr paddingStart 0x7f030135 +int attr paddingTopNoTitle 0x7f030136 +int attr panelBackground 0x7f030137 +int attr panelMenuListTheme 0x7f030138 +int attr panelMenuListWidth 0x7f030139 +int attr passwordToggleContentDescription 0x7f03013a +int attr passwordToggleDrawable 0x7f03013b +int attr passwordToggleEnabled 0x7f03013c +int attr passwordToggleTint 0x7f03013d +int attr passwordToggleTintMode 0x7f03013e +int attr popupMenuStyle 0x7f03013f +int attr popupTheme 0x7f030140 +int attr popupWindowStyle 0x7f030141 +int attr preserveIconSpacing 0x7f030142 +int attr pressedTranslationZ 0x7f030143 +int attr progressBarPadding 0x7f030144 +int attr progressBarStyle 0x7f030145 +int attr queryBackground 0x7f030146 +int attr queryHint 0x7f030147 +int attr radioButtonStyle 0x7f030148 +int attr ratingBarStyle 0x7f030149 +int attr ratingBarStyleIndicator 0x7f03014a +int attr ratingBarStyleSmall 0x7f03014b +int attr reverseLayout 0x7f03014c +int attr rippleColor 0x7f03014d +int attr scrimAnimationDuration 0x7f03014e +int attr scrimBackground 0x7f03014f +int attr scrimVisibleHeightTrigger 0x7f030150 +int attr searchHintIcon 0x7f030151 +int attr searchIcon 0x7f030152 +int attr searchViewStyle 0x7f030153 +int attr seekBarStyle 0x7f030154 +int attr selectableItemBackground 0x7f030155 +int attr selectableItemBackgroundBorderless 0x7f030156 +int attr showAsAction 0x7f030157 +int attr showDividers 0x7f030158 +int attr showMotionSpec 0x7f030159 +int attr showText 0x7f03015a +int attr showTitle 0x7f03015b +int attr singleChoiceItemLayout 0x7f03015c +int attr singleLine 0x7f03015d +int attr singleSelection 0x7f03015e +int attr snackbarButtonStyle 0x7f03015f +int attr snackbarStyle 0x7f030160 +int attr spanCount 0x7f030161 +int attr spinBars 0x7f030162 +int attr spinnerDropDownItemStyle 0x7f030163 +int attr spinnerStyle 0x7f030164 +int attr splitTrack 0x7f030165 +int attr srcCompat 0x7f030166 +int attr stackFromEnd 0x7f030167 +int attr state_above_anchor 0x7f030168 +int attr state_collapsed 0x7f030169 +int attr state_collapsible 0x7f03016a +int attr state_liftable 0x7f03016b +int attr state_lifted 0x7f03016c +int attr statusBarBackground 0x7f03016d +int attr statusBarScrim 0x7f03016e +int attr strokeColor 0x7f03016f +int attr strokeWidth 0x7f030170 +int attr subMenuArrow 0x7f030171 +int attr submitBackground 0x7f030172 +int attr subtitle 0x7f030173 +int attr subtitleTextAppearance 0x7f030174 +int attr subtitleTextColor 0x7f030175 +int attr subtitleTextStyle 0x7f030176 +int attr suggestionRowLayout 0x7f030177 +int attr switchMinWidth 0x7f030178 +int attr switchPadding 0x7f030179 +int attr switchStyle 0x7f03017a +int attr switchTextAppearance 0x7f03017b +int attr tabBackground 0x7f03017c +int attr tabContentStart 0x7f03017d +int attr tabGravity 0x7f03017e +int attr tabIconTint 0x7f03017f +int attr tabIconTintMode 0x7f030180 +int attr tabIndicator 0x7f030181 +int attr tabIndicatorAnimationDuration 0x7f030182 +int attr tabIndicatorColor 0x7f030183 +int attr tabIndicatorFullWidth 0x7f030184 +int attr tabIndicatorGravity 0x7f030185 +int attr tabIndicatorHeight 0x7f030186 +int attr tabInlineLabel 0x7f030187 +int attr tabMaxWidth 0x7f030188 +int attr tabMinWidth 0x7f030189 +int attr tabMode 0x7f03018a +int attr tabPadding 0x7f03018b +int attr tabPaddingBottom 0x7f03018c +int attr tabPaddingEnd 0x7f03018d +int attr tabPaddingStart 0x7f03018e +int attr tabPaddingTop 0x7f03018f +int attr tabRippleColor 0x7f030190 +int attr tabSelectedTextColor 0x7f030191 +int attr tabStyle 0x7f030192 +int attr tabTextAppearance 0x7f030193 +int attr tabTextColor 0x7f030194 +int attr tabUnboundedRipple 0x7f030195 +int attr textAllCaps 0x7f030196 +int attr textAppearanceBody1 0x7f030197 +int attr textAppearanceBody2 0x7f030198 +int attr textAppearanceButton 0x7f030199 +int attr textAppearanceCaption 0x7f03019a +int attr textAppearanceHeadline1 0x7f03019b +int attr textAppearanceHeadline2 0x7f03019c +int attr textAppearanceHeadline3 0x7f03019d +int attr textAppearanceHeadline4 0x7f03019e +int attr textAppearanceHeadline5 0x7f03019f +int attr textAppearanceHeadline6 0x7f0301a0 +int attr textAppearanceLargePopupMenu 0x7f0301a1 +int attr textAppearanceListItem 0x7f0301a2 +int attr textAppearanceListItemSecondary 0x7f0301a3 +int attr textAppearanceListItemSmall 0x7f0301a4 +int attr textAppearanceOverline 0x7f0301a5 +int attr textAppearancePopupMenuHeader 0x7f0301a6 +int attr textAppearanceSearchResultSubtitle 0x7f0301a7 +int attr textAppearanceSearchResultTitle 0x7f0301a8 +int attr textAppearanceSmallPopupMenu 0x7f0301a9 +int attr textAppearanceSubtitle1 0x7f0301aa +int attr textAppearanceSubtitle2 0x7f0301ab +int attr textColorAlertDialogListItem 0x7f0301ac +int attr textColorSearchUrl 0x7f0301ad +int attr textEndPadding 0x7f0301ae +int attr textInputStyle 0x7f0301af +int attr textStartPadding 0x7f0301b0 +int attr theme 0x7f0301b1 +int attr thickness 0x7f0301b2 +int attr thumbTextPadding 0x7f0301b3 +int attr thumbTint 0x7f0301b4 +int attr thumbTintMode 0x7f0301b5 +int attr tickMark 0x7f0301b6 +int attr tickMarkTint 0x7f0301b7 +int attr tickMarkTintMode 0x7f0301b8 +int attr tint 0x7f0301b9 +int attr tintMode 0x7f0301ba +int attr title 0x7f0301bb +int attr titleEnabled 0x7f0301bc +int attr titleMargin 0x7f0301bd +int attr titleMarginBottom 0x7f0301be +int attr titleMarginEnd 0x7f0301bf +int attr titleMarginStart 0x7f0301c0 +int attr titleMarginTop 0x7f0301c1 +int attr titleMargins 0x7f0301c2 +int attr titleTextAppearance 0x7f0301c3 +int attr titleTextColor 0x7f0301c4 +int attr titleTextStyle 0x7f0301c5 +int attr toolbarId 0x7f0301c6 +int attr toolbarNavigationButtonStyle 0x7f0301c7 +int attr toolbarStyle 0x7f0301c8 +int attr tooltipForegroundColor 0x7f0301c9 +int attr tooltipFrameBackground 0x7f0301ca +int attr tooltipText 0x7f0301cb +int attr track 0x7f0301cc +int attr trackTint 0x7f0301cd +int attr trackTintMode 0x7f0301ce +int attr ttcIndex 0x7f0301cf +int attr useCompatPadding 0x7f0301d0 +int attr viewInflaterClass 0x7f0301d1 +int attr voiceIcon 0x7f0301d2 +int attr windowActionBar 0x7f0301d3 +int attr windowActionBarOverlay 0x7f0301d4 +int attr windowActionModeOverlay 0x7f0301d5 +int attr windowFixedHeightMajor 0x7f0301d6 +int attr windowFixedHeightMinor 0x7f0301d7 +int attr windowFixedWidthMajor 0x7f0301d8 +int attr windowFixedWidthMinor 0x7f0301d9 +int attr windowMinWidthMajor 0x7f0301da +int attr windowMinWidthMinor 0x7f0301db +int attr windowNoTitle 0x7f0301dc +int bool abc_action_bar_embed_tabs 0x7f040000 +int bool abc_allow_stacked_button_bar 0x7f040001 +int bool abc_config_actionMenuItemAllCaps 0x7f040002 +int bool mtrl_btn_textappearance_all_caps 0x7f040003 +int color abc_background_cache_hint_selector_material_dark 0x7f050000 +int color abc_background_cache_hint_selector_material_light 0x7f050001 +int color abc_btn_colored_borderless_text_material 0x7f050002 +int color abc_btn_colored_text_material 0x7f050003 +int color abc_color_highlight_material 0x7f050004 +int color abc_hint_foreground_material_dark 0x7f050005 +int color abc_hint_foreground_material_light 0x7f050006 +int color abc_input_method_navigation_guard 0x7f050007 +int color abc_primary_text_disable_only_material_dark 0x7f050008 +int color abc_primary_text_disable_only_material_light 0x7f050009 +int color abc_primary_text_material_dark 0x7f05000a +int color abc_primary_text_material_light 0x7f05000b +int color abc_search_url_text 0x7f05000c +int color abc_search_url_text_normal 0x7f05000d +int color abc_search_url_text_pressed 0x7f05000e +int color abc_search_url_text_selected 0x7f05000f +int color abc_secondary_text_material_dark 0x7f050010 +int color abc_secondary_text_material_light 0x7f050011 +int color abc_tint_btn_checkable 0x7f050012 +int color abc_tint_default 0x7f050013 +int color abc_tint_edittext 0x7f050014 +int color abc_tint_seek_thumb 0x7f050015 +int color abc_tint_spinner 0x7f050016 +int color abc_tint_switch_track 0x7f050017 +int color accent 0x7f050018 +int color accent_material_dark 0x7f050019 +int color accent_material_light 0x7f05001a +int color background_floating_material_dark 0x7f05001b +int color background_floating_material_light 0x7f05001c +int color background_material_dark 0x7f05001d +int color background_material_light 0x7f05001e +int color bright_foreground_disabled_material_dark 0x7f05001f +int color bright_foreground_disabled_material_light 0x7f050020 +int color bright_foreground_inverse_material_dark 0x7f050021 +int color bright_foreground_inverse_material_light 0x7f050022 +int color bright_foreground_material_dark 0x7f050023 +int color bright_foreground_material_light 0x7f050024 +int color button_material_dark 0x7f050025 +int color button_material_light 0x7f050026 +int color cardview_dark_background 0x7f050027 +int color cardview_light_background 0x7f050028 +int color cardview_shadow_end_color 0x7f050029 +int color cardview_shadow_start_color 0x7f05002a +int color design_bottom_navigation_shadow_color 0x7f05002b +int color design_default_color_primary 0x7f05002c +int color design_default_color_primary_dark 0x7f05002d +int color design_error 0x7f05002e +int color design_fab_shadow_end_color 0x7f05002f +int color design_fab_shadow_mid_color 0x7f050030 +int color design_fab_shadow_start_color 0x7f050031 +int color design_fab_stroke_end_inner_color 0x7f050032 +int color design_fab_stroke_end_outer_color 0x7f050033 +int color design_fab_stroke_top_inner_color 0x7f050034 +int color design_fab_stroke_top_outer_color 0x7f050035 +int color design_snackbar_background_color 0x7f050036 +int color design_tint_password_toggle 0x7f050037 +int color dim_foreground_disabled_material_dark 0x7f050038 +int color dim_foreground_disabled_material_light 0x7f050039 +int color dim_foreground_material_dark 0x7f05003a +int color dim_foreground_material_light 0x7f05003b +int color divider 0x7f05003c +int color error_color_material_dark 0x7f05003d +int color error_color_material_light 0x7f05003e +int color foreground_material_dark 0x7f05003f +int color foreground_material_light 0x7f050040 +int color highlighted_text_material_dark 0x7f050041 +int color highlighted_text_material_light 0x7f050042 +int color icons 0x7f050043 +int color material_blue_grey_800 0x7f050044 +int color material_blue_grey_900 0x7f050045 +int color material_blue_grey_950 0x7f050046 +int color material_deep_teal_200 0x7f050047 +int color material_deep_teal_500 0x7f050048 +int color material_grey_100 0x7f050049 +int color material_grey_300 0x7f05004a +int color material_grey_50 0x7f05004b +int color material_grey_600 0x7f05004c +int color material_grey_800 0x7f05004d +int color material_grey_850 0x7f05004e +int color material_grey_900 0x7f05004f +int color mtrl_bottom_nav_colored_item_tint 0x7f050050 +int color mtrl_bottom_nav_item_tint 0x7f050051 +int color mtrl_btn_bg_color_disabled 0x7f050052 +int color mtrl_btn_bg_color_selector 0x7f050053 +int color mtrl_btn_ripple_color 0x7f050054 +int color mtrl_btn_stroke_color_selector 0x7f050055 +int color mtrl_btn_text_btn_ripple_color 0x7f050056 +int color mtrl_btn_text_color_disabled 0x7f050057 +int color mtrl_btn_text_color_selector 0x7f050058 +int color mtrl_btn_transparent_bg_color 0x7f050059 +int color mtrl_chip_background_color 0x7f05005a +int color mtrl_chip_close_icon_tint 0x7f05005b +int color mtrl_chip_ripple_color 0x7f05005c +int color mtrl_chip_text_color 0x7f05005d +int color mtrl_fab_ripple_color 0x7f05005e +int color mtrl_scrim_color 0x7f05005f +int color mtrl_tabs_colored_ripple_color 0x7f050060 +int color mtrl_tabs_icon_color_selector 0x7f050061 +int color mtrl_tabs_icon_color_selector_colored 0x7f050062 +int color mtrl_tabs_legacy_text_color_selector 0x7f050063 +int color mtrl_tabs_ripple_color 0x7f050064 +int color mtrl_text_btn_text_color_selector 0x7f050065 +int color mtrl_textinput_default_box_stroke_color 0x7f050066 +int color mtrl_textinput_disabled_color 0x7f050067 +int color mtrl_textinput_filled_box_default_background_color 0x7f050068 +int color mtrl_textinput_hovered_box_stroke_color 0x7f050069 +int color notification_action_color_filter 0x7f05006a +int color notification_icon_bg_color 0x7f05006b +int color notification_material_background_media_default_color 0x7f05006c +int color primary 0x7f05006d +int color primary_dark 0x7f05006e +int color primary_dark_material_dark 0x7f05006f +int color primary_dark_material_light 0x7f050070 +int color primary_light 0x7f050071 +int color primary_material_dark 0x7f050072 +int color primary_material_light 0x7f050073 +int color primary_text 0x7f050074 +int color primary_text_default_material_dark 0x7f050075 +int color primary_text_default_material_light 0x7f050076 +int color primary_text_disabled_material_dark 0x7f050077 +int color primary_text_disabled_material_light 0x7f050078 +int color ripple_material_dark 0x7f050079 +int color ripple_material_light 0x7f05007a +int color secondary_text 0x7f05007b +int color secondary_text_default_material_dark 0x7f05007c +int color secondary_text_default_material_light 0x7f05007d +int color secondary_text_disabled_material_dark 0x7f05007e +int color secondary_text_disabled_material_light 0x7f05007f +int color switch_thumb_disabled_material_dark 0x7f050080 +int color switch_thumb_disabled_material_light 0x7f050081 +int color switch_thumb_material_dark 0x7f050082 +int color switch_thumb_material_light 0x7f050083 +int color switch_thumb_normal_material_dark 0x7f050084 +int color switch_thumb_normal_material_light 0x7f050085 +int color tooltip_background_dark 0x7f050086 +int color tooltip_background_light 0x7f050087 +int dimen abc_action_bar_content_inset_material 0x7f060000 +int dimen abc_action_bar_content_inset_with_nav 0x7f060001 +int dimen abc_action_bar_default_height_material 0x7f060002 +int dimen abc_action_bar_default_padding_end_material 0x7f060003 +int dimen abc_action_bar_default_padding_start_material 0x7f060004 +int dimen abc_action_bar_elevation_material 0x7f060005 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f060006 +int dimen abc_action_bar_overflow_padding_end_material 0x7f060007 +int dimen abc_action_bar_overflow_padding_start_material 0x7f060008 +int dimen abc_action_bar_stacked_max_height 0x7f060009 +int dimen abc_action_bar_stacked_tab_max_width 0x7f06000a +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06000b +int dimen abc_action_bar_subtitle_top_margin_material 0x7f06000c +int dimen abc_action_button_min_height_material 0x7f06000d +int dimen abc_action_button_min_width_material 0x7f06000e +int dimen abc_action_button_min_width_overflow_material 0x7f06000f +int dimen abc_alert_dialog_button_bar_height 0x7f060010 +int dimen abc_alert_dialog_button_dimen 0x7f060011 +int dimen abc_button_inset_horizontal_material 0x7f060012 +int dimen abc_button_inset_vertical_material 0x7f060013 +int dimen abc_button_padding_horizontal_material 0x7f060014 +int dimen abc_button_padding_vertical_material 0x7f060015 +int dimen abc_cascading_menus_min_smallest_width 0x7f060016 +int dimen abc_config_prefDialogWidth 0x7f060017 +int dimen abc_control_corner_material 0x7f060018 +int dimen abc_control_inset_material 0x7f060019 +int dimen abc_control_padding_material 0x7f06001a +int dimen abc_dialog_corner_radius_material 0x7f06001b +int dimen abc_dialog_fixed_height_major 0x7f06001c +int dimen abc_dialog_fixed_height_minor 0x7f06001d +int dimen abc_dialog_fixed_width_major 0x7f06001e +int dimen abc_dialog_fixed_width_minor 0x7f06001f +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060020 +int dimen abc_dialog_list_padding_top_no_title 0x7f060021 +int dimen abc_dialog_min_width_major 0x7f060022 +int dimen abc_dialog_min_width_minor 0x7f060023 +int dimen abc_dialog_padding_material 0x7f060024 +int dimen abc_dialog_padding_top_material 0x7f060025 +int dimen abc_dialog_title_divider_material 0x7f060026 +int dimen abc_disabled_alpha_material_dark 0x7f060027 +int dimen abc_disabled_alpha_material_light 0x7f060028 +int dimen abc_dropdownitem_icon_width 0x7f060029 +int dimen abc_dropdownitem_text_padding_left 0x7f06002a +int dimen abc_dropdownitem_text_padding_right 0x7f06002b +int dimen abc_edit_text_inset_bottom_material 0x7f06002c +int dimen abc_edit_text_inset_horizontal_material 0x7f06002d +int dimen abc_edit_text_inset_top_material 0x7f06002e +int dimen abc_floating_window_z 0x7f06002f +int dimen abc_list_item_padding_horizontal_material 0x7f060030 +int dimen abc_panel_menu_list_width 0x7f060031 +int dimen abc_progress_bar_height_material 0x7f060032 +int dimen abc_search_view_preferred_height 0x7f060033 +int dimen abc_search_view_preferred_width 0x7f060034 +int dimen abc_seekbar_track_background_height_material 0x7f060035 +int dimen abc_seekbar_track_progress_height_material 0x7f060036 +int dimen abc_select_dialog_padding_start_material 0x7f060037 +int dimen abc_switch_padding 0x7f060038 +int dimen abc_text_size_body_1_material 0x7f060039 +int dimen abc_text_size_body_2_material 0x7f06003a +int dimen abc_text_size_button_material 0x7f06003b +int dimen abc_text_size_caption_material 0x7f06003c +int dimen abc_text_size_display_1_material 0x7f06003d +int dimen abc_text_size_display_2_material 0x7f06003e +int dimen abc_text_size_display_3_material 0x7f06003f +int dimen abc_text_size_display_4_material 0x7f060040 +int dimen abc_text_size_headline_material 0x7f060041 +int dimen abc_text_size_large_material 0x7f060042 +int dimen abc_text_size_medium_material 0x7f060043 +int dimen abc_text_size_menu_header_material 0x7f060044 +int dimen abc_text_size_menu_material 0x7f060045 +int dimen abc_text_size_small_material 0x7f060046 +int dimen abc_text_size_subhead_material 0x7f060047 +int dimen abc_text_size_subtitle_material_toolbar 0x7f060048 +int dimen abc_text_size_title_material 0x7f060049 +int dimen abc_text_size_title_material_toolbar 0x7f06004a +int dimen cardview_compat_inset_shadow 0x7f06004b +int dimen cardview_default_elevation 0x7f06004c +int dimen cardview_default_radius 0x7f06004d +int dimen compat_button_inset_horizontal_material 0x7f06004e +int dimen compat_button_inset_vertical_material 0x7f06004f +int dimen compat_button_padding_horizontal_material 0x7f060050 +int dimen compat_button_padding_vertical_material 0x7f060051 +int dimen compat_control_corner_material 0x7f060052 +int dimen compat_notification_large_icon_max_height 0x7f060053 +int dimen compat_notification_large_icon_max_width 0x7f060054 +int dimen design_appbar_elevation 0x7f060055 +int dimen design_bottom_navigation_active_item_max_width 0x7f060056 +int dimen design_bottom_navigation_active_item_min_width 0x7f060057 +int dimen design_bottom_navigation_active_text_size 0x7f060058 +int dimen design_bottom_navigation_elevation 0x7f060059 +int dimen design_bottom_navigation_height 0x7f06005a +int dimen design_bottom_navigation_icon_size 0x7f06005b +int dimen design_bottom_navigation_item_max_width 0x7f06005c +int dimen design_bottom_navigation_item_min_width 0x7f06005d +int dimen design_bottom_navigation_margin 0x7f06005e +int dimen design_bottom_navigation_shadow_height 0x7f06005f +int dimen design_bottom_navigation_text_size 0x7f060060 +int dimen design_bottom_sheet_modal_elevation 0x7f060061 +int dimen design_bottom_sheet_peek_height_min 0x7f060062 +int dimen design_fab_border_width 0x7f060063 +int dimen design_fab_elevation 0x7f060064 +int dimen design_fab_image_size 0x7f060065 +int dimen design_fab_size_mini 0x7f060066 +int dimen design_fab_size_normal 0x7f060067 +int dimen design_fab_translation_z_hovered_focused 0x7f060068 +int dimen design_fab_translation_z_pressed 0x7f060069 +int dimen design_navigation_elevation 0x7f06006a +int dimen design_navigation_icon_padding 0x7f06006b +int dimen design_navigation_icon_size 0x7f06006c +int dimen design_navigation_item_horizontal_padding 0x7f06006d +int dimen design_navigation_item_icon_padding 0x7f06006e +int dimen design_navigation_max_width 0x7f06006f +int dimen design_navigation_padding_bottom 0x7f060070 +int dimen design_navigation_separator_vertical_padding 0x7f060071 +int dimen design_snackbar_action_inline_max_width 0x7f060072 +int dimen design_snackbar_background_corner_radius 0x7f060073 +int dimen design_snackbar_elevation 0x7f060074 +int dimen design_snackbar_extra_spacing_horizontal 0x7f060075 +int dimen design_snackbar_max_width 0x7f060076 +int dimen design_snackbar_min_width 0x7f060077 +int dimen design_snackbar_padding_horizontal 0x7f060078 +int dimen design_snackbar_padding_vertical 0x7f060079 +int dimen design_snackbar_padding_vertical_2lines 0x7f06007a +int dimen design_snackbar_text_size 0x7f06007b +int dimen design_tab_max_width 0x7f06007c +int dimen design_tab_scrollable_min_width 0x7f06007d +int dimen design_tab_text_size 0x7f06007e +int dimen design_tab_text_size_2line 0x7f06007f +int dimen design_textinput_caption_translate_y 0x7f060080 +int dimen disabled_alpha_material_dark 0x7f060081 +int dimen disabled_alpha_material_light 0x7f060082 +int dimen fastscroll_default_thickness 0x7f060083 +int dimen fastscroll_margin 0x7f060084 +int dimen fastscroll_minimum_range 0x7f060085 +int dimen highlight_alpha_material_colored 0x7f060086 +int dimen highlight_alpha_material_dark 0x7f060087 +int dimen highlight_alpha_material_light 0x7f060088 +int dimen hint_alpha_material_dark 0x7f060089 +int dimen hint_alpha_material_light 0x7f06008a +int dimen hint_pressed_alpha_material_dark 0x7f06008b +int dimen hint_pressed_alpha_material_light 0x7f06008c +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f06008d +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f06008e +int dimen item_touch_helper_swipe_escape_velocity 0x7f06008f +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f060090 +int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f060091 +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f060092 +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f060093 +int dimen mtrl_bottomappbar_height 0x7f060094 +int dimen mtrl_btn_corner_radius 0x7f060095 +int dimen mtrl_btn_dialog_btn_min_width 0x7f060096 +int dimen mtrl_btn_disabled_elevation 0x7f060097 +int dimen mtrl_btn_disabled_z 0x7f060098 +int dimen mtrl_btn_elevation 0x7f060099 +int dimen mtrl_btn_focused_z 0x7f06009a +int dimen mtrl_btn_hovered_z 0x7f06009b +int dimen mtrl_btn_icon_btn_padding_left 0x7f06009c +int dimen mtrl_btn_icon_padding 0x7f06009d +int dimen mtrl_btn_inset 0x7f06009e +int dimen mtrl_btn_letter_spacing 0x7f06009f +int dimen mtrl_btn_padding_bottom 0x7f0600a0 +int dimen mtrl_btn_padding_left 0x7f0600a1 +int dimen mtrl_btn_padding_right 0x7f0600a2 +int dimen mtrl_btn_padding_top 0x7f0600a3 +int dimen mtrl_btn_pressed_z 0x7f0600a4 +int dimen mtrl_btn_stroke_size 0x7f0600a5 +int dimen mtrl_btn_text_btn_icon_padding 0x7f0600a6 +int dimen mtrl_btn_text_btn_padding_left 0x7f0600a7 +int dimen mtrl_btn_text_btn_padding_right 0x7f0600a8 +int dimen mtrl_btn_text_size 0x7f0600a9 +int dimen mtrl_btn_z 0x7f0600aa +int dimen mtrl_card_elevation 0x7f0600ab +int dimen mtrl_card_spacing 0x7f0600ac +int dimen mtrl_chip_pressed_translation_z 0x7f0600ad +int dimen mtrl_chip_text_size 0x7f0600ae +int dimen mtrl_fab_elevation 0x7f0600af +int dimen mtrl_fab_translation_z_hovered_focused 0x7f0600b0 +int dimen mtrl_fab_translation_z_pressed 0x7f0600b1 +int dimen mtrl_navigation_elevation 0x7f0600b2 +int dimen mtrl_navigation_item_horizontal_padding 0x7f0600b3 +int dimen mtrl_navigation_item_icon_padding 0x7f0600b4 +int dimen mtrl_snackbar_background_corner_radius 0x7f0600b5 +int dimen mtrl_snackbar_margin 0x7f0600b6 +int dimen mtrl_textinput_box_bottom_offset 0x7f0600b7 +int dimen mtrl_textinput_box_corner_radius_medium 0x7f0600b8 +int dimen mtrl_textinput_box_corner_radius_small 0x7f0600b9 +int dimen mtrl_textinput_box_label_cutout_padding 0x7f0600ba +int dimen mtrl_textinput_box_padding_end 0x7f0600bb +int dimen mtrl_textinput_box_stroke_width_default 0x7f0600bc +int dimen mtrl_textinput_box_stroke_width_focused 0x7f0600bd +int dimen mtrl_textinput_outline_box_expanded_padding 0x7f0600be +int dimen mtrl_toolbar_default_height 0x7f0600bf +int dimen notification_action_icon_size 0x7f0600c0 +int dimen notification_action_text_size 0x7f0600c1 +int dimen notification_big_circle_margin 0x7f0600c2 +int dimen notification_content_margin_start 0x7f0600c3 +int dimen notification_large_icon_height 0x7f0600c4 +int dimen notification_large_icon_width 0x7f0600c5 +int dimen notification_main_column_padding_top 0x7f0600c6 +int dimen notification_media_narrow_margin 0x7f0600c7 +int dimen notification_right_icon_size 0x7f0600c8 +int dimen notification_right_side_padding_top 0x7f0600c9 +int dimen notification_small_icon_background_padding 0x7f0600ca +int dimen notification_small_icon_size_as_large 0x7f0600cb +int dimen notification_subtext_size 0x7f0600cc +int dimen notification_top_pad 0x7f0600cd +int dimen notification_top_pad_large_text 0x7f0600ce +int dimen subtitle_corner_radius 0x7f0600cf +int dimen subtitle_outline_width 0x7f0600d0 +int dimen subtitle_shadow_offset 0x7f0600d1 +int dimen subtitle_shadow_radius 0x7f0600d2 +int dimen tooltip_corner_radius 0x7f0600d3 +int dimen tooltip_horizontal_padding 0x7f0600d4 +int dimen tooltip_margin 0x7f0600d5 +int dimen tooltip_precise_anchor_extra_offset 0x7f0600d6 +int dimen tooltip_precise_anchor_threshold 0x7f0600d7 +int dimen tooltip_vertical_padding 0x7f0600d8 +int dimen tooltip_y_offset_non_touch 0x7f0600d9 +int dimen tooltip_y_offset_touch 0x7f0600da +int drawable abc_ab_share_pack_mtrl_alpha 0x7f070006 +int drawable abc_action_bar_item_background_material 0x7f070007 +int drawable abc_btn_borderless_material 0x7f070008 +int drawable abc_btn_check_material 0x7f070009 +int drawable abc_btn_check_to_on_mtrl_000 0x7f07000a +int drawable abc_btn_check_to_on_mtrl_015 0x7f07000b +int drawable abc_btn_colored_material 0x7f07000c +int drawable abc_btn_default_mtrl_shape 0x7f07000d +int drawable abc_btn_radio_material 0x7f07000e +int drawable abc_btn_radio_to_on_mtrl_000 0x7f07000f +int drawable abc_btn_radio_to_on_mtrl_015 0x7f070010 +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f070011 +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f070012 +int drawable abc_cab_background_internal_bg 0x7f070013 +int drawable abc_cab_background_top_material 0x7f070014 +int drawable abc_cab_background_top_mtrl_alpha 0x7f070015 +int drawable abc_control_background_material 0x7f070016 +int drawable abc_dialog_material_background 0x7f070017 +int drawable abc_edit_text_material 0x7f070018 +int drawable abc_ic_ab_back_material 0x7f070019 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f07001a +int drawable abc_ic_clear_material 0x7f07001b +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f07001c +int drawable abc_ic_go_search_api_material 0x7f07001d +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f07001e +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f07001f +int drawable abc_ic_menu_overflow_material 0x7f070020 +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f070021 +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f070022 +int drawable abc_ic_menu_share_mtrl_alpha 0x7f070023 +int drawable abc_ic_search_api_material 0x7f070024 +int drawable abc_ic_star_black_16dp 0x7f070025 +int drawable abc_ic_star_black_36dp 0x7f070026 +int drawable abc_ic_star_black_48dp 0x7f070027 +int drawable abc_ic_star_half_black_16dp 0x7f070028 +int drawable abc_ic_star_half_black_36dp 0x7f070029 +int drawable abc_ic_star_half_black_48dp 0x7f07002a +int drawable abc_ic_voice_search_api_material 0x7f07002b +int drawable abc_item_background_holo_dark 0x7f07002c +int drawable abc_item_background_holo_light 0x7f07002d +int drawable abc_list_divider_material 0x7f07002e +int drawable abc_list_divider_mtrl_alpha 0x7f07002f +int drawable abc_list_focused_holo 0x7f070030 +int drawable abc_list_longpressed_holo 0x7f070031 +int drawable abc_list_pressed_holo_dark 0x7f070032 +int drawable abc_list_pressed_holo_light 0x7f070033 +int drawable abc_list_selector_background_transition_holo_dark 0x7f070034 +int drawable abc_list_selector_background_transition_holo_light 0x7f070035 +int drawable abc_list_selector_disabled_holo_dark 0x7f070036 +int drawable abc_list_selector_disabled_holo_light 0x7f070037 +int drawable abc_list_selector_holo_dark 0x7f070038 +int drawable abc_list_selector_holo_light 0x7f070039 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f07003a +int drawable abc_popup_background_mtrl_mult 0x7f07003b +int drawable abc_ratingbar_indicator_material 0x7f07003c +int drawable abc_ratingbar_material 0x7f07003d +int drawable abc_ratingbar_small_material 0x7f07003e +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f07003f +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f070040 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f070041 +int drawable abc_scrubber_primary_mtrl_alpha 0x7f070042 +int drawable abc_scrubber_track_mtrl_alpha 0x7f070043 +int drawable abc_seekbar_thumb_material 0x7f070044 +int drawable abc_seekbar_tick_mark_material 0x7f070045 +int drawable abc_seekbar_track_material 0x7f070046 +int drawable abc_spinner_mtrl_am_alpha 0x7f070047 +int drawable abc_spinner_textfield_background_material 0x7f070048 +int drawable abc_switch_thumb_material 0x7f070049 +int drawable abc_switch_track_mtrl_alpha 0x7f07004a +int drawable abc_tab_indicator_material 0x7f07004b +int drawable abc_tab_indicator_mtrl_alpha 0x7f07004c +int drawable abc_text_cursor_material 0x7f07004d +int drawable abc_text_select_handle_left_mtrl_dark 0x7f07004e +int drawable abc_text_select_handle_left_mtrl_light 0x7f07004f +int drawable abc_text_select_handle_middle_mtrl_dark 0x7f070050 +int drawable abc_text_select_handle_middle_mtrl_light 0x7f070051 +int drawable abc_text_select_handle_right_mtrl_dark 0x7f070052 +int drawable abc_text_select_handle_right_mtrl_light 0x7f070053 +int drawable abc_textfield_activated_mtrl_alpha 0x7f070054 +int drawable abc_textfield_default_mtrl_alpha 0x7f070055 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f070056 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f070057 +int drawable abc_textfield_search_material 0x7f070058 +int drawable abc_vector_test 0x7f070059 +int drawable avd_hide_password 0x7f07005a +int drawable avd_show_password 0x7f07005b +int drawable bg_material 0x7f07005c +int drawable design_bottom_navigation_item_background 0x7f07005d +int drawable design_fab_background 0x7f07005e +int drawable design_ic_visibility 0x7f07005f +int drawable design_ic_visibility_off 0x7f070060 +int drawable design_password_eye 0x7f070061 +int drawable design_snackbar_background 0x7f070062 +int drawable ic_call_icon 0x7f070063 +int drawable ic_cervantes 0x7f070064 +int drawable ic_chevron_left_black_48dp 0x7f070065 +int drawable ic_chevron_right_black_48dp 0x7f070066 +int drawable ic_don_quixote 0x7f070067 +int drawable ic_fritzbox 0x7f070068 +int drawable ic_fritzbox_icon 0x7f070069 +int drawable ic_lance 0x7f07006a +int drawable ic_launcher 0x7f07006b +int drawable ic_log_icon 0x7f07006c +int drawable ic_menu_white_36dp 0x7f07006d +int drawable ic_mtrl_chip_checked_black 0x7f07006e +int drawable ic_mtrl_chip_checked_circle 0x7f07006f +int drawable ic_mtrl_chip_close_circle 0x7f070070 +int drawable ic_scene_1 0x7f070071 +int drawable ic_scene_2 0x7f070072 +int drawable ic_scene_3 0x7f070073 +int drawable ic_settings_icon 0x7f070074 +int drawable ic_state_icon 0x7f070075 +int drawable ic_windmil 0x7f070076 +int drawable mtrl_snackbar_background 0x7f070077 +int drawable mtrl_tabs_default_indicator 0x7f070078 +int drawable navigation_empty_icon 0x7f070079 +int drawable notification_action_background 0x7f07007a +int drawable notification_bg 0x7f07007b +int drawable notification_bg_low 0x7f07007c +int drawable notification_bg_low_normal 0x7f07007d +int drawable notification_bg_low_pressed 0x7f07007e +int drawable notification_bg_normal 0x7f07007f +int drawable notification_bg_normal_pressed 0x7f070080 +int drawable notification_icon_background 0x7f070081 +int drawable notification_template_icon_bg 0x7f070082 +int drawable notification_template_icon_low_bg 0x7f070083 +int drawable notification_tile_bg 0x7f070084 +int drawable notify_panel_notification_icon_bg 0x7f070085 +int drawable tooltip_frame_dark 0x7f070086 +int drawable tooltip_frame_light 0x7f070087 +int id ALT 0x7f080000 +int id CTRL 0x7f080001 +int id FUNCTION 0x7f080002 +int id META 0x7f080003 +int id SHIFT 0x7f080004 +int id SYM 0x7f080005 +int id action0 0x7f080006 +int id action_bar 0x7f080007 +int id action_bar_activity_content 0x7f080008 +int id action_bar_container 0x7f080009 +int id action_bar_root 0x7f08000a +int id action_bar_spinner 0x7f08000b +int id action_bar_subtitle 0x7f08000c +int id action_bar_title 0x7f08000d +int id action_container 0x7f08000e +int id action_context_bar 0x7f08000f +int id action_divider 0x7f080010 +int id action_image 0x7f080011 +int id action_menu_divider 0x7f080012 +int id action_menu_presenter 0x7f080013 +int id action_mode_bar 0x7f080014 +int id action_mode_bar_stub 0x7f080015 +int id action_mode_close_button 0x7f080016 +int id action_text 0x7f080017 +int id actions 0x7f080018 +int id activity_chooser_view_content 0x7f080019 +int id add 0x7f08001a +int id alertTitle 0x7f08001b +int id all 0x7f08001c +int id always 0x7f08001d +int id async 0x7f08001e +int id auto 0x7f08001f +int id beginning 0x7f080020 +int id blocking 0x7f080021 +int id bottom 0x7f080022 +int id buttonPanel 0x7f080023 +int id cancel_action 0x7f080024 +int id center 0x7f080025 +int id center_horizontal 0x7f080026 +int id center_vertical 0x7f080027 +int id checkbox 0x7f080028 +int id chronometer 0x7f080029 +int id clip_horizontal 0x7f08002a +int id clip_vertical 0x7f08002b +int id collapseActionView 0x7f08002c +int id container 0x7f08002d +int id content 0x7f08002e +int id contentPanel 0x7f08002f +int id coordinator 0x7f080030 +int id custom 0x7f080031 +int id customPanel 0x7f080032 +int id decor_content_parent 0x7f080033 +int id default_activity_button 0x7f080034 +int id design_bottom_sheet 0x7f080035 +int id design_menu_item_action_area 0x7f080036 +int id design_menu_item_action_area_stub 0x7f080037 +int id design_menu_item_text 0x7f080038 +int id design_navigation_view 0x7f080039 +int id disableHome 0x7f08003a +int id edit_query 0x7f08003b +int id end 0x7f08003c +int id end_padder 0x7f08003d +int id enterAlways 0x7f08003e +int id enterAlwaysCollapsed 0x7f08003f +int id exitUntilCollapsed 0x7f080040 +int id expand_activities_button 0x7f080041 +int id expanded_menu 0x7f080042 +int id fill 0x7f080043 +int id fill_horizontal 0x7f080044 +int id fill_vertical 0x7f080045 +int id filled 0x7f080046 +int id fixed 0x7f080047 +int id forever 0x7f080048 +int id ghost_view 0x7f080049 +int id group_divider 0x7f08004a +int id home 0x7f08004b +int id homeAsUp 0x7f08004c +int id icon 0x7f08004d +int id icon_group 0x7f08004e +int id ifRoom 0x7f08004f +int id image 0x7f080050 +int id info 0x7f080051 +int id italic 0x7f080052 +int id item_touch_helper_previous_elevation 0x7f080053 +int id labeled 0x7f080054 +int id largeLabel 0x7f080055 +int id left 0x7f080056 +int id line1 0x7f080057 +int id line3 0x7f080058 +int id listMode 0x7f080059 +int id list_item 0x7f08005a +int id masked 0x7f08005b +int id media_actions 0x7f08005c +int id message 0x7f08005d +int id middle 0x7f08005e +int id mini 0x7f08005f +int id mtrl_child_content_container 0x7f080060 +int id mtrl_internal_children_alpha_tag 0x7f080061 +int id multiply 0x7f080062 +int id navigation_header_container 0x7f080063 +int id never 0x7f080064 +int id none 0x7f080065 +int id normal 0x7f080066 +int id notification_background 0x7f080067 +int id notification_main_column 0x7f080068 +int id notification_main_column_container 0x7f080069 +int id outline 0x7f08006a +int id parallax 0x7f08006b +int id parentPanel 0x7f08006c +int id parent_matrix 0x7f08006d +int id pin 0x7f08006e +int id progress_circular 0x7f08006f +int id progress_horizontal 0x7f080070 +int id radio 0x7f080071 +int id right 0x7f080072 +int id right_icon 0x7f080073 +int id right_side 0x7f080074 +int id save_image_matrix 0x7f080075 +int id save_non_transition_alpha 0x7f080076 +int id save_scale_type 0x7f080077 +int id screen 0x7f080078 +int id scroll 0x7f080079 +int id scrollIndicatorDown 0x7f08007a +int id scrollIndicatorUp 0x7f08007b +int id scrollView 0x7f08007c +int id scrollable 0x7f08007d +int id search_badge 0x7f08007e +int id search_bar 0x7f08007f +int id search_button 0x7f080080 +int id search_close_btn 0x7f080081 +int id search_edit_frame 0x7f080082 +int id search_go_btn 0x7f080083 +int id search_mag_icon 0x7f080084 +int id search_plate 0x7f080085 +int id search_src_text 0x7f080086 +int id search_voice_btn 0x7f080087 +int id select_dialog_listview 0x7f080088 +int id selected 0x7f080089 +int id shortcut 0x7f08008a +int id showCustom 0x7f08008b +int id showHome 0x7f08008c +int id showTitle 0x7f08008d +int id smallLabel 0x7f08008e +int id snackbar_action 0x7f08008f +int id snackbar_text 0x7f080090 +int id snap 0x7f080091 +int id snapMargins 0x7f080092 +int id spacer 0x7f080093 +int id split_action_bar 0x7f080094 +int id src_atop 0x7f080095 +int id src_in 0x7f080096 +int id src_over 0x7f080097 +int id start 0x7f080098 +int id status_bar_latest_event_content 0x7f080099 +int id stretch 0x7f08009a +int id submenuarrow 0x7f08009b +int id submit_area 0x7f08009c +int id tabMode 0x7f08009d +int id tag_transition_group 0x7f08009e +int id tag_unhandled_key_event_manager 0x7f08009f +int id tag_unhandled_key_listeners 0x7f0800a0 +int id text 0x7f0800a1 +int id text2 0x7f0800a2 +int id textSpacerNoButtons 0x7f0800a3 +int id textSpacerNoTitle 0x7f0800a4 +int id textStart 0x7f0800a5 +int id text_input_password_toggle 0x7f0800a6 +int id textinput_counter 0x7f0800a7 +int id textinput_error 0x7f0800a8 +int id textinput_helper_text 0x7f0800a9 +int id time 0x7f0800aa +int id title 0x7f0800ab +int id titleDividerNoCustom 0x7f0800ac +int id title_template 0x7f0800ad +int id top 0x7f0800ae +int id topPanel 0x7f0800af +int id touch_outside 0x7f0800b0 +int id transition_current_scene 0x7f0800b1 +int id transition_layout_save 0x7f0800b2 +int id transition_position 0x7f0800b3 +int id transition_scene_layoutid_cache 0x7f0800b4 +int id transition_transform 0x7f0800b5 +int id uniform 0x7f0800b6 +int id unlabeled 0x7f0800b7 +int id up 0x7f0800b8 +int id useLogo 0x7f0800b9 +int id view_offset_helper 0x7f0800ba +int id visible 0x7f0800bb +int id withText 0x7f0800bc +int id wrap_content 0x7f0800bd +int integer abc_config_activityDefaultDur 0x7f090000 +int integer abc_config_activityShortDur 0x7f090001 +int integer app_bar_elevation_anim_duration 0x7f090002 +int integer bottom_sheet_slide_duration 0x7f090003 +int integer cancel_button_image_alpha 0x7f090004 +int integer config_tooltipAnimTime 0x7f090005 +int integer design_snackbar_text_max_lines 0x7f090006 +int integer design_tab_indicator_anim_duration_ms 0x7f090007 +int integer hide_password_duration 0x7f090008 +int integer mtrl_btn_anim_delay_ms 0x7f090009 +int integer mtrl_btn_anim_duration_ms 0x7f09000a +int integer mtrl_chip_anim_duration 0x7f09000b +int integer mtrl_tab_indicator_anim_duration_ms 0x7f09000c +int integer show_password_duration 0x7f09000d +int integer status_bar_notification_info_maxnum 0x7f09000e +int interpolator mtrl_fast_out_linear_in 0x7f0a0000 +int interpolator mtrl_fast_out_slow_in 0x7f0a0001 +int interpolator mtrl_linear 0x7f0a0002 +int interpolator mtrl_linear_out_slow_in 0x7f0a0003 +int layout abc_action_bar_title_item 0x7f0b0000 +int layout abc_action_bar_up_container 0x7f0b0001 +int layout abc_action_menu_item_layout 0x7f0b0002 +int layout abc_action_menu_layout 0x7f0b0003 +int layout abc_action_mode_bar 0x7f0b0004 +int layout abc_action_mode_close_item_material 0x7f0b0005 +int layout abc_activity_chooser_view 0x7f0b0006 +int layout abc_activity_chooser_view_list_item 0x7f0b0007 +int layout abc_alert_dialog_button_bar_material 0x7f0b0008 +int layout abc_alert_dialog_material 0x7f0b0009 +int layout abc_alert_dialog_title_material 0x7f0b000a +int layout abc_cascading_menu_item_layout 0x7f0b000b +int layout abc_dialog_title_material 0x7f0b000c +int layout abc_expanded_menu_layout 0x7f0b000d +int layout abc_list_menu_item_checkbox 0x7f0b000e +int layout abc_list_menu_item_icon 0x7f0b000f +int layout abc_list_menu_item_layout 0x7f0b0010 +int layout abc_list_menu_item_radio 0x7f0b0011 +int layout abc_popup_menu_header_item_layout 0x7f0b0012 +int layout abc_popup_menu_item_layout 0x7f0b0013 +int layout abc_screen_content_include 0x7f0b0014 +int layout abc_screen_simple 0x7f0b0015 +int layout abc_screen_simple_overlay_action_mode 0x7f0b0016 +int layout abc_screen_toolbar 0x7f0b0017 +int layout abc_search_dropdown_item_icons_2line 0x7f0b0018 +int layout abc_search_view 0x7f0b0019 +int layout abc_select_dialog_material 0x7f0b001a +int layout abc_tooltip 0x7f0b001b +int layout activity_app 0x7f0b001c +int layout design_bottom_navigation_item 0x7f0b001d +int layout design_bottom_sheet_dialog 0x7f0b001e +int layout design_layout_snackbar 0x7f0b001f +int layout design_layout_snackbar_include 0x7f0b0020 +int layout design_layout_tab_icon 0x7f0b0021 +int layout design_layout_tab_text 0x7f0b0022 +int layout design_menu_item_action_area 0x7f0b0023 +int layout design_navigation_item 0x7f0b0024 +int layout design_navigation_item_header 0x7f0b0025 +int layout design_navigation_item_separator 0x7f0b0026 +int layout design_navigation_item_subheader 0x7f0b0027 +int layout design_navigation_menu 0x7f0b0028 +int layout design_navigation_menu_item 0x7f0b0029 +int layout design_text_input_password_icon 0x7f0b002a +int layout mtrl_layout_snackbar 0x7f0b002b +int layout mtrl_layout_snackbar_include 0x7f0b002c +int layout notification_action 0x7f0b002d +int layout notification_action_tombstone 0x7f0b002e +int layout notification_media_action 0x7f0b002f +int layout notification_media_cancel_action 0x7f0b0030 +int layout notification_template_big_media 0x7f0b0031 +int layout notification_template_big_media_custom 0x7f0b0032 +int layout notification_template_big_media_narrow 0x7f0b0033 +int layout notification_template_big_media_narrow_custom 0x7f0b0034 +int layout notification_template_custom_big 0x7f0b0035 +int layout notification_template_icon_group 0x7f0b0036 +int layout notification_template_lines_media 0x7f0b0037 +int layout notification_template_media 0x7f0b0038 +int layout notification_template_media_custom 0x7f0b0039 +int layout notification_template_part_chronometer 0x7f0b003a +int layout notification_template_part_time 0x7f0b003b +int layout select_dialog_item_material 0x7f0b003c +int layout select_dialog_multichoice_material 0x7f0b003d +int layout select_dialog_singlechoice_material 0x7f0b003e +int layout support_simple_spinner_dropdown_item 0x7f0b003f +int raw my_ca 0x7f0c0000 +int string abc_action_bar_home_description 0x7f0d0000 +int string abc_action_bar_up_description 0x7f0d0001 +int string abc_action_menu_overflow_description 0x7f0d0002 +int string abc_action_mode_done 0x7f0d0003 +int string abc_activity_chooser_view_see_all 0x7f0d0004 +int string abc_activitychooserview_choose_application 0x7f0d0005 +int string abc_capital_off 0x7f0d0006 +int string abc_capital_on 0x7f0d0007 +int string abc_font_family_body_1_material 0x7f0d0008 +int string abc_font_family_body_2_material 0x7f0d0009 +int string abc_font_family_button_material 0x7f0d000a +int string abc_font_family_caption_material 0x7f0d000b +int string abc_font_family_display_1_material 0x7f0d000c +int string abc_font_family_display_2_material 0x7f0d000d +int string abc_font_family_display_3_material 0x7f0d000e +int string abc_font_family_display_4_material 0x7f0d000f +int string abc_font_family_headline_material 0x7f0d0010 +int string abc_font_family_menu_material 0x7f0d0011 +int string abc_font_family_subhead_material 0x7f0d0012 +int string abc_font_family_title_material 0x7f0d0013 +int string abc_menu_alt_shortcut_label 0x7f0d0014 +int string abc_menu_ctrl_shortcut_label 0x7f0d0015 +int string abc_menu_delete_shortcut_label 0x7f0d0016 +int string abc_menu_enter_shortcut_label 0x7f0d0017 +int string abc_menu_function_shortcut_label 0x7f0d0018 +int string abc_menu_meta_shortcut_label 0x7f0d0019 +int string abc_menu_shift_shortcut_label 0x7f0d001a +int string abc_menu_space_shortcut_label 0x7f0d001b +int string abc_menu_sym_shortcut_label 0x7f0d001c +int string abc_prepend_shortcut_label 0x7f0d001d +int string abc_search_hint 0x7f0d001e +int string abc_searchview_description_clear 0x7f0d001f +int string abc_searchview_description_query 0x7f0d0020 +int string abc_searchview_description_search 0x7f0d0021 +int string abc_searchview_description_submit 0x7f0d0022 +int string abc_searchview_description_voice 0x7f0d0023 +int string abc_shareactionprovider_share_with 0x7f0d0024 +int string abc_shareactionprovider_share_with_application 0x7f0d0025 +int string abc_toolbar_collapse_description 0x7f0d0026 +int string app_name 0x7f0d0027 +int string appbar_scrolling_view_behavior 0x7f0d0028 +int string bottom_sheet_behavior 0x7f0d0029 +int string character_counter_content_description 0x7f0d002a +int string character_counter_pattern 0x7f0d002b +int string fab_transformation_scrim_behavior 0x7f0d002c +int string fab_transformation_sheet_behavior 0x7f0d002d +int string hello_world 0x7f0d002e +int string hide_bottom_view_on_scroll_behavior 0x7f0d002f +int string mtrl_chip_close_icon_content_description 0x7f0d0030 +int string password_toggle_content_description 0x7f0d0031 +int string path_password_eye 0x7f0d0032 +int string path_password_eye_mask_strike_through 0x7f0d0033 +int string path_password_eye_mask_visible 0x7f0d0034 +int string path_password_strike_through 0x7f0d0035 +int string search_menu_title 0x7f0d0036 +int string status_bar_notification_info_overflow 0x7f0d0037 +int style AlertDialog_AppCompat 0x7f0e0000 +int style AlertDialog_AppCompat_Light 0x7f0e0001 +int style Animation_AppCompat_Dialog 0x7f0e0002 +int style Animation_AppCompat_DropDownUp 0x7f0e0003 +int style Animation_AppCompat_Tooltip 0x7f0e0004 +int style Animation_Design_BottomSheetDialog 0x7f0e0005 +int style AppBaseTheme 0x7f0e0006 +int style AppTheme 0x7f0e0007 +int style Base_AlertDialog_AppCompat 0x7f0e0008 +int style Base_AlertDialog_AppCompat_Light 0x7f0e0009 +int style Base_Animation_AppCompat_Dialog 0x7f0e000a +int style Base_Animation_AppCompat_DropDownUp 0x7f0e000b +int style Base_Animation_AppCompat_Tooltip 0x7f0e000c +int style Base_CardView 0x7f0e000d +int style Base_DialogWindowTitle_AppCompat 0x7f0e000e +int style Base_DialogWindowTitleBackground_AppCompat 0x7f0e000f +int style Base_TextAppearance_AppCompat 0x7f0e0010 +int style Base_TextAppearance_AppCompat_Body1 0x7f0e0011 +int style Base_TextAppearance_AppCompat_Body2 0x7f0e0012 +int style Base_TextAppearance_AppCompat_Button 0x7f0e0013 +int style Base_TextAppearance_AppCompat_Caption 0x7f0e0014 +int style Base_TextAppearance_AppCompat_Display1 0x7f0e0015 +int style Base_TextAppearance_AppCompat_Display2 0x7f0e0016 +int style Base_TextAppearance_AppCompat_Display3 0x7f0e0017 +int style Base_TextAppearance_AppCompat_Display4 0x7f0e0018 +int style Base_TextAppearance_AppCompat_Headline 0x7f0e0019 +int style Base_TextAppearance_AppCompat_Inverse 0x7f0e001a +int style Base_TextAppearance_AppCompat_Large 0x7f0e001b +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0e001c +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0e001d +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0e001e +int style Base_TextAppearance_AppCompat_Medium 0x7f0e001f +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0e0020 +int style Base_TextAppearance_AppCompat_Menu 0x7f0e0021 +int style Base_TextAppearance_AppCompat_SearchResult 0x7f0e0022 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0e0023 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0e0024 +int style Base_TextAppearance_AppCompat_Small 0x7f0e0025 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0e0026 +int style Base_TextAppearance_AppCompat_Subhead 0x7f0e0027 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0e0028 +int style Base_TextAppearance_AppCompat_Title 0x7f0e0029 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0e002a +int style Base_TextAppearance_AppCompat_Tooltip 0x7f0e002b +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0e002c +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0e002d +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0e002e +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0e002f +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0e0030 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0e0031 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0e0032 +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0e0033 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0e0034 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0e0035 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0e0036 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0e0037 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0e0038 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0e0039 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0e003a +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0e003b +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0e003c +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0e003d +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0e003e +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0e003f +int style Base_Theme_AppCompat 0x7f0e0040 +int style Base_Theme_AppCompat_CompactMenu 0x7f0e0041 +int style Base_Theme_AppCompat_Dialog 0x7f0e0042 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f0e0043 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0e0044 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0e0045 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0e0046 +int style Base_Theme_AppCompat_Light 0x7f0e0047 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0e0048 +int style Base_Theme_AppCompat_Light_Dialog 0x7f0e0049 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0e004a +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0e004b +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0e004c +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0e004d +int style Base_Theme_MaterialComponents 0x7f0e004e +int style Base_Theme_MaterialComponents_Bridge 0x7f0e004f +int style Base_Theme_MaterialComponents_CompactMenu 0x7f0e0050 +int style Base_Theme_MaterialComponents_Dialog 0x7f0e0051 +int style Base_Theme_MaterialComponents_Dialog_Alert 0x7f0e0052 +int style Base_Theme_MaterialComponents_Dialog_FixedSize 0x7f0e0053 +int style Base_Theme_MaterialComponents_Dialog_MinWidth 0x7f0e0054 +int style Base_Theme_MaterialComponents_DialogWhenLarge 0x7f0e0055 +int style Base_Theme_MaterialComponents_Light 0x7f0e0056 +int style Base_Theme_MaterialComponents_Light_Bridge 0x7f0e0057 +int style Base_Theme_MaterialComponents_Light_DarkActionBar 0x7f0e0058 +int style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0e0059 +int style Base_Theme_MaterialComponents_Light_Dialog 0x7f0e005a +int style Base_Theme_MaterialComponents_Light_Dialog_Alert 0x7f0e005b +int style Base_Theme_MaterialComponents_Light_Dialog_FixedSize 0x7f0e005c +int style Base_Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f0e005d +int style Base_Theme_MaterialComponents_Light_DialogWhenLarge 0x7f0e005e +int style Base_ThemeOverlay_AppCompat 0x7f0e005f +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0e0060 +int style Base_ThemeOverlay_AppCompat_Dark 0x7f0e0061 +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0e0062 +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0e0063 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0e0064 +int style Base_ThemeOverlay_AppCompat_Light 0x7f0e0065 +int style Base_ThemeOverlay_MaterialComponents_Dialog 0x7f0e0066 +int style Base_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0e0067 +int style Base_V14_Theme_MaterialComponents 0x7f0e0068 +int style Base_V14_Theme_MaterialComponents_Bridge 0x7f0e0069 +int style Base_V14_Theme_MaterialComponents_Dialog 0x7f0e006a +int style Base_V14_Theme_MaterialComponents_Light 0x7f0e006b +int style Base_V14_Theme_MaterialComponents_Light_Bridge 0x7f0e006c +int style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0e006d +int style Base_V14_Theme_MaterialComponents_Light_Dialog 0x7f0e006e +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog 0x7f0e006f +int style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0e0070 +int style Base_V21_Theme_AppCompat 0x7f0e0071 +int style Base_V21_Theme_AppCompat_Dialog 0x7f0e0072 +int style Base_V21_Theme_AppCompat_Light 0x7f0e0073 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0e0074 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0e0075 +int style Base_V22_Theme_AppCompat 0x7f0e0076 +int style Base_V22_Theme_AppCompat_Light 0x7f0e0077 +int style Base_V23_Theme_AppCompat 0x7f0e0078 +int style Base_V23_Theme_AppCompat_Light 0x7f0e0079 +int style Base_V26_Theme_AppCompat 0x7f0e007a +int style Base_V26_Theme_AppCompat_Light 0x7f0e007b +int style Base_V26_Widget_AppCompat_Toolbar 0x7f0e007c +int style Base_V28_Theme_AppCompat 0x7f0e007d +int style Base_V28_Theme_AppCompat_Light 0x7f0e007e +int style Base_V7_Theme_AppCompat 0x7f0e007f +int style Base_V7_Theme_AppCompat_Dialog 0x7f0e0080 +int style Base_V7_Theme_AppCompat_Light 0x7f0e0081 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0e0082 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0e0083 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0e0084 +int style Base_V7_Widget_AppCompat_EditText 0x7f0e0085 +int style Base_V7_Widget_AppCompat_Toolbar 0x7f0e0086 +int style Base_Widget_AppCompat_ActionBar 0x7f0e0087 +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0e0088 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0e0089 +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0e008a +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0e008b +int style Base_Widget_AppCompat_ActionButton 0x7f0e008c +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0e008d +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0e008e +int style Base_Widget_AppCompat_ActionMode 0x7f0e008f +int style Base_Widget_AppCompat_ActivityChooserView 0x7f0e0090 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0e0091 +int style Base_Widget_AppCompat_Button 0x7f0e0092 +int style Base_Widget_AppCompat_Button_Borderless 0x7f0e0093 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0e0094 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0e0095 +int style Base_Widget_AppCompat_Button_Colored 0x7f0e0096 +int style Base_Widget_AppCompat_Button_Small 0x7f0e0097 +int style Base_Widget_AppCompat_ButtonBar 0x7f0e0098 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0e0099 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0e009a +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0e009b +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0e009c +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0e009d +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0e009e +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0e009f +int style Base_Widget_AppCompat_EditText 0x7f0e00a0 +int style Base_Widget_AppCompat_ImageButton 0x7f0e00a1 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f0e00a2 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0e00a3 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0e00a4 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0e00a5 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0e00a6 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0e00a7 +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0e00a8 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0e00a9 +int style Base_Widget_AppCompat_ListMenuView 0x7f0e00aa +int style Base_Widget_AppCompat_ListPopupWindow 0x7f0e00ab +int style Base_Widget_AppCompat_ListView 0x7f0e00ac +int style Base_Widget_AppCompat_ListView_DropDown 0x7f0e00ad +int style Base_Widget_AppCompat_ListView_Menu 0x7f0e00ae +int style Base_Widget_AppCompat_PopupMenu 0x7f0e00af +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0e00b0 +int style Base_Widget_AppCompat_PopupWindow 0x7f0e00b1 +int style Base_Widget_AppCompat_ProgressBar 0x7f0e00b2 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0e00b3 +int style Base_Widget_AppCompat_RatingBar 0x7f0e00b4 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0e00b5 +int style Base_Widget_AppCompat_RatingBar_Small 0x7f0e00b6 +int style Base_Widget_AppCompat_SearchView 0x7f0e00b7 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0e00b8 +int style Base_Widget_AppCompat_SeekBar 0x7f0e00b9 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0e00ba +int style Base_Widget_AppCompat_Spinner 0x7f0e00bb +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0e00bc +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0e00bd +int style Base_Widget_AppCompat_Toolbar 0x7f0e00be +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0e00bf +int style Base_Widget_Design_TabLayout 0x7f0e00c0 +int style Base_Widget_MaterialComponents_Chip 0x7f0e00c1 +int style Base_Widget_MaterialComponents_TextInputEditText 0x7f0e00c2 +int style Base_Widget_MaterialComponents_TextInputLayout 0x7f0e00c3 +int style CardView 0x7f0e00c4 +int style CardView_Dark 0x7f0e00c5 +int style CardView_Light 0x7f0e00c6 +int style Platform_AppCompat 0x7f0e00c7 +int style Platform_AppCompat_Light 0x7f0e00c8 +int style Platform_MaterialComponents 0x7f0e00c9 +int style Platform_MaterialComponents_Dialog 0x7f0e00ca +int style Platform_MaterialComponents_Light 0x7f0e00cb +int style Platform_MaterialComponents_Light_Dialog 0x7f0e00cc +int style Platform_ThemeOverlay_AppCompat 0x7f0e00cd +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0e00ce +int style Platform_ThemeOverlay_AppCompat_Light 0x7f0e00cf +int style Platform_V21_AppCompat 0x7f0e00d0 +int style Platform_V21_AppCompat_Light 0x7f0e00d1 +int style Platform_V25_AppCompat 0x7f0e00d2 +int style Platform_V25_AppCompat_Light 0x7f0e00d3 +int style Platform_Widget_AppCompat_Spinner 0x7f0e00d4 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0e00d5 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0e00d6 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0e00d7 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0e00d8 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0e00d9 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f0e00da +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f0e00db +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0e00dc +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f0e00dd +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0e00de +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0e00df +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0e00e0 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0e00e1 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0e00e2 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0e00e3 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0e00e4 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0e00e5 +int style TextAppearance_AppCompat 0x7f0e00e6 +int style TextAppearance_AppCompat_Body1 0x7f0e00e7 +int style TextAppearance_AppCompat_Body2 0x7f0e00e8 +int style TextAppearance_AppCompat_Button 0x7f0e00e9 +int style TextAppearance_AppCompat_Caption 0x7f0e00ea +int style TextAppearance_AppCompat_Display1 0x7f0e00eb +int style TextAppearance_AppCompat_Display2 0x7f0e00ec +int style TextAppearance_AppCompat_Display3 0x7f0e00ed +int style TextAppearance_AppCompat_Display4 0x7f0e00ee +int style TextAppearance_AppCompat_Headline 0x7f0e00ef +int style TextAppearance_AppCompat_Inverse 0x7f0e00f0 +int style TextAppearance_AppCompat_Large 0x7f0e00f1 +int style TextAppearance_AppCompat_Large_Inverse 0x7f0e00f2 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0e00f3 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0e00f4 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0e00f5 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0e00f6 +int style TextAppearance_AppCompat_Medium 0x7f0e00f7 +int style TextAppearance_AppCompat_Medium_Inverse 0x7f0e00f8 +int style TextAppearance_AppCompat_Menu 0x7f0e00f9 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0e00fa +int style TextAppearance_AppCompat_SearchResult_Title 0x7f0e00fb +int style TextAppearance_AppCompat_Small 0x7f0e00fc +int style TextAppearance_AppCompat_Small_Inverse 0x7f0e00fd +int style TextAppearance_AppCompat_Subhead 0x7f0e00fe +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0e00ff +int style TextAppearance_AppCompat_Title 0x7f0e0100 +int style TextAppearance_AppCompat_Title_Inverse 0x7f0e0101 +int style TextAppearance_AppCompat_Tooltip 0x7f0e0102 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0e0103 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0e0104 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0e0105 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0e0106 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0e0107 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0e0108 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0e0109 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0e010a +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0e010b +int style TextAppearance_AppCompat_Widget_Button 0x7f0e010c +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0e010d +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0e010e +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0e010f +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0e0110 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0e0111 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0e0112 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0e0113 +int style TextAppearance_AppCompat_Widget_Switch 0x7f0e0114 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0e0115 +int style TextAppearance_Compat_Notification 0x7f0e0116 +int style TextAppearance_Compat_Notification_Info 0x7f0e0117 +int style TextAppearance_Compat_Notification_Info_Media 0x7f0e0118 +int style TextAppearance_Compat_Notification_Line2 0x7f0e0119 +int style TextAppearance_Compat_Notification_Line2_Media 0x7f0e011a +int style TextAppearance_Compat_Notification_Media 0x7f0e011b +int style TextAppearance_Compat_Notification_Time 0x7f0e011c +int style TextAppearance_Compat_Notification_Time_Media 0x7f0e011d +int style TextAppearance_Compat_Notification_Title 0x7f0e011e +int style TextAppearance_Compat_Notification_Title_Media 0x7f0e011f +int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0e0120 +int style TextAppearance_Design_Counter 0x7f0e0121 +int style TextAppearance_Design_Counter_Overflow 0x7f0e0122 +int style TextAppearance_Design_Error 0x7f0e0123 +int style TextAppearance_Design_HelperText 0x7f0e0124 +int style TextAppearance_Design_Hint 0x7f0e0125 +int style TextAppearance_Design_Snackbar_Message 0x7f0e0126 +int style TextAppearance_Design_Tab 0x7f0e0127 +int style TextAppearance_MaterialComponents_Body1 0x7f0e0128 +int style TextAppearance_MaterialComponents_Body2 0x7f0e0129 +int style TextAppearance_MaterialComponents_Button 0x7f0e012a +int style TextAppearance_MaterialComponents_Caption 0x7f0e012b +int style TextAppearance_MaterialComponents_Chip 0x7f0e012c +int style TextAppearance_MaterialComponents_Headline1 0x7f0e012d +int style TextAppearance_MaterialComponents_Headline2 0x7f0e012e +int style TextAppearance_MaterialComponents_Headline3 0x7f0e012f +int style TextAppearance_MaterialComponents_Headline4 0x7f0e0130 +int style TextAppearance_MaterialComponents_Headline5 0x7f0e0131 +int style TextAppearance_MaterialComponents_Headline6 0x7f0e0132 +int style TextAppearance_MaterialComponents_Overline 0x7f0e0133 +int style TextAppearance_MaterialComponents_Subtitle1 0x7f0e0134 +int style TextAppearance_MaterialComponents_Subtitle2 0x7f0e0135 +int style TextAppearance_MaterialComponents_Tab 0x7f0e0136 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0e0137 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0e0138 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0e0139 +int style Theme_AppCompat 0x7f0e013a +int style Theme_AppCompat_CompactMenu 0x7f0e013b +int style Theme_AppCompat_DayNight 0x7f0e013c +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0e013d +int style Theme_AppCompat_DayNight_Dialog 0x7f0e013e +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0e013f +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0e0140 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0e0141 +int style Theme_AppCompat_DayNight_NoActionBar 0x7f0e0142 +int style Theme_AppCompat_Dialog 0x7f0e0143 +int style Theme_AppCompat_Dialog_Alert 0x7f0e0144 +int style Theme_AppCompat_Dialog_MinWidth 0x7f0e0145 +int style Theme_AppCompat_DialogWhenLarge 0x7f0e0146 +int style Theme_AppCompat_Light 0x7f0e0147 +int style Theme_AppCompat_Light_DarkActionBar 0x7f0e0148 +int style Theme_AppCompat_Light_Dialog 0x7f0e0149 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f0e014a +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0e014b +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0e014c +int style Theme_AppCompat_Light_NoActionBar 0x7f0e014d +int style Theme_AppCompat_NoActionBar 0x7f0e014e +int style Theme_Design 0x7f0e014f +int style Theme_Design_BottomSheetDialog 0x7f0e0150 +int style Theme_Design_Light 0x7f0e0151 +int style Theme_Design_Light_BottomSheetDialog 0x7f0e0152 +int style Theme_Design_Light_NoActionBar 0x7f0e0153 +int style Theme_Design_NoActionBar 0x7f0e0154 +int style Theme_MaterialComponents 0x7f0e0155 +int style Theme_MaterialComponents_BottomSheetDialog 0x7f0e0156 +int style Theme_MaterialComponents_Bridge 0x7f0e0157 +int style Theme_MaterialComponents_CompactMenu 0x7f0e0158 +int style Theme_MaterialComponents_Dialog 0x7f0e0159 +int style Theme_MaterialComponents_Dialog_Alert 0x7f0e015a +int style Theme_MaterialComponents_Dialog_MinWidth 0x7f0e015b +int style Theme_MaterialComponents_DialogWhenLarge 0x7f0e015c +int style Theme_MaterialComponents_Light 0x7f0e015d +int style Theme_MaterialComponents_Light_BottomSheetDialog 0x7f0e015e +int style Theme_MaterialComponents_Light_Bridge 0x7f0e015f +int style Theme_MaterialComponents_Light_DarkActionBar 0x7f0e0160 +int style Theme_MaterialComponents_Light_DarkActionBar_Bridge 0x7f0e0161 +int style Theme_MaterialComponents_Light_Dialog 0x7f0e0162 +int style Theme_MaterialComponents_Light_Dialog_Alert 0x7f0e0163 +int style Theme_MaterialComponents_Light_Dialog_MinWidth 0x7f0e0164 +int style Theme_MaterialComponents_Light_DialogWhenLarge 0x7f0e0165 +int style Theme_MaterialComponents_Light_NoActionBar 0x7f0e0166 +int style Theme_MaterialComponents_Light_NoActionBar_Bridge 0x7f0e0167 +int style Theme_MaterialComponents_NoActionBar 0x7f0e0168 +int style Theme_MaterialComponents_NoActionBar_Bridge 0x7f0e0169 +int style ThemeOverlay_AppCompat 0x7f0e016a +int style ThemeOverlay_AppCompat_ActionBar 0x7f0e016b +int style ThemeOverlay_AppCompat_Dark 0x7f0e016c +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0e016d +int style ThemeOverlay_AppCompat_Dialog 0x7f0e016e +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0e016f +int style ThemeOverlay_AppCompat_Light 0x7f0e0170 +int style ThemeOverlay_MaterialComponents 0x7f0e0171 +int style ThemeOverlay_MaterialComponents_ActionBar 0x7f0e0172 +int style ThemeOverlay_MaterialComponents_Dark 0x7f0e0173 +int style ThemeOverlay_MaterialComponents_Dark_ActionBar 0x7f0e0174 +int style ThemeOverlay_MaterialComponents_Dialog 0x7f0e0175 +int style ThemeOverlay_MaterialComponents_Dialog_Alert 0x7f0e0176 +int style ThemeOverlay_MaterialComponents_Light 0x7f0e0177 +int style ThemeOverlay_MaterialComponents_TextInputEditText 0x7f0e0178 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox 0x7f0e0179 +int style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f0e017a +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox 0x7f0e017b +int style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f0e017c +int style Widget_AppCompat_ActionBar 0x7f0e017d +int style Widget_AppCompat_ActionBar_Solid 0x7f0e017e +int style Widget_AppCompat_ActionBar_TabBar 0x7f0e017f +int style Widget_AppCompat_ActionBar_TabText 0x7f0e0180 +int style Widget_AppCompat_ActionBar_TabView 0x7f0e0181 +int style Widget_AppCompat_ActionButton 0x7f0e0182 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f0e0183 +int style Widget_AppCompat_ActionButton_Overflow 0x7f0e0184 +int style Widget_AppCompat_ActionMode 0x7f0e0185 +int style Widget_AppCompat_ActivityChooserView 0x7f0e0186 +int style Widget_AppCompat_AutoCompleteTextView 0x7f0e0187 +int style Widget_AppCompat_Button 0x7f0e0188 +int style Widget_AppCompat_Button_Borderless 0x7f0e0189 +int style Widget_AppCompat_Button_Borderless_Colored 0x7f0e018a +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0e018b +int style Widget_AppCompat_Button_Colored 0x7f0e018c +int style Widget_AppCompat_Button_Small 0x7f0e018d +int style Widget_AppCompat_ButtonBar 0x7f0e018e +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0e018f +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0e0190 +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0e0191 +int style Widget_AppCompat_CompoundButton_Switch 0x7f0e0192 +int style Widget_AppCompat_DrawerArrowToggle 0x7f0e0193 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f0e0194 +int style Widget_AppCompat_EditText 0x7f0e0195 +int style Widget_AppCompat_ImageButton 0x7f0e0196 +int style Widget_AppCompat_Light_ActionBar 0x7f0e0197 +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0e0198 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0e0199 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0e019a +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0e019b +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0e019c +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0e019d +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0e019e +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0e019f +int style Widget_AppCompat_Light_ActionButton 0x7f0e01a0 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0e01a1 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0e01a2 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0e01a3 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f0e01a4 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0e01a5 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0e01a6 +int style Widget_AppCompat_Light_ListPopupWindow 0x7f0e01a7 +int style Widget_AppCompat_Light_ListView_DropDown 0x7f0e01a8 +int style Widget_AppCompat_Light_PopupMenu 0x7f0e01a9 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0e01aa +int style Widget_AppCompat_Light_SearchView 0x7f0e01ab +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0e01ac +int style Widget_AppCompat_ListMenuView 0x7f0e01ad +int style Widget_AppCompat_ListPopupWindow 0x7f0e01ae +int style Widget_AppCompat_ListView 0x7f0e01af +int style Widget_AppCompat_ListView_DropDown 0x7f0e01b0 +int style Widget_AppCompat_ListView_Menu 0x7f0e01b1 +int style Widget_AppCompat_PopupMenu 0x7f0e01b2 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f0e01b3 +int style Widget_AppCompat_PopupWindow 0x7f0e01b4 +int style Widget_AppCompat_ProgressBar 0x7f0e01b5 +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0e01b6 +int style Widget_AppCompat_RatingBar 0x7f0e01b7 +int style Widget_AppCompat_RatingBar_Indicator 0x7f0e01b8 +int style Widget_AppCompat_RatingBar_Small 0x7f0e01b9 +int style Widget_AppCompat_SearchView 0x7f0e01ba +int style Widget_AppCompat_SearchView_ActionBar 0x7f0e01bb +int style Widget_AppCompat_SeekBar 0x7f0e01bc +int style Widget_AppCompat_SeekBar_Discrete 0x7f0e01bd +int style Widget_AppCompat_Spinner 0x7f0e01be +int style Widget_AppCompat_Spinner_DropDown 0x7f0e01bf +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0e01c0 +int style Widget_AppCompat_Spinner_Underlined 0x7f0e01c1 +int style Widget_AppCompat_TextView_SpinnerItem 0x7f0e01c2 +int style Widget_AppCompat_Toolbar 0x7f0e01c3 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0e01c4 +int style Widget_Compat_NotificationActionContainer 0x7f0e01c5 +int style Widget_Compat_NotificationActionText 0x7f0e01c6 +int style Widget_Design_AppBarLayout 0x7f0e01c7 +int style Widget_Design_BottomNavigationView 0x7f0e01c8 +int style Widget_Design_BottomSheet_Modal 0x7f0e01c9 +int style Widget_Design_CollapsingToolbar 0x7f0e01ca +int style Widget_Design_FloatingActionButton 0x7f0e01cb +int style Widget_Design_NavigationView 0x7f0e01cc +int style Widget_Design_ScrimInsetsFrameLayout 0x7f0e01cd +int style Widget_Design_Snackbar 0x7f0e01ce +int style Widget_Design_TabLayout 0x7f0e01cf +int style Widget_Design_TextInputLayout 0x7f0e01d0 +int style Widget_MaterialComponents_BottomAppBar 0x7f0e01d1 +int style Widget_MaterialComponents_BottomAppBar_Colored 0x7f0e01d2 +int style Widget_MaterialComponents_BottomNavigationView 0x7f0e01d3 +int style Widget_MaterialComponents_BottomNavigationView_Colored 0x7f0e01d4 +int style Widget_MaterialComponents_BottomSheet_Modal 0x7f0e01d5 +int style Widget_MaterialComponents_Button 0x7f0e01d6 +int style Widget_MaterialComponents_Button_Icon 0x7f0e01d7 +int style Widget_MaterialComponents_Button_OutlinedButton 0x7f0e01d8 +int style Widget_MaterialComponents_Button_OutlinedButton_Icon 0x7f0e01d9 +int style Widget_MaterialComponents_Button_TextButton 0x7f0e01da +int style Widget_MaterialComponents_Button_TextButton_Dialog 0x7f0e01db +int style Widget_MaterialComponents_Button_TextButton_Dialog_Icon 0x7f0e01dc +int style Widget_MaterialComponents_Button_TextButton_Icon 0x7f0e01dd +int style Widget_MaterialComponents_Button_UnelevatedButton 0x7f0e01de +int style Widget_MaterialComponents_Button_UnelevatedButton_Icon 0x7f0e01df +int style Widget_MaterialComponents_CardView 0x7f0e01e0 +int style Widget_MaterialComponents_Chip_Action 0x7f0e01e1 +int style Widget_MaterialComponents_Chip_Choice 0x7f0e01e2 +int style Widget_MaterialComponents_Chip_Entry 0x7f0e01e3 +int style Widget_MaterialComponents_Chip_Filter 0x7f0e01e4 +int style Widget_MaterialComponents_ChipGroup 0x7f0e01e5 +int style Widget_MaterialComponents_FloatingActionButton 0x7f0e01e6 +int style Widget_MaterialComponents_NavigationView 0x7f0e01e7 +int style Widget_MaterialComponents_Snackbar 0x7f0e01e8 +int style Widget_MaterialComponents_Snackbar_FullWidth 0x7f0e01e9 +int style Widget_MaterialComponents_TabLayout 0x7f0e01ea +int style Widget_MaterialComponents_TabLayout_Colored 0x7f0e01eb +int style Widget_MaterialComponents_TextInputEditText_FilledBox 0x7f0e01ec +int style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense 0x7f0e01ed +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox 0x7f0e01ee +int style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense 0x7f0e01ef +int style Widget_MaterialComponents_TextInputLayout_FilledBox 0x7f0e01f0 +int style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense 0x7f0e01f1 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox 0x7f0e01f2 +int style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense 0x7f0e01f3 +int style Widget_MaterialComponents_Toolbar 0x7f0e01f4 +int style Widget_Support_CoordinatorLayout 0x7f0e01f5 +int[] styleable ActionBar { 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f0300a4, 0x7f0300a9, 0x7f0300aa, 0x7f0300b5, 0x7f0300df, 0x7f0300e4, 0x7f0300e9, 0x7f0300ea, 0x7f0300ec, 0x7f0300f6, 0x7f030100, 0x7f030123, 0x7f03012f, 0x7f030140, 0x7f030144, 0x7f030145, 0x7f030173, 0x7f030176, 0x7f0301bb, 0x7f0301c5 } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x010100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x0101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f030031, 0x7f030032, 0x7f03007e, 0x7f0300df, 0x7f030176, 0x7f0301c5 } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f0300ba, 0x7f0300f7 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x010100f2, 0x7f030052, 0x7f030053, 0x7f03011a, 0x7f03011b, 0x7f03012c, 0x7f03015b, 0x7f03015c } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } +int styleable AnimatedStateListDrawableCompat_android_dither 0 +int styleable AnimatedStateListDrawableCompat_android_visible 1 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 2 +int styleable AnimatedStateListDrawableCompat_android_constantSize 3 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 4 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 5 +int[] styleable AnimatedStateListDrawableItem { 0x010100d0, 0x01010199 } +int styleable AnimatedStateListDrawableItem_android_id 0 +int styleable AnimatedStateListDrawableItem_android_drawable 1 +int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_toId 1 +int styleable AnimatedStateListDrawableTransition_android_fromId 2 +int styleable AnimatedStateListDrawableTransition_android_reversible 3 +int[] styleable AppBarLayout { 0x010100d4, 0x0101048f, 0x01010540, 0x7f0300b5, 0x7f0300bb, 0x7f030115 } +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_android_touchscreenBlocksFocus 1 +int styleable AppBarLayout_android_keyboardNavigationCluster 2 +int styleable AppBarLayout_elevation 3 +int styleable AppBarLayout_expanded 4 +int styleable AppBarLayout_liftOnScroll 5 +int[] styleable AppBarLayoutStates { 0x7f030169, 0x7f03016a, 0x7f03016b, 0x7f03016c } +int styleable AppBarLayoutStates_state_collapsed 0 +int styleable AppBarLayoutStates_state_collapsible 1 +int styleable AppBarLayoutStates_state_liftable 2 +int styleable AppBarLayoutStates_state_lifted 3 +int[] styleable AppBarLayout_Layout { 0x7f030113, 0x7f030114 } +int styleable AppBarLayout_Layout_layout_scrollFlags 0 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 1 +int[] styleable AppCompatImageView { 0x01010119, 0x7f030166, 0x7f0301b9, 0x7f0301ba } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x01010142, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 } +int styleable AppCompatTextHelper_android_textAppearance 0 +int styleable AppCompatTextHelper_android_drawableTop 1 +int styleable AppCompatTextHelper_android_drawableBottom 2 +int styleable AppCompatTextHelper_android_drawableLeft 3 +int styleable AppCompatTextHelper_android_drawableRight 4 +int styleable AppCompatTextHelper_android_drawableStart 5 +int styleable AppCompatTextHelper_android_drawableEnd 6 +int[] styleable AppCompatTextView { 0x01010034, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030030, 0x7f0300ce, 0x7f0300d1, 0x7f030108, 0x7f030116, 0x7f030196 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_firstBaselineToTopHeight 6 +int styleable AppCompatTextView_fontFamily 7 +int styleable AppCompatTextView_lastBaselineToBottomHeight 8 +int styleable AppCompatTextView_lineHeight 9 +int styleable AppCompatTextView_textAllCaps 10 +int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, 0x7f030025, 0x7f03002b, 0x7f03003e, 0x7f03004c, 0x7f03004d, 0x7f03004e, 0x7f03004f, 0x7f030050, 0x7f030054, 0x7f030055, 0x7f03005f, 0x7f030064, 0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008e, 0x7f03009d, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300ab, 0x7f0300ad, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3, 0x7f0300b4, 0x7f0300e9, 0x7f0300f5, 0x7f030118, 0x7f030119, 0x7f03011c, 0x7f03011d, 0x7f03011e, 0x7f03011f, 0x7f030120, 0x7f030121, 0x7f030122, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013f, 0x7f030141, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f030156, 0x7f030163, 0x7f030164, 0x7f03017a, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301ac, 0x7f0301ad, 0x7f0301c7, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca, 0x7f0301d1, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc } +int styleable AppCompatTheme_android_windowIsFloating 0 +int styleable AppCompatTheme_android_windowAnimationStyle 1 +int styleable AppCompatTheme_actionBarDivider 2 +int styleable AppCompatTheme_actionBarItemBackground 3 +int styleable AppCompatTheme_actionBarPopupTheme 4 +int styleable AppCompatTheme_actionBarSize 5 +int styleable AppCompatTheme_actionBarSplitStyle 6 +int styleable AppCompatTheme_actionBarStyle 7 +int styleable AppCompatTheme_actionBarTabBarStyle 8 +int styleable AppCompatTheme_actionBarTabStyle 9 +int styleable AppCompatTheme_actionBarTabTextStyle 10 +int styleable AppCompatTheme_actionBarTheme 11 +int styleable AppCompatTheme_actionBarWidgetTheme 12 +int styleable AppCompatTheme_actionButtonStyle 13 +int styleable AppCompatTheme_actionDropDownStyle 14 +int styleable AppCompatTheme_actionMenuTextAppearance 15 +int styleable AppCompatTheme_actionMenuTextColor 16 +int styleable AppCompatTheme_actionModeBackground 17 +int styleable AppCompatTheme_actionModeCloseButtonStyle 18 +int styleable AppCompatTheme_actionModeCloseDrawable 19 +int styleable AppCompatTheme_actionModeCopyDrawable 20 +int styleable AppCompatTheme_actionModeCutDrawable 21 +int styleable AppCompatTheme_actionModeFindDrawable 22 +int styleable AppCompatTheme_actionModePasteDrawable 23 +int styleable AppCompatTheme_actionModePopupWindowStyle 24 +int styleable AppCompatTheme_actionModeSelectAllDrawable 25 +int styleable AppCompatTheme_actionModeShareDrawable 26 +int styleable AppCompatTheme_actionModeSplitBackground 27 +int styleable AppCompatTheme_actionModeStyle 28 +int styleable AppCompatTheme_actionModeWebSearchDrawable 29 +int styleable AppCompatTheme_actionOverflowButtonStyle 30 +int styleable AppCompatTheme_actionOverflowMenuStyle 31 +int styleable AppCompatTheme_activityChooserViewStyle 32 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 +int styleable AppCompatTheme_alertDialogCenterButtons 34 +int styleable AppCompatTheme_alertDialogStyle 35 +int styleable AppCompatTheme_alertDialogTheme 36 +int styleable AppCompatTheme_autoCompleteTextViewStyle 37 +int styleable AppCompatTheme_borderlessButtonStyle 38 +int styleable AppCompatTheme_buttonBarButtonStyle 39 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 +int styleable AppCompatTheme_buttonBarStyle 43 +int styleable AppCompatTheme_buttonStyle 44 +int styleable AppCompatTheme_buttonStyleSmall 45 +int styleable AppCompatTheme_checkboxStyle 46 +int styleable AppCompatTheme_checkedTextViewStyle 47 +int styleable AppCompatTheme_colorAccent 48 +int styleable AppCompatTheme_colorBackgroundFloating 49 +int styleable AppCompatTheme_colorButtonNormal 50 +int styleable AppCompatTheme_colorControlActivated 51 +int styleable AppCompatTheme_colorControlHighlight 52 +int styleable AppCompatTheme_colorControlNormal 53 +int styleable AppCompatTheme_colorError 54 +int styleable AppCompatTheme_colorPrimary 55 +int styleable AppCompatTheme_colorPrimaryDark 56 +int styleable AppCompatTheme_colorSwitchThumbNormal 57 +int styleable AppCompatTheme_controlBackground 58 +int styleable AppCompatTheme_dialogCornerRadius 59 +int styleable AppCompatTheme_dialogPreferredPadding 60 +int styleable AppCompatTheme_dialogTheme 61 +int styleable AppCompatTheme_dividerHorizontal 62 +int styleable AppCompatTheme_dividerVertical 63 +int styleable AppCompatTheme_dropDownListViewStyle 64 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 65 +int styleable AppCompatTheme_editTextBackground 66 +int styleable AppCompatTheme_editTextColor 67 +int styleable AppCompatTheme_editTextStyle 68 +int styleable AppCompatTheme_homeAsUpIndicator 69 +int styleable AppCompatTheme_imageButtonStyle 70 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 71 +int styleable AppCompatTheme_listDividerAlertDialog 72 +int styleable AppCompatTheme_listMenuViewStyle 73 +int styleable AppCompatTheme_listPopupWindowStyle 74 +int styleable AppCompatTheme_listPreferredItemHeight 75 +int styleable AppCompatTheme_listPreferredItemHeightLarge 76 +int styleable AppCompatTheme_listPreferredItemHeightSmall 77 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 78 +int styleable AppCompatTheme_listPreferredItemPaddingRight 79 +int styleable AppCompatTheme_panelBackground 80 +int styleable AppCompatTheme_panelMenuListTheme 81 +int styleable AppCompatTheme_panelMenuListWidth 82 +int styleable AppCompatTheme_popupMenuStyle 83 +int styleable AppCompatTheme_popupWindowStyle 84 +int styleable AppCompatTheme_radioButtonStyle 85 +int styleable AppCompatTheme_ratingBarStyle 86 +int styleable AppCompatTheme_ratingBarStyleIndicator 87 +int styleable AppCompatTheme_ratingBarStyleSmall 88 +int styleable AppCompatTheme_searchViewStyle 89 +int styleable AppCompatTheme_seekBarStyle 90 +int styleable AppCompatTheme_selectableItemBackground 91 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 92 +int styleable AppCompatTheme_spinnerDropDownItemStyle 93 +int styleable AppCompatTheme_spinnerStyle 94 +int styleable AppCompatTheme_switchStyle 95 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 96 +int styleable AppCompatTheme_textAppearanceListItem 97 +int styleable AppCompatTheme_textAppearanceListItemSecondary 98 +int styleable AppCompatTheme_textAppearanceListItemSmall 99 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 100 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 102 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103 +int styleable AppCompatTheme_textColorAlertDialogListItem 104 +int styleable AppCompatTheme_textColorSearchUrl 105 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 106 +int styleable AppCompatTheme_toolbarStyle 107 +int styleable AppCompatTheme_tooltipForegroundColor 108 +int styleable AppCompatTheme_tooltipFrameBackground 109 +int styleable AppCompatTheme_viewInflaterClass 110 +int styleable AppCompatTheme_windowActionBar 111 +int styleable AppCompatTheme_windowActionBarOverlay 112 +int styleable AppCompatTheme_windowActionModeOverlay 113 +int styleable AppCompatTheme_windowFixedHeightMajor 114 +int styleable AppCompatTheme_windowFixedHeightMinor 115 +int styleable AppCompatTheme_windowFixedWidthMajor 116 +int styleable AppCompatTheme_windowFixedWidthMinor 117 +int styleable AppCompatTheme_windowMinWidthMajor 118 +int styleable AppCompatTheme_windowMinWidthMinor 119 +int styleable AppCompatTheme_windowNoTitle 120 +int[] styleable BottomAppBar { 0x7f030034, 0x7f0300c3, 0x7f0300c4, 0x7f0300c5, 0x7f0300c6, 0x7f0300e5 } +int styleable BottomAppBar_backgroundTint 0 +int styleable BottomAppBar_fabAlignmentMode 1 +int styleable BottomAppBar_fabCradleMargin 2 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 3 +int styleable BottomAppBar_fabCradleVerticalOffset 4 +int styleable BottomAppBar_hideOnScroll 5 +int[] styleable BottomNavigationView { 0x7f0300b5, 0x7f0300fa, 0x7f0300fc, 0x7f0300fe, 0x7f0300ff, 0x7f030103, 0x7f030104, 0x7f030105, 0x7f030107, 0x7f03012b } +int styleable BottomNavigationView_elevation 0 +int styleable BottomNavigationView_itemBackground 1 +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2 +int styleable BottomNavigationView_itemIconSize 3 +int styleable BottomNavigationView_itemIconTint 4 +int styleable BottomNavigationView_itemTextAppearanceActive 5 +int styleable BottomNavigationView_itemTextAppearanceInactive 6 +int styleable BottomNavigationView_itemTextColor 7 +int styleable BottomNavigationView_labelVisibilityMode 8 +int styleable BottomNavigationView_menu 9 +int[] styleable BottomSheetBehavior_Layout { 0x7f030038, 0x7f030039, 0x7f03003b, 0x7f03003c } +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 0 +int styleable BottomSheetBehavior_Layout_behavior_hideable 1 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 2 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 3 +int[] styleable ButtonBarLayout { 0x7f030026 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable CardView { 0x0101013f, 0x01010140, 0x7f030058, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a, 0x7f03009b } +int styleable CardView_android_minWidth 0 +int styleable CardView_android_minHeight 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 +int[] styleable Chip { 0x01010034, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030065, 0x7f030066, 0x7f030067, 0x7f030069, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f03006d, 0x7f03006e, 0x7f030073, 0x7f030074, 0x7f030075, 0x7f030077, 0x7f030078, 0x7f030079, 0x7f03007a, 0x7f03007b, 0x7f03007c, 0x7f03007d, 0x7f0300e3, 0x7f0300ed, 0x7f0300f1, 0x7f03014d, 0x7f030159, 0x7f0301ae, 0x7f0301b0 } +int styleable Chip_android_textAppearance 0 +int styleable Chip_android_ellipsize 1 +int styleable Chip_android_maxWidth 2 +int styleable Chip_android_text 3 +int styleable Chip_android_checkable 4 +int styleable Chip_checkedIcon 5 +int styleable Chip_checkedIconEnabled 6 +int styleable Chip_checkedIconVisible 7 +int styleable Chip_chipBackgroundColor 8 +int styleable Chip_chipCornerRadius 9 +int styleable Chip_chipEndPadding 10 +int styleable Chip_chipIcon 11 +int styleable Chip_chipIconEnabled 12 +int styleable Chip_chipIconSize 13 +int styleable Chip_chipIconTint 14 +int styleable Chip_chipIconVisible 15 +int styleable Chip_chipMinHeight 16 +int styleable Chip_chipStartPadding 17 +int styleable Chip_chipStrokeColor 18 +int styleable Chip_chipStrokeWidth 19 +int styleable Chip_closeIcon 20 +int styleable Chip_closeIconEnabled 21 +int styleable Chip_closeIconEndPadding 22 +int styleable Chip_closeIconSize 23 +int styleable Chip_closeIconStartPadding 24 +int styleable Chip_closeIconTint 25 +int styleable Chip_closeIconVisible 26 +int styleable Chip_hideMotionSpec 27 +int styleable Chip_iconEndPadding 28 +int styleable Chip_iconStartPadding 29 +int styleable Chip_rippleColor 30 +int styleable Chip_showMotionSpec 31 +int styleable Chip_textEndPadding 32 +int styleable Chip_textStartPadding 33 +int[] styleable ChipGroup { 0x7f030060, 0x7f03006f, 0x7f030070, 0x7f030071, 0x7f03015d, 0x7f03015e } +int styleable ChipGroup_checkedChip 0 +int styleable ChipGroup_chipSpacing 1 +int styleable ChipGroup_chipSpacingHorizontal 2 +int styleable ChipGroup_chipSpacingVertical 3 +int styleable ChipGroup_singleLine 4 +int styleable ChipGroup_singleSelection 5 +int[] styleable CollapsingToolbarLayout { 0x7f030081, 0x7f030082, 0x7f03009c, 0x7f0300bc, 0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f03014e, 0x7f030150, 0x7f03016e, 0x7f0301bb, 0x7f0301bc, 0x7f0301c6 } +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_contentScrim 2 +int styleable CollapsingToolbarLayout_expandedTitleGravity 3 +int styleable CollapsingToolbarLayout_expandedTitleMargin 4 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 8 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 9 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 10 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 11 +int styleable CollapsingToolbarLayout_statusBarScrim 12 +int styleable CollapsingToolbarLayout_title 13 +int styleable CollapsingToolbarLayout_titleEnabled 14 +int styleable CollapsingToolbarLayout_toolbarId 15 +int[] styleable CollapsingToolbarLayout_Layout { 0x7f03010e, 0x7f03010f } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f030027 } +int styleable ColorStateListItem_android_color 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_alpha 2 +int[] styleable CompoundButton { 0x01010107, 0x7f030056, 0x7f030057 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonTint 1 +int styleable CompoundButton_buttonTintMode 2 +int[] styleable CoordinatorLayout { 0x7f030106, 0x7f03016d } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable DesignTheme { 0x7f030041, 0x7f030042 } +int styleable DesignTheme_bottomSheetDialogTheme 0 +int styleable DesignTheme_bottomSheetStyle 1 +int[] styleable DrawerArrowToggle { 0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030083, 0x7f0300ae, 0x7f0300dc, 0x7f030162, 0x7f0301b2 } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable FloatingActionButton { 0x7f030034, 0x7f030035, 0x7f03003d, 0x7f0300b5, 0x7f0300c7, 0x7f0300c8, 0x7f0300e3, 0x7f0300eb, 0x7f030129, 0x7f030143, 0x7f03014d, 0x7f030159, 0x7f0301d0 } +int styleable FloatingActionButton_backgroundTint 0 +int styleable FloatingActionButton_backgroundTintMode 1 +int styleable FloatingActionButton_borderWidth 2 +int styleable FloatingActionButton_elevation 3 +int styleable FloatingActionButton_fabCustomSize 4 +int styleable FloatingActionButton_fabSize 5 +int styleable FloatingActionButton_hideMotionSpec 6 +int styleable FloatingActionButton_hoveredFocusedTranslationZ 7 +int styleable FloatingActionButton_maxImageSize 8 +int styleable FloatingActionButton_pressedTranslationZ 9 +int styleable FloatingActionButton_rippleColor 10 +int styleable FloatingActionButton_showMotionSpec 11 +int styleable FloatingActionButton_useCompatPadding 12 +int[] styleable FloatingActionButton_Behavior_Layout { 0x7f030037 } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int[] styleable FlowLayout { 0x7f030101, 0x7f030117 } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontWeight 1 +int styleable FontFamilyFont_android_fontStyle 2 +int styleable FontFamilyFont_android_ttcIndex 3 +int styleable FontFamilyFont_android_fontVariationSettings 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f0300db } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 } +int styleable GradientColor_android_startColor 0 +int styleable GradientColor_android_endColor 1 +int styleable GradientColor_android_type 2 +int styleable GradientColor_android_centerX 3 +int styleable GradientColor_android_centerY 4 +int styleable GradientColor_android_gradientRadius 5 +int styleable GradientColor_android_tileMode 6 +int styleable GradientColor_android_centerColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_endX 10 +int styleable GradientColor_android_endY 11 +int[] styleable GradientColorItem { 0x010101a5, 0x01010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f0300aa, 0x7f0300ac, 0x7f03012a, 0x7f030158 } +int styleable LinearLayoutCompat_android_gravity 0 +int styleable LinearLayoutCompat_android_orientation 1 +int styleable LinearLayoutCompat_android_baselineAligned 2 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_width 1 +int styleable LinearLayoutCompat_Layout_android_layout_height 2 +int styleable LinearLayoutCompat_Layout_android_layout_weight 3 +int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MaterialButton { 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f030034, 0x7f030035, 0x7f03009f, 0x7f0300ec, 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f2, 0x7f0300f3, 0x7f03014d, 0x7f03016f, 0x7f030170 } +int styleable MaterialButton_android_insetLeft 0 +int styleable MaterialButton_android_insetRight 1 +int styleable MaterialButton_android_insetTop 2 +int styleable MaterialButton_android_insetBottom 3 +int styleable MaterialButton_backgroundTint 4 +int styleable MaterialButton_backgroundTintMode 5 +int styleable MaterialButton_cornerRadius 6 +int styleable MaterialButton_icon 7 +int styleable MaterialButton_iconGravity 8 +int styleable MaterialButton_iconPadding 9 +int styleable MaterialButton_iconSize 10 +int styleable MaterialButton_iconTint 11 +int styleable MaterialButton_iconTintMode 12 +int styleable MaterialButton_rippleColor 13 +int styleable MaterialButton_strokeColor 14 +int styleable MaterialButton_strokeWidth 15 +int[] styleable MaterialCardView { 0x7f03016f, 0x7f030170 } +int styleable MaterialCardView_strokeColor 0 +int styleable MaterialCardView_strokeWidth 1 +int[] styleable MaterialComponentsTheme { 0x7f030041, 0x7f030042, 0x7f030068, 0x7f030072, 0x7f030076, 0x7f030084, 0x7f030085, 0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f0300b4, 0x7f0300cf, 0x7f030125, 0x7f030126, 0x7f030130, 0x7f03014f, 0x7f03015f, 0x7f030192, 0x7f030197, 0x7f030198, 0x7f030199, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f03019e, 0x7f03019f, 0x7f0301a0, 0x7f0301a5, 0x7f0301aa, 0x7f0301ab, 0x7f0301af } +int styleable MaterialComponentsTheme_bottomSheetDialogTheme 0 +int styleable MaterialComponentsTheme_bottomSheetStyle 1 +int styleable MaterialComponentsTheme_chipGroupStyle 2 +int styleable MaterialComponentsTheme_chipStandaloneStyle 3 +int styleable MaterialComponentsTheme_chipStyle 4 +int styleable MaterialComponentsTheme_colorAccent 5 +int styleable MaterialComponentsTheme_colorBackgroundFloating 6 +int styleable MaterialComponentsTheme_colorPrimary 7 +int styleable MaterialComponentsTheme_colorPrimaryDark 8 +int styleable MaterialComponentsTheme_colorSecondary 9 +int styleable MaterialComponentsTheme_editTextStyle 10 +int styleable MaterialComponentsTheme_floatingActionButtonStyle 11 +int styleable MaterialComponentsTheme_materialButtonStyle 12 +int styleable MaterialComponentsTheme_materialCardViewStyle 13 +int styleable MaterialComponentsTheme_navigationViewStyle 14 +int styleable MaterialComponentsTheme_scrimBackground 15 +int styleable MaterialComponentsTheme_snackbarButtonStyle 16 +int styleable MaterialComponentsTheme_tabStyle 17 +int styleable MaterialComponentsTheme_textAppearanceBody1 18 +int styleable MaterialComponentsTheme_textAppearanceBody2 19 +int styleable MaterialComponentsTheme_textAppearanceButton 20 +int styleable MaterialComponentsTheme_textAppearanceCaption 21 +int styleable MaterialComponentsTheme_textAppearanceHeadline1 22 +int styleable MaterialComponentsTheme_textAppearanceHeadline2 23 +int styleable MaterialComponentsTheme_textAppearanceHeadline3 24 +int styleable MaterialComponentsTheme_textAppearanceHeadline4 25 +int styleable MaterialComponentsTheme_textAppearanceHeadline5 26 +int styleable MaterialComponentsTheme_textAppearanceHeadline6 27 +int styleable MaterialComponentsTheme_textAppearanceOverline 28 +int styleable MaterialComponentsTheme_textAppearanceSubtitle1 29 +int styleable MaterialComponentsTheme_textAppearanceSubtitle2 30 +int styleable MaterialComponentsTheme_textInputStyle 31 +int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } +int styleable MenuGroup_android_enabled 0 +int styleable MenuGroup_android_id 1 +int styleable MenuGroup_android_visible 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_checkableBehavior 5 +int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f03000d, 0x7f03001f, 0x7f030020, 0x7f030028, 0x7f030090, 0x7f0300f2, 0x7f0300f3, 0x7f030131, 0x7f030157, 0x7f0301cb } +int styleable MenuItem_android_icon 0 +int styleable MenuItem_android_enabled 1 +int styleable MenuItem_android_id 2 +int styleable MenuItem_android_checked 3 +int styleable MenuItem_android_visible 4 +int styleable MenuItem_android_menuCategory 5 +int styleable MenuItem_android_orderInCategory 6 +int styleable MenuItem_android_title 7 +int styleable MenuItem_android_titleCondensed 8 +int styleable MenuItem_android_alphabeticShortcut 9 +int styleable MenuItem_android_numericShortcut 10 +int styleable MenuItem_android_checkable 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_actionLayout 13 +int styleable MenuItem_actionProviderClass 14 +int styleable MenuItem_actionViewClass 15 +int styleable MenuItem_alphabeticModifiers 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f030142, 0x7f030171 } +int styleable MenuView_android_windowAnimationStyle 0 +int styleable MenuView_android_itemTextAppearance 1 +int styleable MenuView_android_horizontalDivider 2 +int styleable MenuView_android_verticalDivider 3 +int styleable MenuView_android_headerBackground 4 +int styleable MenuView_android_itemBackground 5 +int styleable MenuView_android_itemIconDisabledAlpha 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f0300b5, 0x7f0300de, 0x7f0300fa, 0x7f0300fb, 0x7f0300fd, 0x7f0300ff, 0x7f030102, 0x7f030105, 0x7f03012b } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_maxWidth 2 +int styleable NavigationView_elevation 3 +int styleable NavigationView_headerLayout 4 +int styleable NavigationView_itemBackground 5 +int styleable NavigationView_itemHorizontalPadding 6 +int styleable NavigationView_itemIconPadding 7 +int styleable NavigationView_itemIconTint 8 +int styleable NavigationView_itemTextAppearance 9 +int styleable NavigationView_itemTextColor 10 +int styleable NavigationView_menu 11 +int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f030132 } +int styleable PopupWindow_android_popupBackground 0 +int styleable PopupWindow_android_popupAnimationStyle 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f030168 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable RecycleListView { 0x7f030133, 0x7f030136 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x010100c4, 0x010100f1, 0x7f0300c9, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f03010a, 0x7f03014c, 0x7f030161, 0x7f030167 } +int styleable RecyclerView_android_orientation 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_fastScrollEnabled 2 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 3 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 4 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 5 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 6 +int styleable RecyclerView_layoutManager 7 +int styleable RecyclerView_reverseLayout 8 +int styleable RecyclerView_spanCount 9 +int styleable RecyclerView_stackFromEnd 10 +int[] styleable ScrimInsetsFrameLayout { 0x7f0300f8 } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollingViewBehavior_Layout { 0x7f03003a } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f030077, 0x7f03008f, 0x7f0300a5, 0x7f0300dd, 0x7f0300f4, 0x7f030109, 0x7f030146, 0x7f030147, 0x7f030151, 0x7f030152, 0x7f030172, 0x7f030177, 0x7f0301d2 } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_maxWidth 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_imeOptions 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable Snackbar { 0x7f03015f, 0x7f030160 } +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int[] styleable SnackbarLayout { 0x0101011f, 0x7f0300b5, 0x7f030127 } +int styleable SnackbarLayout_android_maxWidth 0 +int styleable SnackbarLayout_elevation 1 +int styleable SnackbarLayout_maxActionInlineWidth 2 +int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f030140 } +int styleable Spinner_android_entries 0 +int styleable Spinner_android_popupBackground 1 +int styleable Spinner_android_prompt 2 +int styleable Spinner_android_dropDownWidth 3 +int styleable Spinner_popupTheme 4 +int[] styleable StateListDrawable { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d } +int styleable StateListDrawable_android_dither 0 +int styleable StateListDrawable_android_visible 1 +int styleable StateListDrawable_android_variablePadding 2 +int styleable StateListDrawable_android_constantSize 3 +int styleable StateListDrawable_android_enterFadeDuration 4 +int styleable StateListDrawable_android_exitFadeDuration 5 +int[] styleable StateListDrawableItem { 0x01010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f03015a, 0x7f030165, 0x7f030178, 0x7f030179, 0x7f03017b, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301cc, 0x7f0301cd, 0x7f0301ce } +int styleable SwitchCompat_android_textOn 0 +int styleable SwitchCompat_android_textOff 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x7f03017c, 0x7f03017d, 0x7f03017e, 0x7f03017f, 0x7f030180, 0x7f030181, 0x7f030182, 0x7f030183, 0x7f030184, 0x7f030185, 0x7f030186, 0x7f030187, 0x7f030188, 0x7f030189, 0x7f03018a, 0x7f03018b, 0x7f03018c, 0x7f03018d, 0x7f03018e, 0x7f03018f, 0x7f030190, 0x7f030191, 0x7f030193, 0x7f030194, 0x7f030195 } +int styleable TabLayout_tabBackground 0 +int styleable TabLayout_tabContentStart 1 +int styleable TabLayout_tabGravity 2 +int styleable TabLayout_tabIconTint 3 +int styleable TabLayout_tabIconTintMode 4 +int styleable TabLayout_tabIndicator 5 +int styleable TabLayout_tabIndicatorAnimationDuration 6 +int styleable TabLayout_tabIndicatorColor 7 +int styleable TabLayout_tabIndicatorFullWidth 8 +int styleable TabLayout_tabIndicatorGravity 9 +int styleable TabLayout_tabIndicatorHeight 10 +int styleable TabLayout_tabInlineLabel 11 +int styleable TabLayout_tabMaxWidth 12 +int styleable TabLayout_tabMinWidth 13 +int styleable TabLayout_tabMode 14 +int styleable TabLayout_tabPadding 15 +int styleable TabLayout_tabPaddingBottom 16 +int styleable TabLayout_tabPaddingEnd 17 +int styleable TabLayout_tabPaddingStart 18 +int styleable TabLayout_tabPaddingTop 19 +int styleable TabLayout_tabRippleColor 20 +int styleable TabLayout_tabSelectedTextColor 21 +int styleable TabLayout_tabTextAppearance 22 +int styleable TabLayout_tabTextColor 23 +int styleable TabLayout_tabUnboundedRipple 24 +int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f0300d1, 0x7f030196 } +int styleable TextAppearance_android_textSize 0 +int styleable TextAppearance_android_typeface 1 +int styleable TextAppearance_android_textStyle 2 +int styleable TextAppearance_android_textColor 3 +int styleable TextAppearance_android_textColorHint 4 +int styleable TextAppearance_android_textColorLink 5 +int styleable TextAppearance_android_shadowColor 6 +int styleable TextAppearance_android_shadowDx 7 +int styleable TextAppearance_android_shadowDy 8 +int styleable TextAppearance_android_shadowRadius 9 +int styleable TextAppearance_android_fontFamily 10 +int styleable TextAppearance_fontFamily 11 +int styleable TextAppearance_textAllCaps 12 +int[] styleable TextInputLayout { 0x0101009a, 0x01010150, 0x7f030043, 0x7f030044, 0x7f030045, 0x7f030046, 0x7f030047, 0x7f030048, 0x7f030049, 0x7f03004a, 0x7f03004b, 0x7f0300a0, 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f0300b8, 0x7f0300b9, 0x7f0300e0, 0x7f0300e1, 0x7f0300e2, 0x7f0300e6, 0x7f0300e7, 0x7f0300e8, 0x7f03013a, 0x7f03013b, 0x7f03013c, 0x7f03013d, 0x7f03013e } +int styleable TextInputLayout_android_textColorHint 0 +int styleable TextInputLayout_android_hint 1 +int styleable TextInputLayout_boxBackgroundColor 2 +int styleable TextInputLayout_boxBackgroundMode 3 +int styleable TextInputLayout_boxCollapsedPaddingTop 4 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 5 +int styleable TextInputLayout_boxCornerRadiusBottomStart 6 +int styleable TextInputLayout_boxCornerRadiusTopEnd 7 +int styleable TextInputLayout_boxCornerRadiusTopStart 8 +int styleable TextInputLayout_boxStrokeColor 9 +int styleable TextInputLayout_boxStrokeWidth 10 +int styleable TextInputLayout_counterEnabled 11 +int styleable TextInputLayout_counterMaxLength 12 +int styleable TextInputLayout_counterOverflowTextAppearance 13 +int styleable TextInputLayout_counterTextAppearance 14 +int styleable TextInputLayout_errorEnabled 15 +int styleable TextInputLayout_errorTextAppearance 16 +int styleable TextInputLayout_helperText 17 +int styleable TextInputLayout_helperTextEnabled 18 +int styleable TextInputLayout_helperTextTextAppearance 19 +int styleable TextInputLayout_hintAnimationEnabled 20 +int styleable TextInputLayout_hintEnabled 21 +int styleable TextInputLayout_hintTextAppearance 22 +int styleable TextInputLayout_passwordToggleContentDescription 23 +int styleable TextInputLayout_passwordToggleDrawable 24 +int styleable TextInputLayout_passwordToggleEnabled 25 +int styleable TextInputLayout_passwordToggleTint 26 +int styleable TextInputLayout_passwordToggleTintMode 27 +int[] styleable ThemeEnforcement { 0x01010034, 0x7f0300b6, 0x7f0300b7 } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f030051, 0x7f03007f, 0x7f030080, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f030123, 0x7f030124, 0x7f030128, 0x7f03012d, 0x7f03012e, 0x7f030140, 0x7f030173, 0x7f030174, 0x7f030175, 0x7f0301bb, 0x7f0301bd, 0x7f0301be, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_navigationContentDescription 14 +int styleable Toolbar_navigationIcon 15 +int styleable Toolbar_popupTheme 16 +int styleable Toolbar_subtitle 17 +int styleable Toolbar_subtitleTextAppearance 18 +int styleable Toolbar_subtitleTextColor 19 +int styleable Toolbar_title 20 +int styleable Toolbar_titleMargin 21 +int styleable Toolbar_titleMarginBottom 22 +int styleable Toolbar_titleMarginEnd 23 +int styleable Toolbar_titleMarginStart 24 +int styleable Toolbar_titleMarginTop 25 +int styleable Toolbar_titleMargins 26 +int styleable Toolbar_titleTextAppearance 27 +int styleable Toolbar_titleTextColor 28 +int[] styleable View { 0x01010000, 0x010100da, 0x7f030134, 0x7f030135, 0x7f0301b1 } +int styleable View_android_theme 0 +int styleable View_android_focusable 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f030034, 0x7f030035 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_layout 1 +int styleable ViewStubCompat_android_inflatedId 2 +int xml network_security_config 0x7f100000 diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/core/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/core/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..6f0bc0024f55d10c6eff71e9c6f8720e5bd9c381 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/core/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/lifecycle/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/lifecycle/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..28f07ebf9e882bf6d740c340767e67f4dd6c8106 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/lifecycle/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/lifecycle/livedata/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/lifecycle/livedata/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..317b5f40835501b10c5506f672abc11da98d5773 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/lifecycle/livedata/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/lifecycle/livedata/core/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/lifecycle/livedata/core/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..dd2d1d24186a91dc8f4e4317d4fbb5dbd05d9973 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/lifecycle/livedata/core/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/lifecycle/viewmodel/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/lifecycle/viewmodel/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..c6f5ee373e16423027954bd84df89d27441bcbc7 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/arch/lifecycle/viewmodel/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..116956db62ada9b830098e9b41800b787c8f51c8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..c7e382381e53eba5ca51d5e3bd36fed21700ea16 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..5a372c5325612f39af3fdeff45521ac222678cda Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..248787da8a3f1dc7e68847b893eb0f25cede42e1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..be2b376dde8fe7cfab5d3b10f015ba2b787f337d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..0df3535765de4a49e4b800a46a06a6a35dfed697 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..dbb90caa31f18e6da77e8ccdcdc8a6994e6341d9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..411e0d6eb3956540bfd234621f0a58b31de3fdbc Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..466aaa0f0e1c570ad1116de2a5b1016a85b05e16 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..d8c0f95f7278aaf4b92b3b9190faccce91481700 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..a3d3bce8ccb93fc822a36300e5759daadcb1dcd6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/asynclayoutinflater/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..43026827ddc3980c11aa91f0c9ced6027ccebbbb Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..d65f78c57e11bb878b51418a530bf8f68c2d417b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..0df9ab6796493673edba98e5c6a02e90ab3f5def Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..86769ecc17b56396e5100ed4b29ca0f528706486 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..2a847d5ca11303d049dfc130bf004faaf5914002 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..4607bba6b1b6f1d470b114526b24be6c005b5a33 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..fdc8c5c0cc472564d333a462194977d0693737fd Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..0d8d68315e4725332171959ffef4ee541f8b287e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..431bf2bf71453a100e6c256586755b99f93370ac Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..01347043aa910d90c2175dd201f313e44e46eefe Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..18bc393e400146994007d21837378a2d5b2a92c3 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/compat/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..f6c7840c3d208474e561db6df3afb8bcad26d4ae Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..d919b558316922b5611bdd4c54dff51e4bc4575e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..e8ad220c684c641936fc7029732c0f02ea0b1bf9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..64e83ce0c484c437abb3dfee719185d36e0c2ef9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..bf8f5c841ce579aba10c8a8780251cda17d0cfa2 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..f14c79b63bea1153395ed814905b3c7175d9ff8e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..6ae709764be18ff7a2eeaf138ba3e9c9e6adb3b1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..9ecd7a5462a1c7967ad58987f954e60c481856dd Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..a5ebea414642ee8a51aae67e209f8820dd4cdcf9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..37b64cb4a0a6902c9aaa193d9bd31ec71adbbbdf Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..d36cbb8cd7fe50c272c69cac8018feb1cfe512ea Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coordinatorlayout/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..e89cca1339182d25f920c5dc220d38b8b62a2e3f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..ab49fd48af680b91954bdfcea12a08cf6b1a54e1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..68360ee49344909e170eb721de6068cb1ac65b63 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..79a52a587d7b42f46d777b22daa3a70584225937 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..d0571ec04ff8656897a8c474b1ff6eefd9a89a42 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..41cf43ca279ffb38049ba1cb093b974f07e4e607 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..14bd6a51732717d5f8f3e91f9794f7b7370c1a47 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..0bfebc005b08b3e9419308b1749384631307589a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..f0542fff7d0b694b6373392a441d8f5b381b588e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..adc5ccd9a06d938359f0951cb3b8dec298d1b291 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..5a03de4453266b8d298dc06ab1e79285babf26cd Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreui/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..2bb43bfbdd5637e167b79454b18ad291ef9ffed8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..079e181c77f5467067b6411014bec560434615ef Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..5efa98afe8cc1a816b84ca0e7acbb7733d277321 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..314cdfdd1eae8d20c4e1db1fe0aff5618b40bac5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..9b201e517eaef339d92385ce6c63e639f45cc086 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..592a9458252ab9c2ea530f801dd6cd879123b520 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..77b089eeb6a00c62485b57817bba6acec126392d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..cfc7ae5377e11d2354ef45737a1ed5480dc68e38 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..d796a7cd4b593ac25a44a3635e4d7eec67ddf36e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..118c3c6469e3a60ec6389824146a0c4b6e5feff2 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..8a1660cb09b4367db0e302c5fe93c4fb20f40417 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/coreutils/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/cursoradapter/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/cursoradapter/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..6d5ace27e7396eac41aec147a176419bd69b6a75 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/cursoradapter/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..62e32279d6956bbb30147e8ecbafb98935176899 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..5cec935f83349168b572193c738909702d2def8d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..e27308b06dc7170bea5ac1ed09a32536ccdf1bf0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..f20911e659ca1b2c311dd9561b23d5654023539f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..4ca27073fb1369c1c304feafb33c51961919d58c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..ca541a832c50e7d8ad1dcadcdd008d56ed9f5912 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..1023670dbd400ae05d8a58be06d14d9c625f30b0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..65c547d9d40032f4176a16e303d53d01b6fc665f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..33f7db75cbff1cc88511231ffc71ca0c82499c21 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..9847eef2c5e16a14b10774b2377c334cb8c9f7ab Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..1d0b4d83ca15e60bc396c7ddd7c8460570fe5549 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/customview/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$anim.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$anim.dex new file mode 100644 index 0000000000000000000000000000000000000000..0724621ef7a787d74dc06c6ff33c9c65212d4e2a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$anim.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$animator.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$animator.dex new file mode 100644 index 0000000000000000000000000000000000000000..8e99d77a16088b13c969b372bc1690d5c5f3dbb4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$animator.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..8e8ba52b8a25604cfe7e8a30fd8c196a98a5fa23 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$bool.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$bool.dex new file mode 100644 index 0000000000000000000000000000000000000000..bd1512b9f347edc458d3a31b496366e686ba9c43 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$bool.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..176e5d7f69f6a6d1abad7660ec6da249857d40c5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..003df2d645c6fedd03415313c3151f7204f64112 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..4d1a561e681006eb16c4faf1f705128243043698 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..1f20ee6047e97bbbd0edf0a90b61b4665bdc6512 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..67057336e8d50389d0310b636f2a6b8bff288e1b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$interpolator.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$interpolator.dex new file mode 100644 index 0000000000000000000000000000000000000000..8122a6252d3519c26759ca4cc30c6e693a30f70e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$interpolator.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..9b2dac224d80e6a252eaf120b29000700668dd98 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..4cb91af98db6f015d182833bf168b9433b8c2737 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..f71d66e702b447c230b65a672dad10743c1e2d54 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..1168c2cd8afe8822b645cc0877e7d572e1004d2c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..5b879b828347f3ef9bb49d7ddd6a404b22498cfa Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/design/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/documentfile/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/documentfile/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..19c11da1b99fc7b7f30e6bf5c29881eb2743f935 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/documentfile/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..64de3644b001e9605e5c9cec2a9ec6c3c80627e1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..1405f20a87799c9bce9a2886df3c1767afe7e339 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..9da6e135d08c9f9aff495104c32c8118b58ca341 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..f55a7194b3fe147a50678ca9e824bcef2df40298 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..d1e274b31f67bbf66e8dd426e6e08777283e342a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..86d48f529803ad71d4433e238a19d4dd2980e9c8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..3cdb35643aac110529f72924cb3fadaced729f98 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..c70adccf4efb9cf7ee44cea59b1ef1d8b3ff0e86 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..134acc1c3e273907305c4b059d17d958d2f81766 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..ad6bb1acaca08eab42fe2e43bfaf32e6f2c0bbe9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..5d45ac054b1bb86501010b0585606c688d9290da Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/drawerlayout/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..9eb5dc4aecc5f6bd6f97253d20a40ec154388f3c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..a4b054e55571ecce05d1065e8f7649d8ffd9e973 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..9db4cb0169e8129c33d3a38dff71260ce0aefe28 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..80a526e7ed73b54111a55e672b11bf6fbb7a5f8d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..0004ebfa6487f0ca5bac2bd52f78cba2ca8027f5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..726c353c4e30f89ce0cf4b660ba6aa005774135b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..05369fdaf68827b78168d4049e886aaa7ca7bf6d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..425b16c39ddaa1bd79b00d2078f4f0b466e12c30 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..0414dd3faf2f2cf37c735cc2060351dce5ded4d4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..780f44d637b712e04f1ae5d96d9733ac9d8e1722 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..909be95c519a3713da36665e0c99cb69ca96bceb Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/fragment/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..41a1b369fec7e3156235d07f7cc7c652f57a8613 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..53468784d57ce7bc3f4c805e602881ca218e01b5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..f5a81ea58c8d715cd5963290e02a68c9fbe71889 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..cce07aadb350605975445d8636a181de7a116b13 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..304f8f9fddf8d0974c409094342a6c2e509feb98 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..ab4f5ea2bd8f37f7a4dac52f6ce8186adca97399 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..531786d087b47b650aad0c82fef3358233542e94 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..20fe6ff1d319a614907098f863545a0e569cb485 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..19261a944f4dd71e06a262498dc0ab714c94468d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..95f5adbac24eb9c2d7bda6140870121ce82cdc1b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..464822d4b08d8810f058f1ee824f8ef2d129ecc9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/graphics/drawable/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/interpolator/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/interpolator/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..794792d54d26b37045111d7c900b59dbfa27f7e1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/interpolator/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..cf8e44b712311d126c16b9059f3cc81e0b6fcd6c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..6ad489a71423207c48812aeccce2af662535a11d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..37809e9c8e44f3603c1a13b6f2323f1aed67e797 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..77ebc7eaa2f95c59ac568b2fa78006ebee983db0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..9e7aca69155dde71903db455ae24fa94bafb5dd6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..322be017314d4156a91a13ca1cefe0af3247764c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..105a2158ce54964f7701e86a36d6f0a98249740e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..2bb981cd892dc7a1e8a6038608226ab1422c0333 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..686a8eed6a431b7c0045aa3f47ef044123c029f2 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..f2fa8c6c33994860b9148f036ff2e27cae786881 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..d3eae5be39ca66b61277f4bc3faf07cb3dd3921a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/loader/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/localbroadcastmanager/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/localbroadcastmanager/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..62c81000edf5c17b83b8efd0093943e7c2ddb4e6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/localbroadcastmanager/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..40ad23a012370d7638d6da66e87f19b4101d0c11 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..88831ef69392f53b7d99f4aeebbefcda0632c024 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..b4467d6d9e54ed2d008b49c3cd284683652aad2a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..2196b483a3d6a370e1dfb7b546b5072b5a222cc5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..f0bb9a712a8884444b88b87d71617c0ac91626eb Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..2f0001adcb5a276636a812f3b580ffdf1a968e7c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..2b6079ed7c10e27ef251f4a3a097789dcc9c0177 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..af679ee5b06d171cf7dc344e1a470e96131a8559 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..c79aa2e590f80d7db2e5bbb5523cad976da9de9d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..4c2746abf83642f9806c16a28fec632f19b26967 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..3bd6b6c51ae41136469710f058a003723c01bfb1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/mediacompat/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/print/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/print/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..9d8e31fe6d8f0b00428c79e7514d58df80e83da6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/print/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..3b9f135076bdbac845dd1946d003a557e8d686cf Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..162d4fcb09f931738c40bfecec810b9d586a2b82 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..fb6c93c2a77a8e5c734e6ee1b0e067a284a376d4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..baf8c76adf92743c3eb293cf27fd307cd63da7c5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..c8a79caf709e30fe5b8a89838bc28605901d8c4d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..65ec4ee5f4ada79f35db92f9c2d8f0f2a10ed25f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..dd684b2df47b4b0b7bfc9f4fb78ff0af36dfa448 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..bf23ad4103ddbae1c26cae37b38f8121d18f1ac1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..07edf5ffa72dbe628e0c211f9cfe467ba280c756 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..e08d3f2a11c7a1db4424e3c6c621442285e98f7d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..bd54b3ccb96457439c7c98f50fac9cd96a5b14f4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/slidingpanelayout/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..37d47538ce7b625fc16090cab42b38e14a8f8f25 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..7bf3c8d4c356835d0bb47dc37b953a305583744b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..d3dfa69b0cbab8884bc700f481d57f1c7cdd5181 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..da3adc00fd9f2f57622b76c9dfce7b1a62ad4008 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..9dca6e416e7d677497b923d9211687b967282a77 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..b47c658f3d5c4e963d9f3b42025c06fecfae4e49 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..dde6a7d378113fc044cced1a756ecbf8c170ee41 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..e617a9fd0a9b0d1935da5a9d06f1e3280594301a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..b337ab451dcf218d93fbf7161b13e81a520badc8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..6b392dc0dd36c230c665c15ea865d84d82564c04 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..b69776ec9c94142f3cc691c6f4a7f0b0a0be52fe Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/swiperefreshlayout/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..913cf1bcbb6f91254aed09f2faa37ac1524d4d60 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..4717e234da14fc21d2590efb9ccaa21e26ba8da9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..79142515abaf73e3056e2b2d8f0262431233d3ca Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..7f799b877c6f5b5763ccfa50aaf125d9b095d422 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..e1500ecb3bd21b5a44e80e9cb9611d9162ac6cec Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..37c29f03a31ed0d527c186cedf1fb148df82e5d9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..a2915fb51075d44e0812b5aff999d7a6fc8d6b65 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..09f50fdf1d17bb33cefca741d20d3690d6975b8e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..20f8d6f1d9c6979503f664ee9941813c9ca47263 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..b6dc248081b58bf3f8946ab537608fc1b2249007 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..245f7bf59a5eb71085ffc2a3bd0f95dded015205 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/transition/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..3aa472a99b613543a5184873f3af101f6751f32e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..dc80cb4f1540f544e9dcb40b5ab590c8076c69e9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..1479a72261f34a53c788938ab1c81d4b7efc4752 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..e905cfc4a05d0faf86bdb91c6db7ff426ad4ac19 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..5cc0db7b7d9429a5bac24d9a3837ffbdc97cfdb3 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..d6f0e292cbebd0e0a4109f6c88454224fb985600 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..33a977f2124287574eaa6b935d25bd028b0d52d9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..c7fb6f6f5a876dee41034d81abd6dc95a38e0e96 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..67b7b82db193702b538c7d602d5b4c286d7333ff Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..af197db58dcacd625c8c0d06975a2784e00a5095 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..2c991de46c92029612655e03626786d5f933bcb8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v4/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$anim.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$anim.dex new file mode 100644 index 0000000000000000000000000000000000000000..05127ff65964beeb6f382635f95e888ae7423847 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$anim.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..ef3f1ed7cab882487922e41cb3ead7f619d74a67 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$bool.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$bool.dex new file mode 100644 index 0000000000000000000000000000000000000000..c778dc627a46a0f3bd53807ce7e9b7d42ae6836f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$bool.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..248b81266b267fd1333a070aa50a3e03a55cbd38 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..bc8c1a2aff3c7d2bdbc47aa0ad6131b178016b87 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..03123300c8bcf89fd8b0c344f036b3bb53dfb5ea Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..4a9dc3e9267b71375e82f3904786e5c528ad6171 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..7ff323318a49d9cbcb27deda20f918ca2f4ddf4b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..820d5f3365cdb4ea3a215452d1bebb73d3f62900 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..45ef8fc7c5e618a646d6a6cc4324f23be33f9fca Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..c70e8b08c20808d80ee3f383f00e57130d569ba7 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..6f28ab15487a3488e99efd84e390adfbc2b7cab3 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..74d58907b67a8faf65efd67dd6f4df6b777c0581 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/appcompat/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..f2b24edc938dca97da70206249a944c34ea2da19 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..73f3226133428b41a2f75338468440fa5918c69f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..38cb209e01570534793dff9c94fe6b82fcc96f8e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..23349093ad125ab2e972f66216bfa2eee3efb913 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..99b04c6c7c2a17e1c9fc0fdf7f87a36c37de1769 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..e3c838c47616b859a8b56ab3ada1be1bd9dc7ce3 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/cardview/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..659fefcfc292840323762e3d3d16adfaa824b3e7 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..56bbf3b60cb60adb9a86a1c6fb7844c026d95378 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..453929d54ad3861ebb86a3c9d598015ad93c8e6b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..34a96f9afcb89cbd1564d586d5183e73ab5bd65e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..f7a2879a307a4e8b879afc313dfb48b6cb4394bf Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..c02b4431b4a70b9f95b9ebf92b1a629e758de410 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..2ffe8dd55829b49f743393e89a8241fbfe784a5d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..1f2b263c7bec1d0acebd7e2d692767b2d8d41945 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..1f27df09aa3134fa73a129fdd633b47ac558e3f5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..b2993e665f0dab801968d6ec52a111e0b08ad35c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..2e81d464d466f0cf78a90a339ec4943bdcccb235 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/recyclerview/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..a7214b41b65cb96589fdf90e89110cbc3066b4b0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..0bf954cf4ff33bfde406b6dc9edb20752e1e70c9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..490b1d2d4fd819bc1888a2027180b199fb527ea2 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..fedb81768d16fa58e1e1dcae04f3a64124da83eb Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..0badde40e395e2f10f19e03742f8ca7a9e9caa7f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..35f49332885486937b92e2001600c041daaf966e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..ae5a30e3da76ccd0043ac32927629a42c7138911 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..8c6df6d9a402f10470885cfef432c6e2cea29594 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..f5cec019ae87bfd8d25e22b636ce90c3dc8136ee Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..3d3866353466d26ae7d0ab752f2b01b8e8b84edf Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..03b4e84562fa87d9441321c0df8ff1f75cf53d61 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/android/support/v7/viewpager/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/androidx/versionedparcelable/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/androidx/versionedparcelable/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..cc52d4917719b3fa83024a3a4fa72d4e5ea6959f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/androidx/versionedparcelable/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/App$RLAppLayout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/App$RLAppLayout.dex new file mode 100644 index 0000000000000000000000000000000000000000..ab35d4369349a55c8cca4438c28d46a847afd655 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/App$RLAppLayout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/App.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/App.dex new file mode 100644 index 0000000000000000000000000000000000000000..853994ca771bbc4beb19d35440af0a8f1f97dff8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/App.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/BuildConfig.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/BuildConfig.dex new file mode 100644 index 0000000000000000000000000000000000000000..d9c8ee284e60ce36a118de1796fc7f96d9526f80 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/BuildConfig.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/ChildInfo.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/ChildInfo.dex new file mode 100644 index 0000000000000000000000000000000000000000..e5fbab8602dc45df3fe19afe103c9309a1ae9aed Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/ChildInfo.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/Const.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/Const.dex new file mode 100644 index 0000000000000000000000000000000000000000..5d3707b87ca893dd8661e80f5bd1a87c4ea20759 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/Const.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/Controls$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/Controls$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..f7a094c5f92f66911090133b613ba709ace197d1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/Controls$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/Controls.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/Controls.dex new file mode 100644 index 0000000000000000000000000000000000000000..7f2e97d6bbf97c7fbad2e260b827f7c1bee25da4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/Controls.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/ExpandableListAdapter.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/ExpandableListAdapter.dex new file mode 100644 index 0000000000000000000000000000000000000000..5ab013fc7de8ac2e2d30a168e2a2e195c944d3e4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/ExpandableListAdapter.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/HeaderInfo.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/HeaderInfo.dex new file mode 100644 index 0000000000000000000000000000000000000000..7b06815fc693066879b9cbe87ec4815e642f119d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/HeaderInfo.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/LConst.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/LConst.dex new file mode 100644 index 0000000000000000000000000000000000000000..8b86cdda0d4f625667d70df0df1e2e41cba26ccd Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/LConst.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$anim.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$anim.dex new file mode 100644 index 0000000000000000000000000000000000000000..23f3d381f31257a35065b92590036797fa61272c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$anim.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$animator.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$animator.dex new file mode 100644 index 0000000000000000000000000000000000000000..1c02c8303526562832df281d6c856d7c9711a6ad Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$animator.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..aa58543644fd2ec526e8ac4f510a193b1583bb17 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$bool.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$bool.dex new file mode 100644 index 0000000000000000000000000000000000000000..24f7c1caf62fb275edd08b8f0f38df5c4aa2b811 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$bool.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..551635ebac917f13fd69380a889fdf7d92542266 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..cebec735f4beab430b1631fd56ad4a1cc08429f3 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..6b88bb2f4dbad9070ecf710e29fdfff4924f2913 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..6f851a9ae26480e3781ae12f14b3edd39e3ec387 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..a5760b1c995715ee86e1c19e2fcd80b532a69791 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$interpolator.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$interpolator.dex new file mode 100644 index 0000000000000000000000000000000000000000..483d5a74c0af772686fda1f5c989dbad650c4b6d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$interpolator.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..5d06f38e6d2671c01e0b008a5d0168411e42da34 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$raw.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$raw.dex new file mode 100644 index 0000000000000000000000000000000000000000..31a93e4006300f9a633ef08e3c5d166b3c887ea6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$raw.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..8a3e8448c5490118be6f5bcf21c12b345f891512 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..af37ab2770d36e3735a189185c78a18cb6066ce2 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..84d0d8349d76d930ad9bc792f8217688e5e3ba3e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$xml.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$xml.dex new file mode 100644 index 0000000000000000000000000000000000000000..1fdc5587497ac85ad5257c6634947c2e51afdf17 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R$xml.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..ebd4e5a26102f0fee56416584c6097d6162b7628 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jButton$1$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jButton$1$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..e97b6822cf39cfa1d359ea3480cbc723a89a89e6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jButton$1$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jButton$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jButton$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..a888adee1ee2223caa8d5db85f66a140965cdc18 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jButton$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jButton.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jButton.dex new file mode 100644 index 0000000000000000000000000000000000000000..779308afd7fa882dc7aa3410b18c5d9574e03738 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jButton.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jCheckBox$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jCheckBox$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..55a539918061ff070083825800dced767174866e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jCheckBox$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jCheckBox.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jCheckBox.dex new file mode 100644 index 0000000000000000000000000000000000000000..085e42f1b12f90e4e283ba186d89a4182679956d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jCheckBox.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jCommons.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jCommons.dex new file mode 100644 index 0000000000000000000000000000000000000000..77d8ac3edcea0e522a462472fc251a7c1f6b9208 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jCommons.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..4449bb31801f1186655eea7f16082ca292e6b49c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..4fd2503cd1da60a1b8a82a1decfcb9a4aead81db Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$3.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$3.dex new file mode 100644 index 0000000000000000000000000000000000000000..90f3de44ce0da26fb9bd85d557b55ebcda1d5d16 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$3.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$4.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$4.dex new file mode 100644 index 0000000000000000000000000000000000000000..5d0aff8a9cbaf12c683ffc36f5397a36e148d768 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$4.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$5.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$5.dex new file mode 100644 index 0000000000000000000000000000000000000000..8868acdc958ce743bd71b073efd3fd7364959761 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText$5.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText.dex new file mode 100644 index 0000000000000000000000000000000000000000..f749ec2cb241f5d9be1b8e1ca2b408adbfe4fa3c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jEditText.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jExpandableListView$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jExpandableListView$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..36a23ac96e1c6bdd4429682fac73e12de735b202 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jExpandableListView$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jExpandableListView$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jExpandableListView$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..137eca9dfa6d0d9830bb7a975ca47623afd55ba3 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jExpandableListView$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jExpandableListView$3.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jExpandableListView$3.dex new file mode 100644 index 0000000000000000000000000000000000000000..a188f0f8f735d04e3e4922737e7405acec3f535c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jExpandableListView$3.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jExpandableListView.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jExpandableListView.dex new file mode 100644 index 0000000000000000000000000000000000000000..e1fae945909765f4d86e321cf550af54f7f975d3 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jExpandableListView.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..9de1b18c337086c9432393d3be944c286ed9facd Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..8bec0bf270f420e75ea8b3dfbc761db0ddb055b3 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$3.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$3.dex new file mode 100644 index 0000000000000000000000000000000000000000..65402141edac0e898aaf8518e0e736e970a87fd4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$3.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$4.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$4.dex new file mode 100644 index 0000000000000000000000000000000000000000..75f4495eae68de709667cf82b5fd472cd40c632b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$4.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$5.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$5.dex new file mode 100644 index 0000000000000000000000000000000000000000..33778971d86819add3cc5dd5d7df5afe0708ab41 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$5.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$MyCountDownTimer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$MyCountDownTimer.dex new file mode 100644 index 0000000000000000000000000000000000000000..0303f7f47cd724005b1c21ba5a0cedbcec4a5b49 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm$MyCountDownTimer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm.dex new file mode 100644 index 0000000000000000000000000000000000000000..337209d5ac576ee591a5d25d053a617716c1e579 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jForm.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jHttpClient$AsyncHttpClientGet.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jHttpClient$AsyncHttpClientGet.dex new file mode 100644 index 0000000000000000000000000000000000000000..d463ab11361fb78076dcb09ae1203a1f19fa4148 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jHttpClient$AsyncHttpClientGet.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jHttpClient$AsyncHttpClientPostNameValueData.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jHttpClient$AsyncHttpClientPostNameValueData.dex new file mode 100644 index 0000000000000000000000000000000000000000..1c1f29e8b045cff8e2bd29aaa6464f1499f0f5a6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jHttpClient$AsyncHttpClientPostNameValueData.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jHttpClient$UploadTask.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jHttpClient$UploadTask.dex new file mode 100644 index 0000000000000000000000000000000000000000..0eb30fb5f319b521c4130ec335cd4fc3b459f638 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jHttpClient$UploadTask.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jHttpClient.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jHttpClient.dex new file mode 100644 index 0000000000000000000000000000000000000000..cf1b00001105f0ce94e3709843aca91bff9d181d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jHttpClient.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..25d7a538ae00d0b48c62b67b692057df40b77e51 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..6519c1548a9fe28fa80e4778c4cbb45e62571d48 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel$GestureListener.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel$GestureListener.dex new file mode 100644 index 0000000000000000000000000000000000000000..a005ce273d992a3118be96253e14f20351c4acc8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel$GestureListener.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel$simpleOnScaleGestureListener.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel$simpleOnScaleGestureListener.dex new file mode 100644 index 0000000000000000000000000000000000000000..6b9912e87629a8b8346aa8c74d05fd1e505b1dac Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel$simpleOnScaleGestureListener.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel.dex new file mode 100644 index 0000000000000000000000000000000000000000..361f6fd54a9ceb44b8c00cfa8e29d04dc0d20372 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPanel.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPreferences.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPreferences.dex new file mode 100644 index 0000000000000000000000000000000000000000..b7abb8cab3db44d1c2c4da5e4df1f04b75ca9a02 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jPreferences.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jSwitchButton$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jSwitchButton$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..acb69bc2558891d0c95590052f3023b6453aa652 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jSwitchButton$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jSwitchButton.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jSwitchButton.dex new file mode 100644 index 0000000000000000000000000000000000000000..4453c654fabea70622b942ff2dce10425f86be38 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jSwitchButton.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jTextView$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jTextView$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..114ea2f8ad6f0691549ea6681a27bbcc73a96322 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jTextView$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jTextView$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jTextView$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..d0ebdab328b8235c86b8d30539bd6f5e15531c0f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jTextView$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jTextView.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jTextView.dex new file mode 100644 index 0000000000000000000000000000000000000000..2bec3913e981544625f18350be31fa0cdd2976d6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jTextView.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsBottomNavigationView$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsBottomNavigationView$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..76d0bb28484289723fea522487a2d16f9815466b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsBottomNavigationView$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsBottomNavigationView.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsBottomNavigationView.dex new file mode 100644 index 0000000000000000000000000000000000000000..2da02c8fdb11ae337f7040eca5c909898afd620e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsBottomNavigationView.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsDrawerLayout$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsDrawerLayout$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..1a5bc406d3e62257aaf3bc5d9ace091015f6766f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsDrawerLayout$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsDrawerLayout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsDrawerLayout.dex new file mode 100644 index 0000000000000000000000000000000000000000..067c1930fd8d912f465d963c4995854fe65d95c6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsDrawerLayout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsFloatingButton$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsFloatingButton$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..d5c7c36e1fb431831cd38b61a55e37f3fbb96656 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsFloatingButton$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsFloatingButton$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsFloatingButton$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..b5f09a77b8540d4482a6b97cdb6c825300a16167 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsFloatingButton$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsFloatingButton.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsFloatingButton.dex new file mode 100644 index 0000000000000000000000000000000000000000..95f7e26ab75f93f3b4f989398a8e00be117c2867 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsFloatingButton.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsNavigationView$1$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsNavigationView$1$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..8484fc16ee0526fa98fd60c1b965fc69f97aeaed Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsNavigationView$1$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsNavigationView$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsNavigationView$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..e7a84681c1ba5e5eb704f801eb6fa7a5a33c06ae Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsNavigationView$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsNavigationView.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsNavigationView.dex new file mode 100644 index 0000000000000000000000000000000000000000..6e904bd0c7bf75ca14adac0468c3e04808f54b8a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsNavigationView.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsToolbar$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsToolbar$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..c4168b2bd62273b3ef2d3a6449bdf7a0377f16bd Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsToolbar$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsToolbar$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsToolbar$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..6ebe45c1beeb6e8582aa4237ffd5cabcf0577488 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsToolbar$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsToolbar.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsToolbar.dex new file mode 100644 index 0000000000000000000000000000000000000000..26ac0aba5691353dbcb9b9593bf06ee136afa2c4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/0/org/muctec/smartfritz/jsToolbar.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/debug/__content__.json b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/__content__.json new file mode 100644 index 0000000000000000000000000000000000000000..1ee738c1a567f34894dd512c86c4c08f09820f19 --- /dev/null +++ b/SmartFritz/build/intermediates/transforms/dexBuilder/debug/__content__.json @@ -0,0 +1 @@ +[{"name":"/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes","index":0,"scopes":["PROJECT"],"types":["DEX_ARCHIVE"],"format":"DIRECTORY","present":true}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/core/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/core/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..6f0bc0024f55d10c6eff71e9c6f8720e5bd9c381 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/core/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/lifecycle/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/lifecycle/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..28f07ebf9e882bf6d740c340767e67f4dd6c8106 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/lifecycle/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/lifecycle/livedata/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/lifecycle/livedata/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..317b5f40835501b10c5506f672abc11da98d5773 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/lifecycle/livedata/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/lifecycle/livedata/core/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/lifecycle/livedata/core/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..dd2d1d24186a91dc8f4e4317d4fbb5dbd05d9973 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/lifecycle/livedata/core/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/lifecycle/viewmodel/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/lifecycle/viewmodel/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..c6f5ee373e16423027954bd84df89d27441bcbc7 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/arch/lifecycle/viewmodel/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..116956db62ada9b830098e9b41800b787c8f51c8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..c7e382381e53eba5ca51d5e3bd36fed21700ea16 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..5a372c5325612f39af3fdeff45521ac222678cda Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..248787da8a3f1dc7e68847b893eb0f25cede42e1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..be2b376dde8fe7cfab5d3b10f015ba2b787f337d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..0df3535765de4a49e4b800a46a06a6a35dfed697 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..dbb90caa31f18e6da77e8ccdcdc8a6994e6341d9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..411e0d6eb3956540bfd234621f0a58b31de3fdbc Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..466aaa0f0e1c570ad1116de2a5b1016a85b05e16 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..222ec88a0685db92f62a51a481ac0d09be7987c2 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..a3d3bce8ccb93fc822a36300e5759daadcb1dcd6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/asynclayoutinflater/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..43026827ddc3980c11aa91f0c9ced6027ccebbbb Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..d65f78c57e11bb878b51418a530bf8f68c2d417b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..0df9ab6796493673edba98e5c6a02e90ab3f5def Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..86769ecc17b56396e5100ed4b29ca0f528706486 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..2a847d5ca11303d049dfc130bf004faaf5914002 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..4607bba6b1b6f1d470b114526b24be6c005b5a33 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..fdc8c5c0cc472564d333a462194977d0693737fd Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..0d8d68315e4725332171959ffef4ee541f8b287e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..431bf2bf71453a100e6c256586755b99f93370ac Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..bf39185c8b5c7c59aaa3ce16a26ad48fed63c6d7 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..18bc393e400146994007d21837378a2d5b2a92c3 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/compat/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..f6c7840c3d208474e561db6df3afb8bcad26d4ae Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..d919b558316922b5611bdd4c54dff51e4bc4575e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..e8ad220c684c641936fc7029732c0f02ea0b1bf9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..64e83ce0c484c437abb3dfee719185d36e0c2ef9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..bf8f5c841ce579aba10c8a8780251cda17d0cfa2 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..f14c79b63bea1153395ed814905b3c7175d9ff8e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..6ae709764be18ff7a2eeaf138ba3e9c9e6adb3b1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..9ecd7a5462a1c7967ad58987f954e60c481856dd Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..a5ebea414642ee8a51aae67e209f8820dd4cdcf9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..8f9f5292d23f53bf8f62211312ceb3c1f368f7ea Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..d36cbb8cd7fe50c272c69cac8018feb1cfe512ea Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coordinatorlayout/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..e89cca1339182d25f920c5dc220d38b8b62a2e3f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..ab49fd48af680b91954bdfcea12a08cf6b1a54e1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..68360ee49344909e170eb721de6068cb1ac65b63 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..79a52a587d7b42f46d777b22daa3a70584225937 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..d0571ec04ff8656897a8c474b1ff6eefd9a89a42 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..41cf43ca279ffb38049ba1cb093b974f07e4e607 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..14bd6a51732717d5f8f3e91f9794f7b7370c1a47 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..0bfebc005b08b3e9419308b1749384631307589a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..f0542fff7d0b694b6373392a441d8f5b381b588e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..965b7d44b3af1401cfcddd0cefe48a1974fdaf25 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..5a03de4453266b8d298dc06ab1e79285babf26cd Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreui/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..2bb43bfbdd5637e167b79454b18ad291ef9ffed8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..079e181c77f5467067b6411014bec560434615ef Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..5efa98afe8cc1a816b84ca0e7acbb7733d277321 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..314cdfdd1eae8d20c4e1db1fe0aff5618b40bac5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..9b201e517eaef339d92385ce6c63e639f45cc086 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..592a9458252ab9c2ea530f801dd6cd879123b520 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..77b089eeb6a00c62485b57817bba6acec126392d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..cfc7ae5377e11d2354ef45737a1ed5480dc68e38 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..d796a7cd4b593ac25a44a3635e4d7eec67ddf36e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..066c4d41480612634c82f89c0ea560c580e6a661 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..8a1660cb09b4367db0e302c5fe93c4fb20f40417 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/coreutils/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/cursoradapter/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/cursoradapter/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..6d5ace27e7396eac41aec147a176419bd69b6a75 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/cursoradapter/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..62e32279d6956bbb30147e8ecbafb98935176899 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..5cec935f83349168b572193c738909702d2def8d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..e27308b06dc7170bea5ac1ed09a32536ccdf1bf0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..f20911e659ca1b2c311dd9561b23d5654023539f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..4ca27073fb1369c1c304feafb33c51961919d58c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..ca541a832c50e7d8ad1dcadcdd008d56ed9f5912 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..1023670dbd400ae05d8a58be06d14d9c625f30b0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..65c547d9d40032f4176a16e303d53d01b6fc665f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..33f7db75cbff1cc88511231ffc71ca0c82499c21 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..c5510e1463e70eec5faa053f6a783acf917cdc43 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..1d0b4d83ca15e60bc396c7ddd7c8460570fe5549 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/customview/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$anim.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$anim.dex new file mode 100644 index 0000000000000000000000000000000000000000..0724621ef7a787d74dc06c6ff33c9c65212d4e2a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$anim.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$animator.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$animator.dex new file mode 100644 index 0000000000000000000000000000000000000000..8e99d77a16088b13c969b372bc1690d5c5f3dbb4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$animator.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..8e8ba52b8a25604cfe7e8a30fd8c196a98a5fa23 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$bool.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$bool.dex new file mode 100644 index 0000000000000000000000000000000000000000..bd1512b9f347edc458d3a31b496366e686ba9c43 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$bool.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..176e5d7f69f6a6d1abad7660ec6da249857d40c5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..003df2d645c6fedd03415313c3151f7204f64112 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..4d1a561e681006eb16c4faf1f705128243043698 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..1f20ee6047e97bbbd0edf0a90b61b4665bdc6512 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..67057336e8d50389d0310b636f2a6b8bff288e1b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$interpolator.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$interpolator.dex new file mode 100644 index 0000000000000000000000000000000000000000..8122a6252d3519c26759ca4cc30c6e693a30f70e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$interpolator.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..9b2dac224d80e6a252eaf120b29000700668dd98 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..4cb91af98db6f015d182833bf168b9433b8c2737 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..f71d66e702b447c230b65a672dad10743c1e2d54 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..b0fb47962b37757e6cd9089e9add69f93121333b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..5b879b828347f3ef9bb49d7ddd6a404b22498cfa Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/design/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/documentfile/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/documentfile/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..19c11da1b99fc7b7f30e6bf5c29881eb2743f935 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/documentfile/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..64de3644b001e9605e5c9cec2a9ec6c3c80627e1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..1405f20a87799c9bce9a2886df3c1767afe7e339 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..9da6e135d08c9f9aff495104c32c8118b58ca341 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..f55a7194b3fe147a50678ca9e824bcef2df40298 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..d1e274b31f67bbf66e8dd426e6e08777283e342a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..86d48f529803ad71d4433e238a19d4dd2980e9c8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..3cdb35643aac110529f72924cb3fadaced729f98 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..c70adccf4efb9cf7ee44cea59b1ef1d8b3ff0e86 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..134acc1c3e273907305c4b059d17d958d2f81766 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..9ba907e94a32c5c0171e11be52dcc900b3071890 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..5d45ac054b1bb86501010b0585606c688d9290da Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/drawerlayout/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..9eb5dc4aecc5f6bd6f97253d20a40ec154388f3c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..a4b054e55571ecce05d1065e8f7649d8ffd9e973 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..9db4cb0169e8129c33d3a38dff71260ce0aefe28 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..80a526e7ed73b54111a55e672b11bf6fbb7a5f8d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..0004ebfa6487f0ca5bac2bd52f78cba2ca8027f5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..726c353c4e30f89ce0cf4b660ba6aa005774135b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..05369fdaf68827b78168d4049e886aaa7ca7bf6d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..425b16c39ddaa1bd79b00d2078f4f0b466e12c30 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..0414dd3faf2f2cf37c735cc2060351dce5ded4d4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..0427a52768158d2b6a770e3d71a32c6709f6ec0e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..909be95c519a3713da36665e0c99cb69ca96bceb Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/fragment/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..41a1b369fec7e3156235d07f7cc7c652f57a8613 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..53468784d57ce7bc3f4c805e602881ca218e01b5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..f5a81ea58c8d715cd5963290e02a68c9fbe71889 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..cce07aadb350605975445d8636a181de7a116b13 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..304f8f9fddf8d0974c409094342a6c2e509feb98 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..ab4f5ea2bd8f37f7a4dac52f6ce8186adca97399 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..531786d087b47b650aad0c82fef3358233542e94 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..20fe6ff1d319a614907098f863545a0e569cb485 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..19261a944f4dd71e06a262498dc0ab714c94468d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..ba6ca491082a349cc1dea36db88bed5ba38e338b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..464822d4b08d8810f058f1ee824f8ef2d129ecc9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/graphics/drawable/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/interpolator/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/interpolator/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..794792d54d26b37045111d7c900b59dbfa27f7e1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/interpolator/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..cf8e44b712311d126c16b9059f3cc81e0b6fcd6c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..6ad489a71423207c48812aeccce2af662535a11d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..37809e9c8e44f3603c1a13b6f2323f1aed67e797 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..77ebc7eaa2f95c59ac568b2fa78006ebee983db0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..9e7aca69155dde71903db455ae24fa94bafb5dd6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..322be017314d4156a91a13ca1cefe0af3247764c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..105a2158ce54964f7701e86a36d6f0a98249740e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..2bb981cd892dc7a1e8a6038608226ab1422c0333 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..686a8eed6a431b7c0045aa3f47ef044123c029f2 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..7be7a5af4cd8c17443ceb4c8921b812116630014 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..d3eae5be39ca66b61277f4bc3faf07cb3dd3921a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/loader/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/localbroadcastmanager/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/localbroadcastmanager/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..62c81000edf5c17b83b8efd0093943e7c2ddb4e6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/localbroadcastmanager/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..40ad23a012370d7638d6da66e87f19b4101d0c11 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..88831ef69392f53b7d99f4aeebbefcda0632c024 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..b4467d6d9e54ed2d008b49c3cd284683652aad2a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..2196b483a3d6a370e1dfb7b546b5072b5a222cc5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..f0bb9a712a8884444b88b87d71617c0ac91626eb Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..2f0001adcb5a276636a812f3b580ffdf1a968e7c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..2b6079ed7c10e27ef251f4a3a097789dcc9c0177 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..af679ee5b06d171cf7dc344e1a470e96131a8559 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..c79aa2e590f80d7db2e5bbb5523cad976da9de9d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..e3fe302857279b6efa2566225236425d17e98a47 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..3bd6b6c51ae41136469710f058a003723c01bfb1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/mediacompat/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/print/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/print/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..9d8e31fe6d8f0b00428c79e7514d58df80e83da6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/print/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..3b9f135076bdbac845dd1946d003a557e8d686cf Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..162d4fcb09f931738c40bfecec810b9d586a2b82 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..fb6c93c2a77a8e5c734e6ee1b0e067a284a376d4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..baf8c76adf92743c3eb293cf27fd307cd63da7c5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..c8a79caf709e30fe5b8a89838bc28605901d8c4d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..65ec4ee5f4ada79f35db92f9c2d8f0f2a10ed25f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..dd684b2df47b4b0b7bfc9f4fb78ff0af36dfa448 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..bf23ad4103ddbae1c26cae37b38f8121d18f1ac1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..07edf5ffa72dbe628e0c211f9cfe467ba280c756 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..88c532ffd83486c4e63949259763eae2d409f975 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..bd54b3ccb96457439c7c98f50fac9cd96a5b14f4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/slidingpanelayout/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..37d47538ce7b625fc16090cab42b38e14a8f8f25 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..7bf3c8d4c356835d0bb47dc37b953a305583744b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..d3dfa69b0cbab8884bc700f481d57f1c7cdd5181 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..da3adc00fd9f2f57622b76c9dfce7b1a62ad4008 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..9dca6e416e7d677497b923d9211687b967282a77 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..b47c658f3d5c4e963d9f3b42025c06fecfae4e49 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..dde6a7d378113fc044cced1a756ecbf8c170ee41 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..e617a9fd0a9b0d1935da5a9d06f1e3280594301a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..b337ab451dcf218d93fbf7161b13e81a520badc8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..b2a455e62a6f1ac5bdda069d5057c7246bc8ed49 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..b69776ec9c94142f3cc691c6f4a7f0b0a0be52fe Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/swiperefreshlayout/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..913cf1bcbb6f91254aed09f2faa37ac1524d4d60 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..4717e234da14fc21d2590efb9ccaa21e26ba8da9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..79142515abaf73e3056e2b2d8f0262431233d3ca Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..7f799b877c6f5b5763ccfa50aaf125d9b095d422 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..e1500ecb3bd21b5a44e80e9cb9611d9162ac6cec Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..37c29f03a31ed0d527c186cedf1fb148df82e5d9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..a2915fb51075d44e0812b5aff999d7a6fc8d6b65 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..09f50fdf1d17bb33cefca741d20d3690d6975b8e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..20f8d6f1d9c6979503f664ee9941813c9ca47263 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..1776a1ca6b0a138b2012850ae6d6b4c5113108c1 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..245f7bf59a5eb71085ffc2a3bd0f95dded015205 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/transition/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..3aa472a99b613543a5184873f3af101f6751f32e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..dc80cb4f1540f544e9dcb40b5ab590c8076c69e9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..1479a72261f34a53c788938ab1c81d4b7efc4752 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..e905cfc4a05d0faf86bdb91c6db7ff426ad4ac19 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..5cc0db7b7d9429a5bac24d9a3837ffbdc97cfdb3 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..d6f0e292cbebd0e0a4109f6c88454224fb985600 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..33a977f2124287574eaa6b935d25bd028b0d52d9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..c7fb6f6f5a876dee41034d81abd6dc95a38e0e96 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..67b7b82db193702b538c7d602d5b4c286d7333ff Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..f0e0bafc2a68c096ce943411337df71569376201 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..2c991de46c92029612655e03626786d5f933bcb8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v4/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$anim.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$anim.dex new file mode 100644 index 0000000000000000000000000000000000000000..05127ff65964beeb6f382635f95e888ae7423847 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$anim.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..ef3f1ed7cab882487922e41cb3ead7f619d74a67 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$bool.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$bool.dex new file mode 100644 index 0000000000000000000000000000000000000000..c778dc627a46a0f3bd53807ce7e9b7d42ae6836f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$bool.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..248b81266b267fd1333a070aa50a3e03a55cbd38 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..bc8c1a2aff3c7d2bdbc47aa0ad6131b178016b87 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..03123300c8bcf89fd8b0c344f036b3bb53dfb5ea Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..4a9dc3e9267b71375e82f3904786e5c528ad6171 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..7ff323318a49d9cbcb27deda20f918ca2f4ddf4b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..820d5f3365cdb4ea3a215452d1bebb73d3f62900 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..45ef8fc7c5e618a646d6a6cc4324f23be33f9fca Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..c70e8b08c20808d80ee3f383f00e57130d569ba7 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..764cd5a718aa3a13a149db62337f27c0eb052c2f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..74d58907b67a8faf65efd67dd6f4df6b777c0581 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/appcompat/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..f2b24edc938dca97da70206249a944c34ea2da19 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..73f3226133428b41a2f75338468440fa5918c69f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..38cb209e01570534793dff9c94fe6b82fcc96f8e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..23349093ad125ab2e972f66216bfa2eee3efb913 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..080e544de534818ac2de9cba104792ef7f7d0c7c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..e3c838c47616b859a8b56ab3ada1be1bd9dc7ce3 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/cardview/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..659fefcfc292840323762e3d3d16adfaa824b3e7 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..56bbf3b60cb60adb9a86a1c6fb7844c026d95378 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..453929d54ad3861ebb86a3c9d598015ad93c8e6b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..34a96f9afcb89cbd1564d586d5183e73ab5bd65e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..f7a2879a307a4e8b879afc313dfb48b6cb4394bf Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..c02b4431b4a70b9f95b9ebf92b1a629e758de410 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..2ffe8dd55829b49f743393e89a8241fbfe784a5d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..1f2b263c7bec1d0acebd7e2d692767b2d8d41945 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..1f27df09aa3134fa73a129fdd633b47ac558e3f5 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..2e28f5776c18f76e6c4c3ebb24806d8bb87f68f7 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..2e81d464d466f0cf78a90a339ec4943bdcccb235 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/recyclerview/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..a7214b41b65cb96589fdf90e89110cbc3066b4b0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..0bf954cf4ff33bfde406b6dc9edb20752e1e70c9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..490b1d2d4fd819bc1888a2027180b199fb527ea2 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..fedb81768d16fa58e1e1dcae04f3a64124da83eb Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..0badde40e395e2f10f19e03742f8ca7a9e9caa7f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..35f49332885486937b92e2001600c041daaf966e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..ae5a30e3da76ccd0043ac32927629a42c7138911 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..8c6df6d9a402f10470885cfef432c6e2cea29594 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..f5cec019ae87bfd8d25e22b636ce90c3dc8136ee Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..6009a9cc0a259fa966656405d10c741fe2647338 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..03b4e84562fa87d9441321c0df8ff1f75cf53d61 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/android/support/v7/viewpager/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/androidx/versionedparcelable/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/androidx/versionedparcelable/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..cc52d4917719b3fa83024a3a4fa72d4e5ea6959f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/androidx/versionedparcelable/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/App$RLAppLayout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/App$RLAppLayout.dex new file mode 100644 index 0000000000000000000000000000000000000000..84692df072af5f879e12dfa0f48a9deb243b73bd Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/App$RLAppLayout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/App.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/App.dex new file mode 100644 index 0000000000000000000000000000000000000000..6933b23b7e7fdbe7f00c39472eb8aa5dbf7f255e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/App.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/BuildConfig.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/BuildConfig.dex new file mode 100644 index 0000000000000000000000000000000000000000..1515c77c8110340a0d2034b54196b9b7f7c7e4a8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/BuildConfig.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/ChildInfo.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/ChildInfo.dex new file mode 100644 index 0000000000000000000000000000000000000000..e5fbab8602dc45df3fe19afe103c9309a1ae9aed Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/ChildInfo.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/Const.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/Const.dex new file mode 100644 index 0000000000000000000000000000000000000000..5d3707b87ca893dd8661e80f5bd1a87c4ea20759 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/Const.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/Controls$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/Controls$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..b99e0ba5026b903477e7494d93ba1acf67224016 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/Controls$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/Controls.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/Controls.dex new file mode 100644 index 0000000000000000000000000000000000000000..3b6ec553f3872f2647b67622d8ffaa5f84196302 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/Controls.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/ExpandableListAdapter.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/ExpandableListAdapter.dex new file mode 100644 index 0000000000000000000000000000000000000000..ace1bdfd2275ff0b982dacc8352dee4817ea5a96 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/ExpandableListAdapter.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/HeaderInfo.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/HeaderInfo.dex new file mode 100644 index 0000000000000000000000000000000000000000..7b06815fc693066879b9cbe87ec4815e642f119d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/HeaderInfo.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/LConst.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/LConst.dex new file mode 100644 index 0000000000000000000000000000000000000000..8b86cdda0d4f625667d70df0df1e2e41cba26ccd Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/LConst.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$anim.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$anim.dex new file mode 100644 index 0000000000000000000000000000000000000000..23f3d381f31257a35065b92590036797fa61272c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$anim.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$animator.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$animator.dex new file mode 100644 index 0000000000000000000000000000000000000000..1c02c8303526562832df281d6c856d7c9711a6ad Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$animator.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$attr.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$attr.dex new file mode 100644 index 0000000000000000000000000000000000000000..aa58543644fd2ec526e8ac4f510a193b1583bb17 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$attr.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$bool.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$bool.dex new file mode 100644 index 0000000000000000000000000000000000000000..24f7c1caf62fb275edd08b8f0f38df5c4aa2b811 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$bool.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$color.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$color.dex new file mode 100644 index 0000000000000000000000000000000000000000..551635ebac917f13fd69380a889fdf7d92542266 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$color.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$dimen.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$dimen.dex new file mode 100644 index 0000000000000000000000000000000000000000..cebec735f4beab430b1631fd56ad4a1cc08429f3 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$dimen.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$drawable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$drawable.dex new file mode 100644 index 0000000000000000000000000000000000000000..6b88bb2f4dbad9070ecf710e29fdfff4924f2913 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$drawable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$id.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$id.dex new file mode 100644 index 0000000000000000000000000000000000000000..6f851a9ae26480e3781ae12f14b3edd39e3ec387 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$id.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$integer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$integer.dex new file mode 100644 index 0000000000000000000000000000000000000000..a5760b1c995715ee86e1c19e2fcd80b532a69791 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$integer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$interpolator.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$interpolator.dex new file mode 100644 index 0000000000000000000000000000000000000000..483d5a74c0af772686fda1f5c989dbad650c4b6d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$interpolator.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$layout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$layout.dex new file mode 100644 index 0000000000000000000000000000000000000000..5d06f38e6d2671c01e0b008a5d0168411e42da34 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$layout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$raw.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$raw.dex new file mode 100644 index 0000000000000000000000000000000000000000..31a93e4006300f9a633ef08e3c5d166b3c887ea6 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$raw.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$string.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$string.dex new file mode 100644 index 0000000000000000000000000000000000000000..8a3e8448c5490118be6f5bcf21c12b345f891512 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$string.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$style.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$style.dex new file mode 100644 index 0000000000000000000000000000000000000000..af37ab2770d36e3735a189185c78a18cb6066ce2 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$style.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$styleable.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$styleable.dex new file mode 100644 index 0000000000000000000000000000000000000000..149256bbe869c684368b3730a462e3a8fe8bf9ab Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$styleable.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$xml.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$xml.dex new file mode 100644 index 0000000000000000000000000000000000000000..1fdc5587497ac85ad5257c6634947c2e51afdf17 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R$xml.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R.dex new file mode 100644 index 0000000000000000000000000000000000000000..ebd4e5a26102f0fee56416584c6097d6162b7628 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/R.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jButton$1$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jButton$1$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..ba1ee99dccb7ad89fb71905cf87c0e0ed763bc78 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jButton$1$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jButton$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jButton$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..8ca1e8277b09962f2ba63028a97a8979c0a14024 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jButton$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jButton.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jButton.dex new file mode 100644 index 0000000000000000000000000000000000000000..477730ed8804734458dedbb905db53d2575a9d58 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jButton.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jCheckBox$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jCheckBox$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..bbfab7c79a62922d11cd2fa009e3545ae720fa84 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jCheckBox$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jCheckBox.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jCheckBox.dex new file mode 100644 index 0000000000000000000000000000000000000000..88baeec2ec81908a857caf85eb815ca44dbd9672 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jCheckBox.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jCommons.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jCommons.dex new file mode 100644 index 0000000000000000000000000000000000000000..a5fb07b22916cb1be86d12e7c4a941fe6c9b778b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jCommons.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..0bb66df08b1b3d2510a77dc30f2a3c9aff3457ad Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..ea42028682ea7f37321f2aa2befa1ddd90f6fd7d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$3.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$3.dex new file mode 100644 index 0000000000000000000000000000000000000000..5a3435b14d89d3df571df27b3325a6ab341b16f0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$3.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$4.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$4.dex new file mode 100644 index 0000000000000000000000000000000000000000..3f03f34b6209084400984961420bf8a8687437f9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$4.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$5.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$5.dex new file mode 100644 index 0000000000000000000000000000000000000000..83f46f0196bf1cf55266bb7df952f94ee0a28862 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText$5.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText.dex new file mode 100644 index 0000000000000000000000000000000000000000..c0ba369dee598fe52dcd65b3e90da7d53fe89228 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jEditText.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jExpandableListView$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jExpandableListView$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..3b9bd4ce96f36ee3b90bb20226cf69b7213b97a8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jExpandableListView$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jExpandableListView$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jExpandableListView$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..d9cecad389b0005cee981f57c2a05ee5d9686ad3 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jExpandableListView$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jExpandableListView$3.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jExpandableListView$3.dex new file mode 100644 index 0000000000000000000000000000000000000000..a9eea87c8b0a60bb3b1fe3cfea125630f4427c41 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jExpandableListView$3.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jExpandableListView.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jExpandableListView.dex new file mode 100644 index 0000000000000000000000000000000000000000..8e031d719ae7e13d66d500ed2815f93c0aa48dbb Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jExpandableListView.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..826ba536ac14f8140f9928ae7d1c698d9ba09d8b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..cc4e51da64aa9b6206692246dfa0cc77a5606b3a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$3.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$3.dex new file mode 100644 index 0000000000000000000000000000000000000000..f6bbb4df5c892c3a03acd87a24020c1baf9a3dc4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$3.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$4.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$4.dex new file mode 100644 index 0000000000000000000000000000000000000000..dc50a61ae0f994c83f4dd6d1a3f0938d6e5ea42d Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$4.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$5.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$5.dex new file mode 100644 index 0000000000000000000000000000000000000000..744ac88a5e11193b690c6cbf9bd02689380a1d4c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$5.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$MyCountDownTimer.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$MyCountDownTimer.dex new file mode 100644 index 0000000000000000000000000000000000000000..b55001c6a6110e040a9c2e0bac03cb20b5fb47b4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm$MyCountDownTimer.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm.dex new file mode 100644 index 0000000000000000000000000000000000000000..a38e1ff62a10a7a086b8685fc2e71acf6366f769 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jForm.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jHttpClient$AsyncHttpClientGet.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jHttpClient$AsyncHttpClientGet.dex new file mode 100644 index 0000000000000000000000000000000000000000..6902a4c755f0e337cf32f678f8201d92826c524a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jHttpClient$AsyncHttpClientGet.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jHttpClient$AsyncHttpClientPostNameValueData.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jHttpClient$AsyncHttpClientPostNameValueData.dex new file mode 100644 index 0000000000000000000000000000000000000000..0a3d1eceb78a642d67b8bd4a5511d1cbd5b20681 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jHttpClient$AsyncHttpClientPostNameValueData.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jHttpClient$UploadTask.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jHttpClient$UploadTask.dex new file mode 100644 index 0000000000000000000000000000000000000000..fc88a0dfbdcc13678f9f048102453e8eb7ded83a Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jHttpClient$UploadTask.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jHttpClient.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jHttpClient.dex new file mode 100644 index 0000000000000000000000000000000000000000..550c607c9b3407f5aff057eec9ad8fafe759c8dc Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jHttpClient.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..21c606c395b9a3597b73395b6578468028793533 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..558580ff3096f672263e1a19a0338723c9282134 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel$GestureListener.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel$GestureListener.dex new file mode 100644 index 0000000000000000000000000000000000000000..70ef203198624a077887c01f07bf8fa35c365f89 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel$GestureListener.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel$simpleOnScaleGestureListener.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel$simpleOnScaleGestureListener.dex new file mode 100644 index 0000000000000000000000000000000000000000..a81c8aac82a08fc897f798d827aa1bf0d1c65dc0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel$simpleOnScaleGestureListener.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel.dex new file mode 100644 index 0000000000000000000000000000000000000000..f6369ccb144e077c45450ee4385703a1e995fca8 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPanel.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPreferences.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPreferences.dex new file mode 100644 index 0000000000000000000000000000000000000000..f6ceea73fdbe4b3b65353bba7c5a97c16500bd20 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jPreferences.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jSwitchButton$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jSwitchButton$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..9da2479f0f663c9e95eeb4aaa0a372d96384b29b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jSwitchButton$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jSwitchButton.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jSwitchButton.dex new file mode 100644 index 0000000000000000000000000000000000000000..d774b648598e76125ebd4d8e90bcb5ba74c6a078 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jSwitchButton.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jTextView$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jTextView$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..ef3cb57f22d612d506e579eba4c34f4b7865cf1c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jTextView$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jTextView$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jTextView$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..ec3dc4c0c84727c58273d5a92fbcd7aa13f4c761 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jTextView$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jTextView.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jTextView.dex new file mode 100644 index 0000000000000000000000000000000000000000..5ed50d4b830d1df1600fbb87ec87f0e9a7ca9b3b Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jTextView.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsBottomNavigationView$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsBottomNavigationView$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..f579456097e99be948f2b3f60d979e293355c435 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsBottomNavigationView$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsBottomNavigationView.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsBottomNavigationView.dex new file mode 100644 index 0000000000000000000000000000000000000000..d2f21681a1ddbecf3fc52d7789a232466ccf891e Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsBottomNavigationView.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsDrawerLayout$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsDrawerLayout$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..8eefa62a2a8853d782f79a3cc583d2bc3a099d97 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsDrawerLayout$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsDrawerLayout.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsDrawerLayout.dex new file mode 100644 index 0000000000000000000000000000000000000000..c9b192dd03f5022a7967d02ee8f42ea7cd26c916 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsDrawerLayout.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsFloatingButton$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsFloatingButton$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..bcf3e634b87457d37d4229d0340026a7276f5b45 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsFloatingButton$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsFloatingButton$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsFloatingButton$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..d517c965159de5cac1d9e7de4b3e6374521d6cf4 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsFloatingButton$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsFloatingButton.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsFloatingButton.dex new file mode 100644 index 0000000000000000000000000000000000000000..dc55361935e02a4b535ce1dee60c9571eee7529f Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsFloatingButton.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsNavigationView$1$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsNavigationView$1$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..05dcc719849d62bd461793b1dfa5f63454672804 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsNavigationView$1$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsNavigationView$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsNavigationView$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..464b25535df2dfb5e4e8b3ede1c77ff885f480cc Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsNavigationView$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsNavigationView.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsNavigationView.dex new file mode 100644 index 0000000000000000000000000000000000000000..d51247241954bf3bf2fb870a53c16616bb9bae2c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsNavigationView.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsToolbar$1.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsToolbar$1.dex new file mode 100644 index 0000000000000000000000000000000000000000..c16cb3116a1b1adc15791089523624e2803566ba Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsToolbar$1.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsToolbar$2.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsToolbar$2.dex new file mode 100644 index 0000000000000000000000000000000000000000..2c90fea933574b2023dc490849c96931da792234 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsToolbar$2.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsToolbar.dex b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsToolbar.dex new file mode 100644 index 0000000000000000000000000000000000000000..6f06db1272ac5703b301ac126ad4c68d7da130c0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/dexBuilder/release/0/org/muctec/smartfritz/jsToolbar.dex differ diff --git a/SmartFritz/build/intermediates/transforms/dexBuilder/release/__content__.json b/SmartFritz/build/intermediates/transforms/dexBuilder/release/__content__.json new file mode 100644 index 0000000000000000000000000000000000000000..c12df6c279732eefbe24d4d180a1d4b3df25bbb3 --- /dev/null +++ b/SmartFritz/build/intermediates/transforms/dexBuilder/release/__content__.json @@ -0,0 +1 @@ +[{"name":"/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/javac/release/compileReleaseJavaWithJavac/classes","index":0,"scopes":["PROJECT"],"types":["DEX_ARCHIVE"],"format":"DIRECTORY","present":true}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/transforms/mergeJavaRes/debug/0.jar b/SmartFritz/build/intermediates/transforms/mergeJavaRes/debug/0.jar new file mode 100644 index 0000000000000000000000000000000000000000..dd8d121fbe1e5bb2fdda5944c16570b482e3af9c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/mergeJavaRes/debug/0.jar differ diff --git a/SmartFritz/build/intermediates/transforms/mergeJavaRes/debug/__content__.json b/SmartFritz/build/intermediates/transforms/mergeJavaRes/debug/__content__.json new file mode 100644 index 0000000000000000000000000000000000000000..bd29a848b90e5cc73587e3b10c6e6709e0676e08 --- /dev/null +++ b/SmartFritz/build/intermediates/transforms/mergeJavaRes/debug/__content__.json @@ -0,0 +1 @@ +[{"name":"resources","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["RESOURCES"],"format":"JAR","present":true}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/transforms/mergeJavaRes/release/0.jar b/SmartFritz/build/intermediates/transforms/mergeJavaRes/release/0.jar new file mode 100644 index 0000000000000000000000000000000000000000..002d1decafaf0c91baf21db26d0affcc5e45cf79 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/mergeJavaRes/release/0.jar differ diff --git a/SmartFritz/build/intermediates/transforms/mergeJavaRes/release/__content__.json b/SmartFritz/build/intermediates/transforms/mergeJavaRes/release/__content__.json new file mode 100644 index 0000000000000000000000000000000000000000..bd29a848b90e5cc73587e3b10c6e6709e0676e08 --- /dev/null +++ b/SmartFritz/build/intermediates/transforms/mergeJavaRes/release/__content__.json @@ -0,0 +1 @@ +[{"name":"resources","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["RESOURCES"],"format":"JAR","present":true}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libcontrols.so b/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libcontrols.so new file mode 100644 index 0000000000000000000000000000000000000000..76312e18d56e3e210abea68a17c1d2bbe05b87e0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/0/lib/arm64-v8a/libcontrols.so differ diff --git a/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libcontrols.so b/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libcontrols.so new file mode 100644 index 0000000000000000000000000000000000000000..6aadf952f99d0580a573988b21095c838cbfdde9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libcontrols.so differ diff --git a/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libcrypto.so b/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libcrypto.so new file mode 100644 index 0000000000000000000000000000000000000000..32fbd10129d3b9226014c59827766cf7c540da61 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libcrypto.so differ diff --git a/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libssl.so b/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libssl.so new file mode 100644 index 0000000000000000000000000000000000000000..805a6c25cf4c24c1c5bbcd7f214fdd508f2f7f5c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/0/lib/armeabi-v7a/libssl.so differ diff --git a/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/__content__.json b/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/__content__.json new file mode 100644 index 0000000000000000000000000000000000000000..86722f5137fc0612607419887d6c44204a5cdcdb --- /dev/null +++ b/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/__content__.json @@ -0,0 +1 @@ +[{"name":"resources","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":true}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/0/lib/arm64-v8a/libcontrols.so b/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/0/lib/arm64-v8a/libcontrols.so new file mode 100644 index 0000000000000000000000000000000000000000..76312e18d56e3e210abea68a17c1d2bbe05b87e0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/0/lib/arm64-v8a/libcontrols.so differ diff --git a/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/0/lib/armeabi-v7a/libcontrols.so b/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/0/lib/armeabi-v7a/libcontrols.so new file mode 100644 index 0000000000000000000000000000000000000000..6aadf952f99d0580a573988b21095c838cbfdde9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/0/lib/armeabi-v7a/libcontrols.so differ diff --git a/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/0/lib/armeabi-v7a/libcrypto.so b/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/0/lib/armeabi-v7a/libcrypto.so new file mode 100644 index 0000000000000000000000000000000000000000..32fbd10129d3b9226014c59827766cf7c540da61 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/0/lib/armeabi-v7a/libcrypto.so differ diff --git a/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/0/lib/armeabi-v7a/libssl.so b/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/0/lib/armeabi-v7a/libssl.so new file mode 100644 index 0000000000000000000000000000000000000000..805a6c25cf4c24c1c5bbcd7f214fdd508f2f7f5c Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/0/lib/armeabi-v7a/libssl.so differ diff --git a/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/__content__.json b/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/__content__.json new file mode 100644 index 0000000000000000000000000000000000000000..86722f5137fc0612607419887d6c44204a5cdcdb --- /dev/null +++ b/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/__content__.json @@ -0,0 +1 @@ +[{"name":"resources","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":true}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0/lib/arm64-v8a/libcontrols.so b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0/lib/arm64-v8a/libcontrols.so new file mode 100755 index 0000000000000000000000000000000000000000..76312e18d56e3e210abea68a17c1d2bbe05b87e0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0/lib/arm64-v8a/libcontrols.so differ diff --git a/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0/lib/armeabi-v7a/libcontrols.so b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0/lib/armeabi-v7a/libcontrols.so new file mode 100755 index 0000000000000000000000000000000000000000..6aadf952f99d0580a573988b21095c838cbfdde9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0/lib/armeabi-v7a/libcontrols.so differ diff --git a/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0/lib/armeabi-v7a/libcrypto.so b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0/lib/armeabi-v7a/libcrypto.so new file mode 100755 index 0000000000000000000000000000000000000000..6f7233bbbcb0aa89d07cdce1421b08564f5bc760 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0/lib/armeabi-v7a/libcrypto.so differ diff --git a/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0/lib/armeabi-v7a/libssl.so b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0/lib/armeabi-v7a/libssl.so new file mode 100755 index 0000000000000000000000000000000000000000..f85bc5d622cc61b071000e47892b9630350526d2 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/0/lib/armeabi-v7a/libssl.so differ diff --git a/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/__content__.json b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/__content__.json new file mode 100644 index 0000000000000000000000000000000000000000..da4a622f9c40342ea1b46cb150e7f87d3b41421c --- /dev/null +++ b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/debug/__content__.json @@ -0,0 +1 @@ +[{"name":"/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/transforms/mergeJniLibs/debug/0","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":true}] \ No newline at end of file diff --git a/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0/lib/arm64-v8a/libcontrols.so b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0/lib/arm64-v8a/libcontrols.so new file mode 100755 index 0000000000000000000000000000000000000000..76312e18d56e3e210abea68a17c1d2bbe05b87e0 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0/lib/arm64-v8a/libcontrols.so differ diff --git a/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0/lib/armeabi-v7a/libcontrols.so b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0/lib/armeabi-v7a/libcontrols.so new file mode 100755 index 0000000000000000000000000000000000000000..6aadf952f99d0580a573988b21095c838cbfdde9 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0/lib/armeabi-v7a/libcontrols.so differ diff --git a/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0/lib/armeabi-v7a/libcrypto.so b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0/lib/armeabi-v7a/libcrypto.so new file mode 100755 index 0000000000000000000000000000000000000000..6f7233bbbcb0aa89d07cdce1421b08564f5bc760 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0/lib/armeabi-v7a/libcrypto.so differ diff --git a/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0/lib/armeabi-v7a/libssl.so b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0/lib/armeabi-v7a/libssl.so new file mode 100755 index 0000000000000000000000000000000000000000..f85bc5d622cc61b071000e47892b9630350526d2 Binary files /dev/null and b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/0/lib/armeabi-v7a/libssl.so differ diff --git a/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/__content__.json b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/__content__.json new file mode 100644 index 0000000000000000000000000000000000000000..a44149701c92b1ac45b642fcc6824a8f71160bc5 --- /dev/null +++ b/SmartFritz/build/intermediates/transforms/stripDebugSymbol/release/__content__.json @@ -0,0 +1 @@ +[{"name":"/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/intermediates/transforms/mergeJniLibs/release/0","index":0,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":true}] \ No newline at end of file diff --git a/SmartFritz/build/outputs/apk/debug/SmartFritz-armeabi-v7a-debug.apk b/SmartFritz/build/outputs/apk/debug/SmartFritz-armeabi-v7a-debug.apk new file mode 100644 index 0000000000000000000000000000000000000000..9f49d97a32336b5de3d47d95179a883854a1993a Binary files /dev/null and b/SmartFritz/build/outputs/apk/debug/SmartFritz-armeabi-v7a-debug.apk differ diff --git a/SmartFritz/build/outputs/apk/debug/output.json b/SmartFritz/build/outputs/apk/debug/output.json new file mode 100644 index 0000000000000000000000000000000000000000..e8a92b9b45cac8e8b8dddc4775941c436a99fc14 --- /dev/null +++ b/SmartFritz/build/outputs/apk/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"APK"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-debug.apk","fullName":"armeabi-v7aDebug","baseName":"armeabi-v7a-debug"},"path":"SmartFritz-armeabi-v7a-debug.apk","properties":{}}] \ No newline at end of file diff --git a/SmartFritz/build/outputs/apk/release/SmartFritz-armeabi-v7a-release-unsigned.apk b/SmartFritz/build/outputs/apk/release/SmartFritz-armeabi-v7a-release-unsigned.apk new file mode 100644 index 0000000000000000000000000000000000000000..881fc7a98a21083f051f4988937a0613e2fd8ed6 Binary files /dev/null and b/SmartFritz/build/outputs/apk/release/SmartFritz-armeabi-v7a-release-unsigned.apk differ diff --git a/SmartFritz/build/outputs/apk/release/output.json b/SmartFritz/build/outputs/apk/release/output.json new file mode 100644 index 0000000000000000000000000000000000000000..015f9176d17d460d030b4c473f51754c7d8b496d --- /dev/null +++ b/SmartFritz/build/outputs/apk/release/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"APK"},"apkData":{"type":"FULL_SPLIT","splits":[{"filterType":"ABI","value":"armeabi-v7a"}],"versionCode":1,"versionName":"1.0","enabled":true,"filterName":"armeabi-v7a","outputFile":"SmartFritz-armeabi-v7a-release-unsigned.apk","fullName":"armeabi-v7aRelease","baseName":"armeabi-v7a-release"},"path":"SmartFritz-armeabi-v7a-release-unsigned.apk","properties":{}}] \ No newline at end of file diff --git a/SmartFritz/build/outputs/logs/manifest-merger-debug-report.txt b/SmartFritz/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000000000000000000000000000000000000..185c5208135d6c92498d14479794de869a40c0c8 --- /dev/null +++ b/SmartFritz/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,331 @@ +-- Merging decision tree log --- +manifest +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:1-47:12 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:1-47:12 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:1-47:12 +MERGED from [com.android.support:support-v4:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8c92b55adb8341e35b719fe17df16fd7/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:design:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/AndroidManifest.xml:17:1-24:12 +MERGED from [com.android.support:appcompat-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:cardview-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:recyclerview-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9aa7e09576dc7293e1aad5f17168b77a/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:support-media-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:support-fragment:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9975bdc23e98f5f26e55f3189c30f00c/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:animated-vector-drawable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/1604b805148f13b78a814cf66a05f588/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:support-core-ui:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8b5aff4eb00865d9da57eaca88981bea/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:support-core-utils:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a1a275a4cb109540961532c18470a554/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:support-vector-drawable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/7629a0a8372906ad248d03095b7f95ef/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:transition:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/4ffb752cdf66fc470b29b37942163402/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:loader:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/04de6cd85148c430017c174a44fe710d/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:viewpager:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/638297909d3b0f31c8ca927662e8d1f5/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:coordinatorlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/88627de7ec5d8832b22b4a45185bed05/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:drawerlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/d5f7dc95e606194d6fb552505c61b9b1/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:slidingpanelayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a061a0468ed3e0262fce2a9cd08d510f/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:customview:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/38be9480183dde1737174f807ee4a52f/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:swiperefreshlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8565e0b68a41c75801d83e008f17bd7e/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:asynclayoutinflater:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/615e9fb7a82d8542a52fdaa3890041e0/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:support-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/AndroidManifest.xml:17:1-24:12 +MERGED from [com.android.support:versionedparcelable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/48fe2e8726751bcaf4c6eaea1d368035/AndroidManifest.xml:17:1-25:12 +MERGED from [com.android.support:cursoradapter:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9f12371c6833924286cf2b109992197c/AndroidManifest.xml:17:1-22:12 +MERGED from [android.arch.lifecycle:runtime:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/67bccf30c044331acd5f5b4fd439c9a0/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:documentfile:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a2921dc0c090aead2f4201426992b15e/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:localbroadcastmanager:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/2346148919a4599d5de0fa6179559ba0/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:print:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8264e839094de35b581673dbf6b7c114/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:interpolator:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a0af62e51c41d11cb0393ea3ad9146c7/AndroidManifest.xml:17:1-22:12 +MERGED from [android.arch.lifecycle:viewmodel:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/be77064e7810ade67c6fea621b8fe699/AndroidManifest.xml:17:1-22:12 +MERGED from [android.arch.lifecycle:livedata:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/cd0ae71cee8dc22af1837e36eee455b9/AndroidManifest.xml:17:1-22:12 +MERGED from [android.arch.lifecycle:livedata-core:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/e53ffa83aebc692eb03fd22899ba1e8c/AndroidManifest.xml:17:1-22:12 +MERGED from [android.arch.core:runtime:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/87e5d2c6b1fb8019caf23177220d47f0/AndroidManifest.xml:17:1-22:12 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:1-47:12 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:1-47:12 + package + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:70-101 + android:versionName + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:126-151 + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml + xmlns:android + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:11-69 + android:versionCode + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:102-125 + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml +uses-sdk +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:3-71 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:3-71 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:3-71 +MERGED from [com.android.support:support-v4:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8c92b55adb8341e35b719fe17df16fd7/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-v4:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8c92b55adb8341e35b719fe17df16fd7/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:design:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:design:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:appcompat-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:appcompat-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:cardview-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:cardview-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:recyclerview-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9aa7e09576dc7293e1aad5f17168b77a/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:recyclerview-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9aa7e09576dc7293e1aad5f17168b77a/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-media-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-media-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-fragment:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9975bdc23e98f5f26e55f3189c30f00c/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-fragment:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9975bdc23e98f5f26e55f3189c30f00c/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:animated-vector-drawable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/1604b805148f13b78a814cf66a05f588/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:animated-vector-drawable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/1604b805148f13b78a814cf66a05f588/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-core-ui:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8b5aff4eb00865d9da57eaca88981bea/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-core-ui:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8b5aff4eb00865d9da57eaca88981bea/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-core-utils:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a1a275a4cb109540961532c18470a554/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-core-utils:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a1a275a4cb109540961532c18470a554/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-vector-drawable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/7629a0a8372906ad248d03095b7f95ef/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-vector-drawable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/7629a0a8372906ad248d03095b7f95ef/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:transition:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/4ffb752cdf66fc470b29b37942163402/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:transition:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/4ffb752cdf66fc470b29b37942163402/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:loader:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/04de6cd85148c430017c174a44fe710d/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:loader:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/04de6cd85148c430017c174a44fe710d/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:viewpager:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/638297909d3b0f31c8ca927662e8d1f5/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:viewpager:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/638297909d3b0f31c8ca927662e8d1f5/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:coordinatorlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/88627de7ec5d8832b22b4a45185bed05/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:coordinatorlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/88627de7ec5d8832b22b4a45185bed05/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:drawerlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/d5f7dc95e606194d6fb552505c61b9b1/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:drawerlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/d5f7dc95e606194d6fb552505c61b9b1/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:slidingpanelayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a061a0468ed3e0262fce2a9cd08d510f/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:slidingpanelayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a061a0468ed3e0262fce2a9cd08d510f/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:customview:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/38be9480183dde1737174f807ee4a52f/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:customview:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/38be9480183dde1737174f807ee4a52f/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:swiperefreshlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8565e0b68a41c75801d83e008f17bd7e/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:swiperefreshlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8565e0b68a41c75801d83e008f17bd7e/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:asynclayoutinflater:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/615e9fb7a82d8542a52fdaa3890041e0/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:asynclayoutinflater:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/615e9fb7a82d8542a52fdaa3890041e0/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:versionedparcelable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/48fe2e8726751bcaf4c6eaea1d368035/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:versionedparcelable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/48fe2e8726751bcaf4c6eaea1d368035/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:cursoradapter:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9f12371c6833924286cf2b109992197c/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:cursoradapter:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9f12371c6833924286cf2b109992197c/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:runtime:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/67bccf30c044331acd5f5b4fd439c9a0/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:runtime:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/67bccf30c044331acd5f5b4fd439c9a0/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:documentfile:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a2921dc0c090aead2f4201426992b15e/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:documentfile:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a2921dc0c090aead2f4201426992b15e/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:localbroadcastmanager:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/2346148919a4599d5de0fa6179559ba0/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:localbroadcastmanager:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/2346148919a4599d5de0fa6179559ba0/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:print:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8264e839094de35b581673dbf6b7c114/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:print:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8264e839094de35b581673dbf6b7c114/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:interpolator:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a0af62e51c41d11cb0393ea3ad9146c7/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:interpolator:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a0af62e51c41d11cb0393ea3ad9146c7/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:viewmodel:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/be77064e7810ade67c6fea621b8fe699/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:viewmodel:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/be77064e7810ade67c6fea621b8fe699/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:livedata:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/cd0ae71cee8dc22af1837e36eee455b9/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:livedata:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/cd0ae71cee8dc22af1837e36eee455b9/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:livedata-core:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/e53ffa83aebc692eb03fd22899ba1e8c/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:livedata-core:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/e53ffa83aebc692eb03fd22899ba1e8c/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.core:runtime:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/87e5d2c6b1fb8019caf23177220d47f0/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.core:runtime:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/87e5d2c6b1fb8019caf23177220d47f0/AndroidManifest.xml:20:5-44 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:3-71 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:3-71 + android:targetSdkVersion + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:40-69 + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml + android:minSdkVersion + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:13-39 + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml +uses-permission#android.permission.ACCESS_BLUETOOTH_SHARE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:4:3-78 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:4:20-76 +uses-permission#android.permission.ACCESS_COARSE_LOCATION +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:5:3-78 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:5:20-76 +uses-permission#android.permission.ACCESS_FINE_LOCATION +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:6:3-76 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:6:20-74 +uses-permission#android.permission.ACCESS_NETWORK_STATE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:7:3-76 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:7:20-74 +uses-permission#android.permission.ACCESS_WIFI_STATE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:8:3-73 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:8:20-71 +uses-permission#android.permission.BLUETOOTH +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:9:3-65 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:9:20-63 +uses-permission#android.permission.BLUETOOTH_ADMIN +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:10:3-71 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:10:20-69 +uses-permission#android.permission.CALL_PHONE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:11:3-66 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:11:20-64 +uses-permission#android.permission.CAMERA +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:12:3-62 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:12:20-60 +uses-permission#android.permission.CHANGE_NETWORK_STATE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:13:3-76 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:13:20-74 +uses-permission#android.permission.CHANGE_WIFI_STATE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:14:3-73 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:14:20-71 +uses-permission#android.permission.INTERNET +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:15:3-64 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:15:20-62 +uses-permission#android.permission.MODIFY_AUDIO_SETTINGS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:16:3-77 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:16:20-75 +uses-permission#android.permission.NFC +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:17:3-59 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:17:20-57 +uses-permission#android.permission.PROCESS_OUTGOING_CALLS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:18:3-78 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:18:20-76 +uses-permission#android.permission.READ_CONTACTS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:19:3-69 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:19:20-67 +uses-permission#android.permission.READ_EXTERNAL_STORAGE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:20:3-77 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:20:20-75 +uses-permission#android.permission.READ_OWNER_DATA +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:21:3-71 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:21:20-69 +uses-permission#android.permission.READ_PHONE_STATE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:22:3-72 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:22:20-70 +uses-permission#android.permission.READ_SMS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:23:3-64 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:23:20-62 +uses-permission#android.permission.RECEIVE_SMS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:24:3-67 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:24:20-65 +uses-permission#android.permission.SEND_SMS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:25:3-64 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:25:20-62 +uses-permission#android.permission.VIBRATE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:26:3-63 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:26:20-61 +uses-permission#android.permission.WAKE_LOCK +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:27:3-65 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:27:20-63 +uses-permission#android.permission.WRITE_CONTACTS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:28:3-70 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:28:20-68 +uses-permission#android.permission.WRITE_EXTERNAL_STORAGE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:29:3-78 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:29:20-76 +uses-permission#android.permission.WRITE_OWNER_DATA +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:30:3-72 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:30:20-70 +uses-feature#android.hardware.camera +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:31:3-82 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:31:56-80 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:31:17-55 +uses-feature#android.hardware.camera.flash +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:32:3-88 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:32:62-86 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:32:17-61 +uses-feature#android.hardware.camera.autofocus +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:33:3-92 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:33:66-90 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:33:17-65 +uses-feature#0x00020000 +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:34:3-75 + android:glEsVersion + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:34:17-49 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:34:50-73 +uses-feature#android.hardware.telephony +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:35:3-85 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:35:59-83 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:35:17-58 +uses-feature#android.hardware.sensor.stepcounter +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:36:3-94 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:36:68-92 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:36:17-67 +uses-feature#android.hardware.sensor.stepdetector +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:37:3-95 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:37:69-93 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:37:17-68 +supports-screens +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:38:3-133 + android:largeScreens + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:38:78-105 + android:smallScreens + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:38:21-48 + android:normalScreens + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:38:49-77 + android:anyDensity + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:38:106-131 +application +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:39:3-46:17 +MERGED from [com.android.support:design:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/AndroidManifest.xml:22:5-20 +MERGED from [com.android.support:design:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/AndroidManifest.xml:22:5-20 +MERGED from [com.android.support:support-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/AndroidManifest.xml:22:5-94 +MERGED from [com.android.support:support-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/AndroidManifest.xml:22:5-94 +MERGED from [com.android.support:versionedparcelable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/48fe2e8726751bcaf4c6eaea1d368035/AndroidManifest.xml:22:5-23:19 +MERGED from [com.android.support:versionedparcelable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/48fe2e8726751bcaf4c6eaea1d368035/AndroidManifest.xml:22:5-23:19 + android:appComponentFactory + ADDED from [com.android.support:support-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/AndroidManifest.xml:22:18-91 + android:label + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:39:80-112 + android:icon + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:39:43-79 + android:allowBackup + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:39:16-42 + android:theme + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:39:113-144 + android:networkSecurityConfig + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:39:145-205 +activity#org.muctec.smartfritz.App +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:40:5-45:16 + android:enabled + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:40:204-226 + android:label + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:40:56-88 + android:launchMode + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:40:174-203 + android:configChanges + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:40:89-173 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:40:15-55 +intent-filter#action:name:android.intent.action.MAIN+category:name:android.intent.category.LAUNCHER +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:41:7-44:23 +action#android.intent.action.MAIN +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:42:9-60 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:42:17-58 +category#android.intent.category.LAUNCHER +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:43:9-68 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:43:19-66 diff --git a/SmartFritz/build/outputs/logs/manifest-merger-release-report.txt b/SmartFritz/build/outputs/logs/manifest-merger-release-report.txt new file mode 100644 index 0000000000000000000000000000000000000000..185c5208135d6c92498d14479794de869a40c0c8 --- /dev/null +++ b/SmartFritz/build/outputs/logs/manifest-merger-release-report.txt @@ -0,0 +1,331 @@ +-- Merging decision tree log --- +manifest +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:1-47:12 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:1-47:12 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:1-47:12 +MERGED from [com.android.support:support-v4:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8c92b55adb8341e35b719fe17df16fd7/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:design:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/AndroidManifest.xml:17:1-24:12 +MERGED from [com.android.support:appcompat-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:cardview-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:recyclerview-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9aa7e09576dc7293e1aad5f17168b77a/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:support-media-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:support-fragment:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9975bdc23e98f5f26e55f3189c30f00c/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:animated-vector-drawable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/1604b805148f13b78a814cf66a05f588/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:support-core-ui:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8b5aff4eb00865d9da57eaca88981bea/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:support-core-utils:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a1a275a4cb109540961532c18470a554/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:support-vector-drawable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/7629a0a8372906ad248d03095b7f95ef/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:transition:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/4ffb752cdf66fc470b29b37942163402/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:loader:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/04de6cd85148c430017c174a44fe710d/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:viewpager:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/638297909d3b0f31c8ca927662e8d1f5/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:coordinatorlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/88627de7ec5d8832b22b4a45185bed05/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:drawerlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/d5f7dc95e606194d6fb552505c61b9b1/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:slidingpanelayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a061a0468ed3e0262fce2a9cd08d510f/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:customview:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/38be9480183dde1737174f807ee4a52f/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:swiperefreshlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8565e0b68a41c75801d83e008f17bd7e/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:asynclayoutinflater:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/615e9fb7a82d8542a52fdaa3890041e0/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:support-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/AndroidManifest.xml:17:1-24:12 +MERGED from [com.android.support:versionedparcelable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/48fe2e8726751bcaf4c6eaea1d368035/AndroidManifest.xml:17:1-25:12 +MERGED from [com.android.support:cursoradapter:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9f12371c6833924286cf2b109992197c/AndroidManifest.xml:17:1-22:12 +MERGED from [android.arch.lifecycle:runtime:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/67bccf30c044331acd5f5b4fd439c9a0/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:documentfile:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a2921dc0c090aead2f4201426992b15e/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:localbroadcastmanager:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/2346148919a4599d5de0fa6179559ba0/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:print:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8264e839094de35b581673dbf6b7c114/AndroidManifest.xml:17:1-22:12 +MERGED from [com.android.support:interpolator:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a0af62e51c41d11cb0393ea3ad9146c7/AndroidManifest.xml:17:1-22:12 +MERGED from [android.arch.lifecycle:viewmodel:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/be77064e7810ade67c6fea621b8fe699/AndroidManifest.xml:17:1-22:12 +MERGED from [android.arch.lifecycle:livedata:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/cd0ae71cee8dc22af1837e36eee455b9/AndroidManifest.xml:17:1-22:12 +MERGED from [android.arch.lifecycle:livedata-core:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/e53ffa83aebc692eb03fd22899ba1e8c/AndroidManifest.xml:17:1-22:12 +MERGED from [android.arch.core:runtime:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/87e5d2c6b1fb8019caf23177220d47f0/AndroidManifest.xml:17:1-22:12 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:1-47:12 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:1-47:12 + package + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:70-101 + android:versionName + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:126-151 + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml + xmlns:android + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:11-69 + android:versionCode + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:2:102-125 + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml +uses-sdk +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:3-71 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:3-71 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:3-71 +MERGED from [com.android.support:support-v4:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8c92b55adb8341e35b719fe17df16fd7/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-v4:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8c92b55adb8341e35b719fe17df16fd7/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:design:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:design:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:appcompat-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:appcompat-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/5e4ca4495ddc43e9cf5dac638c7f2f37/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:cardview-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:cardview-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a8550394d6ff393c2781e4917faa02bb/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:recyclerview-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9aa7e09576dc7293e1aad5f17168b77a/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:recyclerview-v7:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9aa7e09576dc7293e1aad5f17168b77a/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-media-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-media-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a86373ff37a5a4a6c09b1ae4d9e825ac/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-fragment:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9975bdc23e98f5f26e55f3189c30f00c/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-fragment:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9975bdc23e98f5f26e55f3189c30f00c/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:animated-vector-drawable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/1604b805148f13b78a814cf66a05f588/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:animated-vector-drawable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/1604b805148f13b78a814cf66a05f588/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-core-ui:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8b5aff4eb00865d9da57eaca88981bea/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-core-ui:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8b5aff4eb00865d9da57eaca88981bea/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-core-utils:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a1a275a4cb109540961532c18470a554/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-core-utils:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a1a275a4cb109540961532c18470a554/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-vector-drawable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/7629a0a8372906ad248d03095b7f95ef/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-vector-drawable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/7629a0a8372906ad248d03095b7f95ef/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:transition:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/4ffb752cdf66fc470b29b37942163402/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:transition:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/4ffb752cdf66fc470b29b37942163402/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:loader:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/04de6cd85148c430017c174a44fe710d/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:loader:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/04de6cd85148c430017c174a44fe710d/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:viewpager:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/638297909d3b0f31c8ca927662e8d1f5/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:viewpager:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/638297909d3b0f31c8ca927662e8d1f5/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:coordinatorlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/88627de7ec5d8832b22b4a45185bed05/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:coordinatorlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/88627de7ec5d8832b22b4a45185bed05/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:drawerlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/d5f7dc95e606194d6fb552505c61b9b1/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:drawerlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/d5f7dc95e606194d6fb552505c61b9b1/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:slidingpanelayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a061a0468ed3e0262fce2a9cd08d510f/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:slidingpanelayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a061a0468ed3e0262fce2a9cd08d510f/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:customview:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/38be9480183dde1737174f807ee4a52f/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:customview:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/38be9480183dde1737174f807ee4a52f/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:swiperefreshlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8565e0b68a41c75801d83e008f17bd7e/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:swiperefreshlayout:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8565e0b68a41c75801d83e008f17bd7e/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:asynclayoutinflater:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/615e9fb7a82d8542a52fdaa3890041e0/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:asynclayoutinflater:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/615e9fb7a82d8542a52fdaa3890041e0/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:support-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:versionedparcelable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/48fe2e8726751bcaf4c6eaea1d368035/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:versionedparcelable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/48fe2e8726751bcaf4c6eaea1d368035/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:cursoradapter:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9f12371c6833924286cf2b109992197c/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:cursoradapter:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/9f12371c6833924286cf2b109992197c/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:runtime:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/67bccf30c044331acd5f5b4fd439c9a0/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:runtime:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/67bccf30c044331acd5f5b4fd439c9a0/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:documentfile:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a2921dc0c090aead2f4201426992b15e/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:documentfile:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a2921dc0c090aead2f4201426992b15e/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:localbroadcastmanager:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/2346148919a4599d5de0fa6179559ba0/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:localbroadcastmanager:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/2346148919a4599d5de0fa6179559ba0/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:print:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8264e839094de35b581673dbf6b7c114/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:print:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8264e839094de35b581673dbf6b7c114/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:interpolator:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a0af62e51c41d11cb0393ea3ad9146c7/AndroidManifest.xml:20:5-44 +MERGED from [com.android.support:interpolator:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/a0af62e51c41d11cb0393ea3ad9146c7/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:viewmodel:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/be77064e7810ade67c6fea621b8fe699/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:viewmodel:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/be77064e7810ade67c6fea621b8fe699/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:livedata:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/cd0ae71cee8dc22af1837e36eee455b9/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:livedata:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/cd0ae71cee8dc22af1837e36eee455b9/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:livedata-core:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/e53ffa83aebc692eb03fd22899ba1e8c/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.lifecycle:livedata-core:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/e53ffa83aebc692eb03fd22899ba1e8c/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.core:runtime:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/87e5d2c6b1fb8019caf23177220d47f0/AndroidManifest.xml:20:5-44 +MERGED from [android.arch.core:runtime:1.1.1] /home/te/.gradle/caches/transforms-2/files-2.1/87e5d2c6b1fb8019caf23177220d47f0/AndroidManifest.xml:20:5-44 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:3-71 +INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:3-71 + android:targetSdkVersion + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:40-69 + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml + android:minSdkVersion + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:3:13-39 + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml + INJECTED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml +uses-permission#android.permission.ACCESS_BLUETOOTH_SHARE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:4:3-78 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:4:20-76 +uses-permission#android.permission.ACCESS_COARSE_LOCATION +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:5:3-78 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:5:20-76 +uses-permission#android.permission.ACCESS_FINE_LOCATION +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:6:3-76 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:6:20-74 +uses-permission#android.permission.ACCESS_NETWORK_STATE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:7:3-76 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:7:20-74 +uses-permission#android.permission.ACCESS_WIFI_STATE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:8:3-73 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:8:20-71 +uses-permission#android.permission.BLUETOOTH +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:9:3-65 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:9:20-63 +uses-permission#android.permission.BLUETOOTH_ADMIN +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:10:3-71 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:10:20-69 +uses-permission#android.permission.CALL_PHONE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:11:3-66 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:11:20-64 +uses-permission#android.permission.CAMERA +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:12:3-62 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:12:20-60 +uses-permission#android.permission.CHANGE_NETWORK_STATE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:13:3-76 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:13:20-74 +uses-permission#android.permission.CHANGE_WIFI_STATE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:14:3-73 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:14:20-71 +uses-permission#android.permission.INTERNET +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:15:3-64 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:15:20-62 +uses-permission#android.permission.MODIFY_AUDIO_SETTINGS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:16:3-77 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:16:20-75 +uses-permission#android.permission.NFC +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:17:3-59 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:17:20-57 +uses-permission#android.permission.PROCESS_OUTGOING_CALLS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:18:3-78 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:18:20-76 +uses-permission#android.permission.READ_CONTACTS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:19:3-69 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:19:20-67 +uses-permission#android.permission.READ_EXTERNAL_STORAGE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:20:3-77 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:20:20-75 +uses-permission#android.permission.READ_OWNER_DATA +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:21:3-71 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:21:20-69 +uses-permission#android.permission.READ_PHONE_STATE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:22:3-72 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:22:20-70 +uses-permission#android.permission.READ_SMS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:23:3-64 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:23:20-62 +uses-permission#android.permission.RECEIVE_SMS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:24:3-67 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:24:20-65 +uses-permission#android.permission.SEND_SMS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:25:3-64 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:25:20-62 +uses-permission#android.permission.VIBRATE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:26:3-63 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:26:20-61 +uses-permission#android.permission.WAKE_LOCK +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:27:3-65 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:27:20-63 +uses-permission#android.permission.WRITE_CONTACTS +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:28:3-70 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:28:20-68 +uses-permission#android.permission.WRITE_EXTERNAL_STORAGE +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:29:3-78 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:29:20-76 +uses-permission#android.permission.WRITE_OWNER_DATA +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:30:3-72 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:30:20-70 +uses-feature#android.hardware.camera +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:31:3-82 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:31:56-80 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:31:17-55 +uses-feature#android.hardware.camera.flash +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:32:3-88 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:32:62-86 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:32:17-61 +uses-feature#android.hardware.camera.autofocus +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:33:3-92 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:33:66-90 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:33:17-65 +uses-feature#0x00020000 +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:34:3-75 + android:glEsVersion + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:34:17-49 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:34:50-73 +uses-feature#android.hardware.telephony +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:35:3-85 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:35:59-83 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:35:17-58 +uses-feature#android.hardware.sensor.stepcounter +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:36:3-94 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:36:68-92 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:36:17-67 +uses-feature#android.hardware.sensor.stepdetector +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:37:3-95 + android:required + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:37:69-93 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:37:17-68 +supports-screens +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:38:3-133 + android:largeScreens + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:38:78-105 + android:smallScreens + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:38:21-48 + android:normalScreens + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:38:49-77 + android:anyDensity + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:38:106-131 +application +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:39:3-46:17 +MERGED from [com.android.support:design:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/AndroidManifest.xml:22:5-20 +MERGED from [com.android.support:design:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/8931d7571f82ea1d7649a76cac1609ae/AndroidManifest.xml:22:5-20 +MERGED from [com.android.support:support-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/AndroidManifest.xml:22:5-94 +MERGED from [com.android.support:support-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/AndroidManifest.xml:22:5-94 +MERGED from [com.android.support:versionedparcelable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/48fe2e8726751bcaf4c6eaea1d368035/AndroidManifest.xml:22:5-23:19 +MERGED from [com.android.support:versionedparcelable:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/48fe2e8726751bcaf4c6eaea1d368035/AndroidManifest.xml:22:5-23:19 + android:appComponentFactory + ADDED from [com.android.support:support-compat:28.0.0] /home/te/.gradle/caches/transforms-2/files-2.1/49867a109f8523f7efbd20f00c530c17/AndroidManifest.xml:22:18-91 + android:label + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:39:80-112 + android:icon + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:39:43-79 + android:allowBackup + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:39:16-42 + android:theme + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:39:113-144 + android:networkSecurityConfig + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:39:145-205 +activity#org.muctec.smartfritz.App +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:40:5-45:16 + android:enabled + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:40:204-226 + android:label + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:40:56-88 + android:launchMode + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:40:174-203 + android:configChanges + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:40:89-173 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:40:15-55 +intent-filter#action:name:android.intent.action.MAIN+category:name:android.intent.category.LAUNCHER +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:41:7-44:23 +action#android.intent.action.MAIN +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:42:9-60 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:42:17-58 +category#android.intent.category.LAUNCHER +ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:43:9-68 + android:name + ADDED from /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/AndroidManifest.xml:43:19-66 diff --git a/SmartFritz/build/reports/lint-results.html b/SmartFritz/build/reports/lint-results.html new file mode 100644 index 0000000000000000000000000000000000000000..078b5bbb92f3dbc378c8fb03548a0abb2d5f63e7 --- /dev/null +++ b/SmartFritz/build/reports/lint-results.html @@ -0,0 +1,2305 @@ + + + + + +Lint Report + + + + + + + + +

+
+
+ Lint Report: 7 errors and 71 warnings +
+ +
+
+
+ Issue Types + +
+
+
+ +
+
+
+

Overview

+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Correctness +
1error +MissingPermission: Missing Permissions
3warning +ApplySharedPref: Use apply() on SharedPreferences
3warning +DefaultLocale: Implied default locale in case conversion
2warning +OldTargetApi: Target SDK attribute is not targeting latest version
1warning +SimpleDateFormat: Implied locale in date format
1warning +UnusedAttribute: Attribute unused on older versions
4error +AppCompatCustomView: Appcompat Custom Widgets
1warning +GradleDependency: Obsolete Gradle Dependency
5warning +GradleDynamicVersion: Gradle Dynamic Version
4warning +GradleOverrides: Value overridden by Gradle build script
2error +RestrictedApi: Restricted API
Security +
2warning +HardwareIds: Hardware Id Usage
1warning +AllowBackup: AllowBackup/FullBackupContent Problems
Performance +
1warning +WakelockTimeout: Using wakeLock without timeout
2warning +ObsoleteSdkInt: Obsolete SDK_INT Version Check
3warning +StaticFieldLeak: Static Field Leaks
22warning +UnusedResources: Unused resources
Usability:Icons +
1warning +IconDipSize: Icon density-independent size validation
1warning +IconDuplicatesConfig: Identical bitmaps across various configurations
1warning +IconLocation: Image defined in density-independent drawable folder
3warning +IconDensities: Icon densities validation
Usability +
1warning +GoogleAppIndexingWarning: Missing support for Firebase App Indexing
12warning +ViewConstructor: Missing View constructors for XML inflation
Accessibility +
1warning +ClickableViewAccessibility: Accessibility in Custom Views
Disabled Checks (32) +
+
+
+
+
+
+ + +
+
+
+

Missing Permissions

+
+
+
+
+../../src/org/muctec/smartfritz/Controls.java:2421: Missing permissions required by TelephonyManager.getDeviceId: android.permission.READ_PRIVILEGED_PHONE_STATE
+ 2418   TelephonyManager telephony = (TelephonyManager) activity.getSystemService(Context.TELEPHONY_SERVICE);
+ 2419     if (telephony!=null) {
+ 2420         try {
+ 2421             f = telephony.getDeviceId();                                                                     
+ 2422         } catch (SecurityException ex) {
+ 2423             Log.e("getDevDeviceID", ex.getMessage());
+ 2424         }
+
+ +
+ +
+
+ + MissingPermission + + + Correctness + + + Error + + + Priority 9/10 + +
+
+
+
+
+
+
+
+
+

Use apply() on SharedPreferences

+
+
+
+
+../../src/org/muctec/smartfritz/jPreferences.java:62: Consider using apply() instead; commit writes its data to persistent storage immediately, whereas apply will handle it in the background
+  59         
+  60         if( edt != null ){
+  61          edt.putInt(_key, _value);
+  62          edt.commit();                                                                                    
+  63         }
+  64     }
+
+ +../../src/org/muctec/smartfritz/jPreferences.java:83: Consider using apply() instead; commit writes its data to persistent storage immediately, whereas apply will handle it in the background
+  80         
+  81         if( edt != null ){
+  82          edt.putString(_key, _value);
+  83          edt.commit();                                                                                    
+  84         }
+  85     }
+
+ +../../src/org/muctec/smartfritz/jPreferences.java:103: Consider using apply() instead; commit writes its data to persistent storage immediately, whereas apply will handle it in the background
+ 100         
+ 101         if( edt != null ){
+ 102          edt.putBoolean(_key, _value);
+ 103          edt.commit();                                                                                    
+ 104         }
+ 105     }
+ 106 }
+
+ +
+ +
+
+ + ApplySharedPref + + + Correctness + + + Warning + + + Priority 6/10 + +
+
+
+
+
+
+
+
+
+

Implied default locale in case conversion

+
+
+
+
+../../src/org/muctec/smartfritz/Controls.java:1525: Implicitly using the default locale is a common source of bugs: Use toUpperCase(Locale) instead. For strings meant to be internal use Locale.ROOT, otherwise Locale.getDefault().
+ 1522                         if (isIPv4) return r = inetAddress.getHostAddress();
+ 1523                         if (!isIPv4) {
+ 1524                             int delim = inetAddress.getHostAddress().indexOf('%'); // drop ip6 zone suffix
+ 1525                             r = delim < 0 ? inetAddress.getHostAddress().toUpperCase() : inetAddress.getHostAddress().substring(0, delim).toUpperCase();
+ 1526                         }
+ 1527                     }
+ 1528                 }
+
+ +../../src/org/muctec/smartfritz/Controls.java:1525: Implicitly using the default locale is a common source of bugs: Use toUpperCase(Locale) instead. For strings meant to be internal use Locale.ROOT, otherwise Locale.getDefault().
+ 1522                         if (isIPv4) return r = inetAddress.getHostAddress();
+ 1523                         if (!isIPv4) {
+ 1524                             int delim = inetAddress.getHostAddress().indexOf('%'); // drop ip6 zone suffix
+ 1525                             r = delim < 0 ? inetAddress.getHostAddress().toUpperCase() : inetAddress.getHostAddress().substring(0, delim).toUpperCase();
+ 1526                         }
+ 1527                     }
+ 1528                 }
+
+ +../../src/org/muctec/smartfritz/Controls.java:1543: Implicitly using the default locale is a common source of bugs: Use String.format(Locale, ...) instead
+ 1540 
+ 1541         //String ip = Formatter.formatIpAddress(
+ 1542         int ipAddress = mWifi.getConnectionInfo().getIpAddress();
+ 1543         String sIP = String.format("%d.%d.%d.%d",                                                         
+ 1544                 (ipAddress & 0xff),
+ 1545                 (ipAddress >> 8 & 0xff),
+ 1546                 (ipAddress >> 16 & 0xff),
+
+ +
+ +
+
+ + DefaultLocale + + + Correctness + + + Warning + + + Priority 6/10 + +
+
+
+
+
+
+
+
+
+

Target SDK attribute is not targeting latest version

+
+
+
+
+../../AndroidManifest.xml:3: Not targeting the latest versions of Android; compatibility modes apply. Consider testing and updating this version. Consult the android.os.Build.VERSION_CODES javadoc for details.
+  1 <?xml version="1.0" encoding="UTF-8"?>
+  2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.muctec.smartfritz" android:versionCode="1" android:versionName="1.0">
+  3   <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="28"/>                              
+  4   <uses-permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE"/>
+  5   <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
+  6   <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
+
+ +../../build.gradle:34: Not targeting the latest versions of Android; compatibility modes apply. Consider testing and updating this version. Consult the android.os.Build.VERSION_CODES javadoc for details.
+ 31     compileSdkVersion 28
+ 32     defaultConfig {
+ 33             minSdkVersion 14
+ 34             targetSdkVersion 28                                                                     
+ 35             versionCode 1
+ 36             versionName "1.0"
+ 37     }
+
+ +
+ +
+
+ + OldTargetApi + + + Correctness + + + Warning + + + Priority 6/10 + +
+
+
+
+
+
+
+
+
+

Implied locale in date format

+
+
+
+
+../../src/org/muctec/smartfritz/Controls.java:638: To get local formatting use getDateInstance(), getDateTimeInstance(), or getTimeInstance(), or use new SimpleDateFormat(String template, Locale locale) with for example Locale.US for ASCII dates.
+  635 
+  636     //by TR3E
+  637     public String GetTimeHHssSS( long millisTime ) {
+  638           SimpleDateFormat formatter = new SimpleDateFormat ( "mm:ss:SS" );                               
+  639           return( formatter.format ( new Date (millisTime) ) );    
+  640     }
+
+ +
+ +
+
+ + SimpleDateFormat + + + Correctness + + + Warning + + + Priority 6/10 + +
+
+
+
+
+
+
+
+
+

Attribute unused on older versions

+
+
+
+
+../../AndroidManifest.xml:39: Attribute networkSecurityConfig is only used in API level 24 and higher (current min is 14)
+ 36   <uses-feature android:name="android.hardware.sensor.stepcounter" android:required="false"/>
+ 37   <uses-feature android:name="android.hardware.sensor.stepdetector" android:required="false"/>
+ 38   <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true"/>
+ 39   <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" android:networkSecurityConfig="@xml/network_security_config">
+ 40     <activity android:name="org.muctec.smartfritz.App" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden|screenSize|screenLayout|fontScale" android:launchMode="standard" android:enabled="true">
+ 41       <intent-filter>
+ 42         <action android:name="android.intent.action.MAIN"/>
+
+ +
+ +
+
+ + UnusedAttribute + + + Correctness + + + Warning + + + Priority 6/10 + +
+
+
+
+
+
+
+
+
+

Appcompat Custom Widgets

+
+
+
+
+../../src/org/muctec/smartfritz/jButton.java:24: This custom view should extend android.support.v7.widget.AppCompatButton instead
+  21 import android.view.ViewGroup;
+  22 import android.widget.Button;
+  23 
+  24 public class jButton extends Button {                                                               
+  25 
+  26     private Controls controls = null;   // Control Class for Event
+  27     private jCommons LAMWCommon;
+
+ +../../src/org/muctec/smartfritz/jCheckBox.java:13: This custom view should extend android.support.v7.widget.AppCompatCheckBox instead
+  10 import android.widget.CheckBox;
+  11 import android.view.Gravity;
+  12 
+  13 public class jCheckBox extends CheckBox {                                                           
+  14     //Java-Pascal Interface
+  15     private long             PasObj   = 0;      // Pascal Obj
+  16     private Controls        controls = null;   // Control Class for Event
+ +../../src/org/muctec/smartfritz/jEditText.java:42: This custom view should extend android.support.v7.widget.AppCompatEditText instead
+  39 
+  40 //Reviewed by TR3E on 08/20/2019
+  41 
+  42 public class jEditText extends EditText {                                                           
+  43     //Pascal Interface
+  44     //private long           PasObj   = 0;      // Pascal Obj
+  45     private Controls      controls = null;   // Control Class for Event
+ +../../src/org/muctec/smartfritz/jTextView.java:37: This custom view should extend android.support.v7.widget.AppCompatTextView instead
+  34 import android.view.Gravity;
+  35 import android.widget.TextView;
+  36 
+  37 public class jTextView extends TextView {                                                           
+  38     //Java-Pascal Interface
+  39     private Controls        controls = null;   // Control Class for Event
+  40     private jCommons LAMWCommon;
+
+ +
+ +
+
+ + AppCompatCustomView + + + Correctness + + + Error + + + Priority 4/10 + +
+
+
+
+
+
+
+
+
+

Obsolete Gradle Dependency

+
+
+
+
+../../build.gradle:8: A newer version of com.android.tools.build:gradle than 3.4.1 is available: 4.0.1
+  5         google()
+  6     }
+  7     dependencies {
+  8         classpath 'com.android.tools.build:gradle:3.4.1'                                            
+  9     }
+ 10 }
+ 11 allprojects {
+
+ +
+ +
+
+ + GradleDependency + + + Correctness + + + Warning + + + Priority 4/10 + +
+
+
+
+
+
+
+
+
+

Gradle Dynamic Version

+
+
+
+
+../../build.gradle:56: Avoid using + in version numbers; can lead to unpredictable and unrepeatable builds (com.android.support:support-v4:28.+)
+ 53 }
+ 54 dependencies {
+ 55     implementation fileTree(include: ['*.jar'], dir: 'libs')
+ 56     implementation 'com.android.support:support-v4:28.+'                                            
+ 57     implementation 'com.android.support:appcompat-v7:28.+'
+ 58     implementation 'com.android.support:design:28.+'
+ 59     implementation 'com.android.support:cardview-v7:28.+'
+ +../../build.gradle:57: Avoid using + in version numbers; can lead to unpredictable and unrepeatable builds (com.android.support:appcompat-v7:28.+)
+ 54 dependencies {
+ 55     implementation fileTree(include: ['*.jar'], dir: 'libs')
+ 56     implementation 'com.android.support:support-v4:28.+'
+ 57     implementation 'com.android.support:appcompat-v7:28.+'                                          
+ 58     implementation 'com.android.support:design:28.+'
+ 59     implementation 'com.android.support:cardview-v7:28.+'
+ 60     implementation 'com.android.support:recyclerview-v7:28.+'
+ +../../build.gradle:58: Avoid using + in version numbers; can lead to unpredictable and unrepeatable builds (com.android.support:design:28.+)
+ 55     implementation fileTree(include: ['*.jar'], dir: 'libs')
+ 56     implementation 'com.android.support:support-v4:28.+'
+ 57     implementation 'com.android.support:appcompat-v7:28.+'
+ 58     implementation 'com.android.support:design:28.+'                                                
+ 59     implementation 'com.android.support:cardview-v7:28.+'
+ 60     implementation 'com.android.support:recyclerview-v7:28.+'
+ 61 }
+
+ +../../build.gradle:59: Avoid using + in version numbers; can lead to unpredictable and unrepeatable builds (com.android.support:cardview-v7:28.+)
+ 56     implementation 'com.android.support:support-v4:28.+'
+ 57     implementation 'com.android.support:appcompat-v7:28.+'
+ 58     implementation 'com.android.support:design:28.+'
+ 59     implementation 'com.android.support:cardview-v7:28.+'                                           
+ 60     implementation 'com.android.support:recyclerview-v7:28.+'
+ 61 }
+ 62  
+
+ +../../build.gradle:60: Avoid using + in version numbers; can lead to unpredictable and unrepeatable builds (com.android.support:recyclerview-v7:28.+)
+ 57     implementation 'com.android.support:appcompat-v7:28.+'
+ 58     implementation 'com.android.support:design:28.+'
+ 59     implementation 'com.android.support:cardview-v7:28.+'
+ 60     implementation 'com.android.support:recyclerview-v7:28.+'                                       
+ 61 }
+ 62  
+ 63 task run(type: Exec, dependsOn: ':installDebug') {
+
+ +
+ +
+
+ + GradleDynamicVersion + + + Correctness + + + Warning + + + Priority 4/10 + +
+
+
+
+
+
+
+
+
+

Value overridden by Gradle build script

+
+
+
+
+../../AndroidManifest.xml:2: This versionCode value (1) is not used; it is always overridden by the value specified in the Gradle build script (1)
+  1 <?xml version="1.0" encoding="UTF-8"?>
+  2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.muctec.smartfritz" android:versionCode="1" android:versionName="1.0">
+  3   <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="28"/>
+  4   <uses-permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE"/>
+  5   <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
+
+ +../../AndroidManifest.xml:2: This versionName value (1.0) is not used; it is always overridden by the value specified in the Gradle build script (1.0)
+  1 <?xml version="1.0" encoding="UTF-8"?>
+  2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.muctec.smartfritz" android:versionCode="1" android:versionName="1.0">
+  3   <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="28"/>
+  4   <uses-permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE"/>
+  5   <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
+
+ +../../AndroidManifest.xml:3: This minSdkVersion value (14) is not used; it is always overridden by the value specified in the Gradle build script (14)
+  1 <?xml version="1.0" encoding="UTF-8"?>
+  2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.muctec.smartfritz" android:versionCode="1" android:versionName="1.0">
+  3   <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="28"/>                              
+  4   <uses-permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE"/>
+  5   <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
+  6   <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
+
+ +../../AndroidManifest.xml:3: This targetSdkVersion value (28) is not used; it is always overridden by the value specified in the Gradle build script (28)
+  1 <?xml version="1.0" encoding="UTF-8"?>
+  2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.muctec.smartfritz" android:versionCode="1" android:versionName="1.0">
+  3   <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="28"/>                              
+  4   <uses-permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE"/>
+  5   <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
+  6   <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
+
+ +
+ +
+
+ + GradleOverrides + + + Correctness + + + Warning + + + Priority 4/10 + +
+
+
+
+
+
+
+
+
+

Restricted API

+
+
+
+
+../../src/org/muctec/smartfritz/jsFloatingButton.java:116: VisibilityAwareImageButton.setVisibility can only be called from within the same library group (groupId=com.android.support)
+ 113   //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ...
+ 114   
+ 115   public void SetVisibility(int _value) {  //       
+ 116   this.setVisibility(_value);   //View.GONE=8   View.VISIBLE=0  View.INVISIBLE=4                   
+ 117   }
+ 118   
+ 119   public void SetCompatElevation(float _value){
+
+ +../../src/org/muctec/smartfritz/jsFloatingButton.java:207: VisibilityAwareImageButton.setVisibility can only be called from within the same library group (groupId=com.android.support)
+ 204                    parent.invalidate();    
+ 205                }
+ 206         }        
+ 207         this.setVisibility(android.view.View.VISIBLE);                                                    
+ 208    }
+ 209 }
+
+ +
+ +
+
+ + RestrictedApi + + + Correctness + + + Error + + + Priority 4/10 + +
+
+
+
+
+
+ + +
+
+
+

Hardware Id Usage

+
+
+
+
+../../src/org/muctec/smartfritz/Controls.java:2406: Using getLine1Number to get device identifiers is not recommended.
+ 2403   TelephonyManager telephony = (TelephonyManager) activity.getSystemService(Context.TELEPHONY_SERVICE);
+ 2404   if (telephony!=null) {
+ 2405       try {
+ 2406           f = telephony.getLine1Number();                                                                 
+ 2407       } catch (SecurityException ex) {
+ 2408           Log.e("getDevPhoneNumber", ex.getMessage());
+ 2409       }
+
+ +../../src/org/muctec/smartfritz/Controls.java:2421: Using getDeviceId to get device identifiers is not recommended.
+ 2418   TelephonyManager telephony = (TelephonyManager) activity.getSystemService(Context.TELEPHONY_SERVICE);
+ 2419     if (telephony!=null) {
+ 2420         try {
+ 2421             f = telephony.getDeviceId();                                                                     
+ 2422         } catch (SecurityException ex) {
+ 2423             Log.e("getDevDeviceID", ex.getMessage());
+ 2424         }
+
+ +
+ +
+
+ + HardwareIds + + + Security + + + Warning + + + Priority 6/10 + +
+
+
+
+
+
+
+
+
+

AllowBackup/FullBackupContent Problems

+
+
+
+
+../../AndroidManifest.xml:39: On SDK version 23 and up, your app data will be automatically backed up and restored on app install. Consider adding the attribute android:fullBackupContent to specify an @xml resource which configures which files to backup. More info: https://developer.android.com/training/backup/autosyncapi.html
+ 36   <uses-feature android:name="android.hardware.sensor.stepcounter" android:required="false"/>
+ 37   <uses-feature android:name="android.hardware.sensor.stepdetector" android:required="false"/>
+ 38   <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true"/>
+ 39   <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" android:networkSecurityConfig="@xml/network_security_config">
+ 40     <activity android:name="org.muctec.smartfritz.App" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden|screenSize|screenLayout|fontScale" android:launchMode="standard" android:enabled="true">
+ 41       <intent-filter>
+ 42         <action android:name="android.intent.action.MAIN"/>
+
+ +
+ +
+
+ + AllowBackup + + + Security + + + Warning + + + Priority 3/10 + +
+
+
+
+
+
+ + +
+
+
+

Using wakeLock without timeout

+
+
+
+
+../../src/org/muctec/smartfritz/jHttpClient.java:1193: Provide a timeout when requesting a wakelock with PowerManager.Wakelock.acquire(long timeout). This will ensure the OS will cleanup any wakelocks that last longer than you intend, and will save your user's battery.
+ 1190          super.onPreExecute();
+ 1191          PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
+ 1192          mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, getClass().getName());
+ 1193          mWakeLock.acquire();                                                                    
+ 1194      }
+ 1195 
+ 1196      @Override
+ +
+ +
+
+ + WakelockTimeout + + + Performance + + + Warning + + + Priority 9/10 + +
+
+
+
+
+
+
+
+
+

Obsolete SDK_INT Version Check

+
+
+
+
+../../res/values-v11: This folder configuration (v11) is unnecessary; minSdkVersion is 14. Merge all the resources in this folder into values.
+../../res/values-v14: This folder configuration (v14) is unnecessary; minSdkVersion is 14. Merge all the resources in this folder into values.
+
+ +
+
+ + ObsoleteSdkInt + + + Performance + + + Warning + + + Priority 6/10 + +
+
+
+
+
+
+
+
+
+

Static Field Leaks

+
+
+
+
+../../src/org/muctec/smartfritz/jHttpClient.java:990: This AsyncTask class should be static or leaks might occur (org.muctec.smartfritz.jHttpClient.AsyncHttpClientPostNameValueData)
+  987        Result: This is the type that doInBackground returns.
+  988      */
+  989 
+  990     class AsyncHttpClientPostNameValueData extends AsyncTask<String, Integer, String> {             
+  991 
+  992         @Override
+  993         protected String doInBackground(String... stringUrl) {
+
+ +../../src/org/muctec/smartfritz/jHttpClient.java:1075: This AsyncTask class should be static or leaks might occur (org.muctec.smartfritz.jHttpClient.AsyncHttpClientGet)
+ 1072         }
+ 1073     }
+ 1074 
+ 1075     class AsyncHttpClientGet extends AsyncTask<String, Integer, String> {                           
+ 1076 
+ 1077         @Override
+ 1078         protected String doInBackground(String... stringUrl) {
+
+ +../../src/org/muctec/smartfritz/jHttpClient.java:1178: This AsyncTask class should be static or leaks might occur (org.muctec.smartfritz.jHttpClient.UploadTask)
+ 1175     // </html>
+ 1176     //
+ 1177 
+ 1178     private class UploadTask extends AsyncTask<String, Integer, String> {                           
+ 1179 
+ 1180         private Context context;
+ 1181         private PowerManager.WakeLock mWakeLock;
+
+ +
+ +
+
+ + StaticFieldLeak + + + Performance + + + Warning + + + Priority 6/10 + +
+
+
+
+
+
+
+
+
+

Unused resources

+
+
+
+
+../../res/layout/activity_app.xml:1: The resource R.layout.activity_app appears to be unused
+  1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"                          
+  2     xmlns:tools="http://schemas.android.com/tools"
+  3     android:layout_width="match_parent"
+  4     android:layout_height="match_parent"
+ +../../res/drawable/bg_material.png: The resource R.drawable.bg_material appears to be unused
+../../res/values/colors.xml:7: The resource R.color.secondary_text appears to be unused
+  4   <color name="primary_light">#C5CAE9</color>
+  5   <color name="accent">#03A9F4</color>
+  6   <color name="primary_text">#212121</color>
+  7   <color name="secondary_text">#727272</color>                                                      
+  8   <color name="icons">#FFFFFF</color>
+  9   <color name="divider">#B6B6B6</color>
+ 10 </resources>
+ +../../res/values/colors.xml:8: The resource R.color.icons appears to be unused
+  5   <color name="accent">#03A9F4</color>
+  6   <color name="primary_text">#212121</color>
+  7   <color name="secondary_text">#727272</color>
+  8   <color name="icons">#FFFFFF</color>                                                               
+  9   <color name="divider">#B6B6B6</color>
+ 10 </resources>
+ +../../res/values/colors.xml:9: The resource R.color.divider appears to be unused
+  6   <color name="primary_text">#212121</color>
+  7   <color name="secondary_text">#727272</color>
+  8   <color name="icons">#FFFFFF</color>
+  9   <color name="divider">#B6B6B6</color>                                                             
+ 10 </resources>
+ + + +
+ +
+
+ + UnusedResources + + + Performance + + + Warning + + + Priority 3/10 + +
+
+
+
+
+
+ + +
+
+
+

Icon density-independent size validation

+
+
+
+
+../../res/drawable-xxhdpi/ic_launcher.png: The image ic_launcher.png varies significantly in its density-independent (dip) size across the various density versions: drawable-hdpi/ic_launcher.png: 48x48 dp (72x72 px), drawable-ldpi/ic_launcher.png: 43x43 dp (32x32 px), drawable-mdpi/ic_launcher.png: 48x48 dp (48x48 px), drawable-xhdpi/ic_launcher.png: 36x36 dp (72x72 px), drawable-xxhdpi/ic_launcher.png: 24x24 dp (72x72 px)
+
    +

    + + +
    + + + + +
    ldpimdpihdpixhdpixxhdpi
    +
    + +
    +
    + + IconDipSize + + + Icons + + + Usability + + + Warning + + + Priority 5/10 + +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    Identical bitmaps across various configurations

    +
    +
    +
    +
    +../../res/drawable-xxhdpi/ic_launcher.png: The ic_launcher.png icon has identical contents in the following configuration folders: drawable-hdpi, drawable-xhdpi, drawable-xxhdpi
    +
      +

      + + +
      + + +
      hdpixhdpixxhdpi
      +
      + +
      +
      + + IconDuplicatesConfig + + + Icons + + + Usability + + + Warning + + + Priority 5/10 + +
      +
      +
      +
      +
      +
      +
      +
      +
      +

      Image defined in density-independent drawable folder

      +
      +
      +
      +
      +../../res/drawable/bg_material.png: Found bitmap drawable res/drawable/bg_material.png in densityless folder
      +
      + +
      +
      + + IconLocation + + + Icons + + + Usability + + + Warning + + + Priority 5/10 + +
      +
      +
      +
      +
      +
      +
      +
      +
      +

      Icon densities validation

      +
      +
      +
      +
      +../../res/drawable-mdpi: Missing the following drawables in drawable-mdpi: ic_call_icon.png, ic_cervantes.png, ic_chevron_left_black_48dp.png, ic_chevron_right_black_48dp.png, ic_don_quixote.png... (11 more)
      +../../res/drawable-xhdpi: Missing the following drawables in drawable-xhdpi: ic_call_icon.png, ic_cervantes.png, ic_don_quixote.png, ic_fritzbox.png, ic_fritzbox_icon.png... (8 more)
      +../../res/drawable-xxhdpi: Missing the following drawables in drawable-xxhdpi: ic_call_icon.png, ic_cervantes.png, ic_chevron_left_black_48dp.png, ic_chevron_right_black_48dp.png, ic_don_quixote.png... (11 more)
      +
      + +
      +
      + + IconDensities + + + Icons + + + Usability + + + Warning + + + Priority 4/10 + +
      +
      +
      +
      +
      +
      + + +
      +
      +
      +

      Missing support for Firebase App Indexing

      +
      +
      +
      +
      +../../AndroidManifest.xml:39: App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent filter. See issue explanation for more details.
      + 36   <uses-feature android:name="android.hardware.sensor.stepcounter" android:required="false"/>
      + 37   <uses-feature android:name="android.hardware.sensor.stepdetector" android:required="false"/>
      + 38   <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true"/>
      + 39   <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" android:networkSecurityConfig="@xml/network_security_config">
      + 40     <activity android:name="org.muctec.smartfritz.App" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden|screenSize|screenLayout|fontScale" android:launchMode="standard" android:enabled="true">
      + 41       <intent-filter>
      + 42         <action android:name="android.intent.action.MAIN"/>
      +
      + +
      + +
      +
      + + GoogleAppIndexingWarning + + + Usability + + + Warning + + + Priority 5/10 + +
      +
      +
      +
      +
      +
      +
      +
      +
      +

      Missing View constructors for XML inflation

      +
      +
      +
      +
      +../../src/org/muctec/smartfritz/jButton.java:24: Custom view jButton is missing constructor used by tools: (Context) or (Context,AttributeSet) or (Context,AttributeSet,int)
      +  21 import android.view.ViewGroup;
      +  22 import android.widget.Button;
      +  23 
      +  24 public class jButton extends Button {                                                               
      +  25 
      +  26     private Controls controls = null;   // Control Class for Event
      +  27     private jCommons LAMWCommon;
      +
      + +../../src/org/muctec/smartfritz/jCheckBox.java:13: Custom view jCheckBox is missing constructor used by tools: (Context) or (Context,AttributeSet) or (Context,AttributeSet,int)
      +  10 import android.widget.CheckBox;
      +  11 import android.view.Gravity;
      +  12 
      +  13 public class jCheckBox extends CheckBox {                                                           
      +  14     //Java-Pascal Interface
      +  15     private long             PasObj   = 0;      // Pascal Obj
      +  16     private Controls        controls = null;   // Control Class for Event
      + +../../src/org/muctec/smartfritz/jEditText.java:42: Custom view jEditText is missing constructor used by tools: (Context) or (Context,AttributeSet) or (Context,AttributeSet,int)
      +  39 
      +  40 //Reviewed by TR3E on 08/20/2019
      +  41 
      +  42 public class jEditText extends EditText {                                                           
      +  43     //Pascal Interface
      +  44     //private long           PasObj   = 0;      // Pascal Obj
      +  45     private Controls      controls = null;   // Control Class for Event
      + +../../src/org/muctec/smartfritz/jExpandableListView.java:411: Custom view jExpandableListView is missing constructor used by tools: (Context) or (Context,AttributeSet) or (Context,AttributeSet,int)
      + 408 /*https://github.com/jmpessoa/lazandroidmodulewizard*/
      + 409 /*jVisualControl LAMW template*/
      + 410  
      + 411 public class jExpandableListView extends ExpandableListView /*dummy*/ { //please, fix what GUI object will be extended!
      + 412 
      + 413    private long pascalObj = 0;        // Pascal Object
      + 414    private Controls controls  = null; //Java/Pascal [events] Interface ...
      + +../../src/org/muctec/smartfritz/jPanel.java:23: Custom view jPanel is missing constructor used by tools: (Context) or (Context,AttributeSet) or (Context,AttributeSet,int)
      +  20 import android.view.animation.TranslateAnimation;
      +  21 import android.widget.RelativeLayout;
      +  22 
      +  23 public class jPanel extends RelativeLayout {                                                        
      +  24     //Java-Pascal Interface
      +  25     private long             PasObj   = 0;      // Pascal Obj
      +  26     private Controls        controls = null;   // Control Class for Event
      + + + +
      + +
      +
      + + ViewConstructor + + + Usability + + + Warning + + + Priority 3/10 + +
      +
      +
      +
      +
      +
      + + +
      +
      +
      +

      Accessibility in Custom Views

      +
      +
      +
      +
      +../../src/org/muctec/smartfritz/jPanel.java:135: Custom view jPanel overrides onTouchEvent but not performClick
      + 132     }
      + 133 
      + 134     @Override
      + 135     public boolean onTouchEvent(MotionEvent event) {                                                   
      + 136         return super.onTouchEvent(event);
      + 137     }
      +
      + +
      + +
      +
      + + ClickableViewAccessibility + + + Accessibility + + + Warning + + + Priority 6/10 + +
      +
      +
      +
      +
      +
      + +
      +
      +
      +

      Disabled Checks

      +
      +
      +One or more issues were not run by lint, either +because the check is not enabled by default, or because +it was disabled with a command line flag or via one or +more lint.xml configuration files in the project directories. +
      +
      +
      +
      +
      + +
      +
      +
      +

      Suppressing Warnings and Errors

      +
      +
      +Lint errors can be suppressed in a variety of ways:
      +
      +1. With a @SuppressLint annotation in the Java code
      +2. With a tools:ignore attribute in the XML file
      +3. With a //noinspection comment in the source code
      +4. With ignore flags specified in the build.gradle file, as explained below
      +5. With a lint.xml configuration file in the project
      +6. With a lint.xml configuration file passed to lint via the --config flag
      +7. With the --ignore flag passed to lint.
      +
      +To suppress a lint warning with an annotation, add a @SuppressLint("id") annotation on the class, method or variable declaration closest to the warning instance you want to disable. The id can be one or more issue id's, such as "UnusedResources" or {"UnusedResources","UnusedIds"}, or it can be "all" to suppress all lint warnings in the given scope.
      +
      +To suppress a lint warning with a comment, add a //noinspection id comment on the line before the statement with the error.
      +
      +To suppress a lint warning in an XML file, add a tools:ignore="id" attribute on the element containing the error, or one of its surrounding elements. You also need to define the namespace for the tools prefix on the root element in your document, next to the xmlns:android declaration:
      +xmlns:tools="http://schemas.android.com/tools"
      +
      +To suppress a lint warning in a build.gradle file, add a section like this:
      +
      +android {
      +    lintOptions {
      +        disable 'TypographyFractions','TypographyQuotes'
      +    }
      +}
      +
      +Here we specify a comma separated list of issue id's after the disable command. You can also use warning or error instead of disable to change the severity of issues.
      +
      +To suppress lint warnings with a configuration XML file, create a file named lint.xml and place it at the root directory of the module in which it applies.
      +
      +The format of the lint.xml file is something like the following:
      +
      +<?xml version="1.0" encoding="UTF-8"?>
      +<lint>
      +    <!-- Ignore everything in the test source set -->
      +    <issue id="all">
      +        <ignore path="*/test/*" />
      +    </issue>
      +
      +    <!-- Disable this given check in this project -->
      +    <issue id="IconMissingDensityFolder" severity="ignore" />
      +
      +    <!-- Ignore the ObsoleteLayoutParam issue in the given files -->
      +    <issue id="ObsoleteLayoutParam">
      +        <ignore path="res/layout/activation.xml" />
      +        <ignore path="res/layout-xlarge/activation.xml" />
      +        <ignore regexp="(foo|bar).java" />
      +    </issue>
      +
      +    <!-- Ignore the UselessLeaf issue in the given file -->
      +    <issue id="UselessLeaf">
      +        <ignore path="res/layout/main.xml" />
      +    </issue>
      +
      +    <!-- Change the severity of hardcoded strings to "error" -->
      +    <issue id="HardcodedText" severity="error" />
      +</lint>
      +
      +To suppress lint checks from the command line, pass the --ignore flag with a comma separated list of ids to be suppressed, such as:
      +$ lint --ignore UnusedResources,UselessLeaf /my/project/path
      +
      +For more information, see http://g.co/androidstudio/suppressing-lint-warnings
      + +
      +
      +
      +
      +
      + + \ No newline at end of file diff --git a/SmartFritz/build/reports/lint-results.xml b/SmartFritz/build/reports/lint-results.xml new file mode 100644 index 0000000000000000000000000000000000000000..6c2185e22b2be77d952ae8a9e90b79572d90a59c --- /dev/null +++ b/SmartFritz/build/reports/lint-results.xml @@ -0,0 +1,1202 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SmartFritz/gradle-local-apksigner.bat b/SmartFritz/gradle-local-apksigner.bat new file mode 100644 index 0000000000000000000000000000000000000000..67c6dd83032413f268ed6e5e808816e11a63db52 --- /dev/null +++ b/SmartFritz/gradle-local-apksigner.bat @@ -0,0 +1,5 @@ +set Path=%PATH%;/home/te/Android/Sdk/platform-tools;/home/te/Android/Sdk/build-tools\29.0.3 +set GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +set PATH=%PATH%;%GRADLE_HOME%\bin +zipalign -v -p 4 /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz\build\outputs\apk\release\SmartFritz-release-unsigned.apk /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz\build\outputs\apk\release\SmartFritz-release-unsigned-aligned.apk +apksigner sign --ks smartfritz-release.keystore --out /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz\build\outputs\apk\release\SmartFritz-release.apk /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz\build\outputs\apk\release\SmartFritz-release-unsigned-aligned.apk diff --git a/SmartFritz/gradle-local-apksigner.sh b/SmartFritz/gradle-local-apksigner.sh new file mode 100755 index 0000000000000000000000000000000000000000..a2f39e67d08cdd5148d21c9c198823dc841609c5 --- /dev/null +++ b/SmartFritz/gradle-local-apksigner.sh @@ -0,0 +1,6 @@ +export PATH=/home/te/Android/Sdk/platform-tools:$PATH +export PATH=/home/te/Android/Sdk/build-tools/29.0.3:$PATH +export GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +export PATH=$PATH:$GRADLE_HOME/bin +zipalign -v -p 4 /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/outputs/apk/release/SmartFritz-release-unsigned.apk /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/outputs/apk/release/SmartFritz-release-unsigned-aligned.apk +apksigner sign --ks smartfritz-release.keystore --out /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/outputs/apk/release/SmartFritz-release.apk /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/outputs/apk/release/SmartFritz-release-unsigned-aligned.apk diff --git a/SmartFritz/gradle-local-build.bat b/SmartFritz/gradle-local-build.bat new file mode 100644 index 0000000000000000000000000000000000000000..57ae3a4bb680842a996663d0f2a504fab157b389 --- /dev/null +++ b/SmartFritz/gradle-local-build.bat @@ -0,0 +1,4 @@ +set Path=%PATH%;/home/te/Android/Sdk/platform-tools +set GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1/ +set PATH=%PATH%;%GRADLE_HOME%\bin +gradle clean build --info diff --git a/SmartFritz/gradle-local-build.sh b/SmartFritz/gradle-local-build.sh new file mode 100755 index 0000000000000000000000000000000000000000..f4a0321b8f6c01b22646df3387cb91e8b978c55e --- /dev/null +++ b/SmartFritz/gradle-local-build.sh @@ -0,0 +1,5 @@ +export PATH=/home/te/Android/Sdk/platform-tools:$PATH +export GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1/ +export PATH=$PATH:$GRADLE_HOME/bin +source ~/.bashrc +gradle clean build --info diff --git a/SmartFritz/gradle-local-run.bat b/SmartFritz/gradle-local-run.bat new file mode 100644 index 0000000000000000000000000000000000000000..f2d1f3cdf22787ef6108d67f9f87f77b413d23c5 --- /dev/null +++ b/SmartFritz/gradle-local-run.bat @@ -0,0 +1,4 @@ +set Path=%PATH%;/home/te/Android/Sdk/platform-tools +set GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1/ +set PATH=%PATH%;%GRADLE_HOME%\bin +gradle run diff --git a/SmartFritz/gradle-local-run.sh b/SmartFritz/gradle-local-run.sh new file mode 100755 index 0000000000000000000000000000000000000000..e3d3ba09909b240de5c0a09b1cf12a2973b08dd2 --- /dev/null +++ b/SmartFritz/gradle-local-run.sh @@ -0,0 +1,5 @@ +export PATH=/home/te/Android/Sdk/platform-tools:$PATH +export GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1/ +export PATH=$PATH:$GRADLE_HOME/bin +source ~/.bashrc +gradle run diff --git a/SmartFritz/gradle-local-universal-apksigner.bat b/SmartFritz/gradle-local-universal-apksigner.bat new file mode 100644 index 0000000000000000000000000000000000000000..d19ff3c616b63adbba59cb0bfa8bb198a0ce2a3c --- /dev/null +++ b/SmartFritz/gradle-local-universal-apksigner.bat @@ -0,0 +1,5 @@ +set Path=%PATH%;/home/te/Android/Sdk/platform-tools;/home/te/Android/Sdk/build-tools\29.0.3 +set GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +set PATH=%PATH%;%GRADLE_HOME%\bin +zipalign -v -p 4 /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz\build\outputs\apk\release\SmartFritz-universal-release-unsigned.apk /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz\build\outputs\apk\release\SmartFritz-universal-release-unsigned-aligned.apk +apksigner sign --ks smartfritz-release.keystore --out /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz\build\outputs\apk\release\SmartFritz-release.apk /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz\build\outputs\apk\release\SmartFritz-universal-release-unsigned-aligned.apk diff --git a/SmartFritz/gradle-local-universal-apksigner.sh b/SmartFritz/gradle-local-universal-apksigner.sh new file mode 100755 index 0000000000000000000000000000000000000000..25fba133a8074413e5f2bab8192ff6965835dbf5 --- /dev/null +++ b/SmartFritz/gradle-local-universal-apksigner.sh @@ -0,0 +1,6 @@ +export PATH=/home/te/Android/Sdk/platform-tools:$PATH +export PATH=/home/te/Android/Sdk/build-tools/29.0.3:$PATH +export GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +export PATH=$PATH:$GRADLE_HOME/bin +zipalign -v -p 4 /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/outputs/apk/release/SmartFritz-universal-release-unsigned.apk /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/outputs/apk/release/SmartFritz-universal-release-unsigned-aligned.apk +apksigner sign --ks smartfritz-release.keystore --out /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/outputs/apk/release/SmartFritz-release.apk /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/build/outputs/apk/release/SmartFritz-universal-release-unsigned-aligned.apk diff --git a/SmartFritz/gradle-making-wrapper.bat b/SmartFritz/gradle-making-wrapper.bat new file mode 100644 index 0000000000000000000000000000000000000000..245a6fc1650e0ebd2e0b5112f809e9ea2b943451 --- /dev/null +++ b/SmartFritz/gradle-making-wrapper.bat @@ -0,0 +1,4 @@ +set Path=%PATH%;/home/te/Android/Sdk/platform-tools +set GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +set PATH=%PATH%;%GRADLE_HOME%\bin +gradle wrapper diff --git a/SmartFritz/gradle-making-wrapper.sh b/SmartFritz/gradle-making-wrapper.sh new file mode 100755 index 0000000000000000000000000000000000000000..743d60218f0c59bf9aaa845d08bf0666c65228a5 --- /dev/null +++ b/SmartFritz/gradle-making-wrapper.sh @@ -0,0 +1,5 @@ +export PATH=/home/te/Android/Sdk/platform-tools:$PATH +export GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +export PATH=$PATH:$GRADLE_HOME/bin +source ~/.bashrc +gradle wrapper diff --git a/SmartFritz/gradle.properties b/SmartFritz/gradle.properties new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/SmartFritz/gradle_readme.txt b/SmartFritz/gradle_readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..48b514ce9630abefe5f4e990c8fef35d04d9387d --- /dev/null +++ b/SmartFritz/gradle_readme.txt @@ -0,0 +1,153 @@ + + +HOW TO use "gradle.build" file + + ::by jmpessoa + +references: + http://spring.io/guides/gs/gradle-android/ + https://paulemtz.blogspot.com.br/2013/04/automating-android-builds-with-gradle.html + + WARNING: you will need INTERNET CONNECTION!! + +***SYSTEM INFRASTRUCTURE + +(1) Look for the highest "...\sdk\build-tools" version + The table point out gradle and "sdk\build-tools" versions compatibility + + plugin [in classpath] gradle sdk\build-tools + 2.0.0 2.10 21.1.2 + 2.2.0 2.14.1 23.0.2 + 2.3.3 3.3 25.0.3 + 3.0.1 4.1 26.0.2 + + Note 1. You can interpolate to some value other than these. + Ex. If in your system the highest "sdk\build-tools" is "22.0.1", so downloaded/Installed gradle 2.1.0, etc.. + + Note 2. In "build.gradle" file, the gradle version is set to be compatible with the highest "sdk\build-tools" found in your system + as a consequence, it is this version of gradle that you must download/install. + + reference: + https://developer.android.com/studio/releases/gradle-plugin.html#2-3-0 + https://gradle.org/releases/ + Hint: downloading just "binary-only" is OK! + + Note 3. You should set the gradle path in Lazarus menu "Tools --> LAMW --> Paths Settings..." + + Note 4. If your connection has a proxy, edit the "gradle.properties" file content. Example: + + systemProp.http.proxyHost=10.0.16.1 + systemProp.http.proxyPort=3128 + systemProp.https.proxyHost=10.0.16.1 + systemProp.https.proxyPort=3128 + + Note 5. Java Jdk 1.8, Android SDK "platform" 26 [or up], "build-tools" 26.0.2, Android SDK Extra "support library/repository" and "Gradle 4.4.1" are "must have" to support AppCompat material theme in LAMW 0.8.4 + + +***SETTING ENVIRONMENT VARIABLES... + +[windows] cmd line prompt: +set Path=%PATH%;/home/te/Android/Sdk/platform-tools +set GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +set PATH=%PATH%;%GRADLE_HOME%\bin + +[linux] cmd line prompt: +export PATH=/home/te/Android/Sdk/platform-tools:$PATH +export GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +export PATH=$PATH:$GRADLE_HOME/bin +source ~/.bashrc + +WARNING: The following tasks assume that you have: + .Internet connection; + .Set the environment variables; + .Installed gradle version compatible with your highest "sdk\build-tools" + +***BUILDING AND RUNNING APK .... + +.METHOD - I. + Running installed local version of gradle + + ::Go to your project folder.... + +[windows] cmd line prompt: +set Path=%PATH%;/home/te/Android/Sdk/platform-tools +set GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +set PATH=%PATH%;%GRADLE_HOME%\bin + +[windows] cmd line prompt: +gradle clean build --info +gradle run + + +[linux] cmd line prompt: +export PATH=/home/te/Android/Sdk/platform-tools:$PATH +export GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +export PATH=$PATH:$GRADLE_HOME/bin +source ~/.bashrc + +[linux] cmd line prompt: +gradle clean build --info +gradle run + +Congratulation! + + :: Where is my Apk? here: "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz\build\outputs\apk"! + IMPORTANT: You need to sign your [release] apk for "Google Play" store! + Please, read the "How_To_Get_Your_Signed_Release_Apk.txt" + +hint: you can try edit and run: +[windows] "gradle-local-build.bat" +[linux] "gradle-local-build.sh" +[windows] "gradle-local-run.bat" +[linux] "gradle-local-run.sh" + + +.METHOD - II. + +(1) Making "gradlew" (gradle wrapper) available for building your project + ::Go to your project folder.... + +[windows] cmd line prompt: +gradle wrapper + +[linux] cmd line prompt: +./gradle wrapper + +hint: you can try edit and run: +[windows] "gradle-making-wrapper.bat" +[linux] "gradle-making-wrapper.sh" + +(2) Building your project with "gradlew" [gradle wrapper] + +[windows] cmd line prompt: +gradlew build + +[linux] cmd line prompt: +./gradlew build + +hint: you can try edit and "build" with gradle wrapper: + [windows] "gradlew-build.bat" + [linux] "gradlew-build.sh" + +(3) Installing and Runing Apk + +[windows] cmd line prompt: +gradlew install + +[linux] cmd line prompt: +./gradlew run + +Congratulation! + +hint: where is my Apk? here: "/home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz\build\outputs\apk" + +hint: you can try edit and "run" with gradle wrapper: + [windows] "gradlew-run.bat" + [linux] "gradlew-run.sh" + + +hint: how can I produce a signed release Apk? read "How_To_Get_Your_Signed_Release_Apk.txt + +Thanks to All! + +by jmpessoa_hotmail_com diff --git a/SmartFritz/gradlew-build.bat b/SmartFritz/gradlew-build.bat new file mode 100644 index 0000000000000000000000000000000000000000..30df3e4456e97d780f932fe02bc9ebcef30f42c6 --- /dev/null +++ b/SmartFritz/gradlew-build.bat @@ -0,0 +1,4 @@ +set Path=%PATH%;/home/te/Android/Sdk/platform-tools +set GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +set PATH=%PATH%;%GRADLE_HOME%\bin +gradlew build diff --git a/SmartFritz/gradlew-build.sh b/SmartFritz/gradlew-build.sh new file mode 100755 index 0000000000000000000000000000000000000000..32e19c7c2c07f21c85ed9ea682de70007b41fae9 --- /dev/null +++ b/SmartFritz/gradlew-build.sh @@ -0,0 +1,5 @@ +export PATH=/home/te/Android/Sdk/platform-tools:$PATH +export GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +export PATH=$PATH:$GRADLE_HOME/bin +source ~/.bashrc +gradlew build diff --git a/SmartFritz/gradlew-run.bat b/SmartFritz/gradlew-run.bat new file mode 100644 index 0000000000000000000000000000000000000000..3aff30e8b7beb6761653abcb6b35090e961e6ca8 --- /dev/null +++ b/SmartFritz/gradlew-run.bat @@ -0,0 +1,4 @@ +set Path=%PATH%;/home/te/Android/Sdk/platform-tools +set GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +set PATH=%PATH%;%GRADLE_HOME%\bin +gradlew run diff --git a/SmartFritz/gradlew-run.sh b/SmartFritz/gradlew-run.sh new file mode 100755 index 0000000000000000000000000000000000000000..61ed4f1996cb82a1c3defa32a08325527f2321ef --- /dev/null +++ b/SmartFritz/gradlew-run.sh @@ -0,0 +1,5 @@ +export PATH=/home/te/Android/Sdk/platform-tools:$PATH +export GRADLE_HOME=/home/te/fpcupdeluxe/ccr/lamw-gradle/gradle-6.2.1 +export PATH=$PATH:$GRADLE_HOME/bin +source ~/.bashrc +gradlew run diff --git a/SmartFritz/jarsigner-verify-macos.sh b/SmartFritz/jarsigner-verify-macos.sh new file mode 100755 index 0000000000000000000000000000000000000000..22fa1047cc43693588133a62738bb002b4b0dbd9 --- /dev/null +++ b/SmartFritz/jarsigner-verify-macos.sh @@ -0,0 +1,4 @@ +export JAVA_HOME=${/usr/libexec/java_home} +export PATH=${JAVA_HOME}/bin:$PATH +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz +jarsigner -verify -verbose -certs /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/bin/SmartFritz-release.apk diff --git a/SmartFritz/jarsigner-verify.bat b/SmartFritz/jarsigner-verify.bat new file mode 100644 index 0000000000000000000000000000000000000000..e59a2059b647205052514003a9b8c39814312f62 --- /dev/null +++ b/SmartFritz/jarsigner-verify.bat @@ -0,0 +1,4 @@ +set JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 +path %JAVA_HOME%/bin;%path% +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz +jarsigner -verify -verbose -certs /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/bin/SmartFritz-release.apk diff --git a/SmartFritz/jarsigner-verify.sh b/SmartFritz/jarsigner-verify.sh new file mode 100755 index 0000000000000000000000000000000000000000..ca3805f911575a64b771e29e4cfb53479fe57c0b --- /dev/null +++ b/SmartFritz/jarsigner-verify.sh @@ -0,0 +1,3 @@ +export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz +jarsigner -verify -verbose -certs /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/bin/SmartFritz-release.apk diff --git a/SmartFritz/jni/build-modes/build_arm64.txt b/SmartFritz/jni/build-modes/build_arm64.txt new file mode 100644 index 0000000000000000000000000000000000000000..30a1b446bf8e80a531f59bbbf49355bc7683d257 --- /dev/null +++ b/SmartFritz/jni/build-modes/build_arm64.txt @@ -0,0 +1,3 @@ + + + diff --git a/SmartFritz/jni/build-modes/build_armV6.txt b/SmartFritz/jni/build-modes/build_armV6.txt new file mode 100644 index 0000000000000000000000000000000000000000..520c45bc46b3d1197ced37c0d634cabe49ddac92 --- /dev/null +++ b/SmartFritz/jni/build-modes/build_armV6.txt @@ -0,0 +1,3 @@ + + + diff --git a/SmartFritz/jni/build-modes/build_armV7a.txt b/SmartFritz/jni/build-modes/build_armV7a.txt new file mode 100644 index 0000000000000000000000000000000000000000..51ea9848b248de613b751d51eee89ca96b5354ef --- /dev/null +++ b/SmartFritz/jni/build-modes/build_armV7a.txt @@ -0,0 +1,3 @@ + + + diff --git a/SmartFritz/jni/build-modes/build_armV7a_VFPv3.txt b/SmartFritz/jni/build-modes/build_armV7a_VFPv3.txt new file mode 100644 index 0000000000000000000000000000000000000000..5290e4d3907af636e2323639d213f15c780b117b --- /dev/null +++ b/SmartFritz/jni/build-modes/build_armV7a_VFPv3.txt @@ -0,0 +1,3 @@ + + + diff --git a/SmartFritz/jni/build-modes/build_mipsel.txt b/SmartFritz/jni/build-modes/build_mipsel.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e1c9691109ea0d9a642e2818bda4987de2babc8 --- /dev/null +++ b/SmartFritz/jni/build-modes/build_mipsel.txt @@ -0,0 +1,3 @@ + + + diff --git a/SmartFritz/jni/build-modes/build_x86.txt b/SmartFritz/jni/build-modes/build_x86.txt new file mode 100644 index 0000000000000000000000000000000000000000..23845491ec44fb41dd610aa6b62bd1531b1d2f73 --- /dev/null +++ b/SmartFritz/jni/build-modes/build_x86.txt @@ -0,0 +1,3 @@ + + + diff --git a/SmartFritz/jni/build-modes/build_x86_64.txt b/SmartFritz/jni/build-modes/build_x86_64.txt new file mode 100644 index 0000000000000000000000000000000000000000..07b0fb05aa385489348267ad446751e3be12b4a7 --- /dev/null +++ b/SmartFritz/jni/build-modes/build_x86_64.txt @@ -0,0 +1,3 @@ + + + diff --git a/SmartFritz/jni/build-modes/readme.txt b/SmartFritz/jni/build-modes/readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..a878c902dc0ae973f5d766a94897b0a37e2cf8bd --- /dev/null +++ b/SmartFritz/jni/build-modes/readme.txt @@ -0,0 +1,17 @@ +How to get more ".so" chipset builds: + + :: Warning 1: Your Lazarus/Freepascal needs to be prepared [cross-compile] for the various chipset builds! + :: Warning 2: Laz4Android [out-of-box] support only 32 Bits chipset: "armV6", "armV7a+Soft", "x86"! + +1. From LazarusIDE menu: + + > Project -> Project Options -> Project Options -> [LAMW] Android Project Options -> "Build" -> Chipset [select!] -> [OK] + +2. From LazarusIDE menu: + + > Run -> Clean up and Build... + +3. From LazarusIDE menu: + + > [LAMW] Build Android Apk and Run + diff --git a/SmartFritz/jni/controls.lpi b/SmartFritz/jni/controls.lpi new file mode 100644 index 0000000000000000000000000000000000000000..f00442f7a7e5c1d869f408ab75a112a537502aac --- /dev/null +++ b/SmartFritz/jni/controls.lpi @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + <UseAppBundle Value="False"/> + <ResourceType Value="res"/> + </General> + <CustomData Count="10"> + <Item0 Name="BuildSystem" Value="Gradle"/> + <Item1 Name="LAMW" Value="GUI"/> + <Item2 Name="LamwVersion" Value="0.8.5"/> + <Item3 Name="NdkApi" Value="android-22"/> + <Item4 Name="NdkPath" Value="/home/te/Android/Sdk/ndk/21.2.6472646/"/> + <Item5 Name="Package" Value="org.muctec.smartfritz"/> + <Item6 Name="SdkPath" Value="/home/te/Android/Sdk/"/> + <Item7 Name="StartModule" Value="AndroidModule1"/> + <Item8 Name="Support" Value="FALSE"/> + <Item9 Name="Theme" Value="AppCompat.Light.NoActionBar"/> + </CustomData> + <BuildModes Count="1"> + <Item1 Name="Default" Default="True"/> + </BuildModes> + <PublishOptions> + <Version Value="2"/> + <UseFileFilters Value="True"/> + </PublishOptions> + <RunParams> + <FormatVersion Value="2"/> + </RunParams> + <RequiredPackages Count="2"> + <Item1> + <PackageName Value="HashLib4PascalPackage"/> + </Item1> + <Item2> + <PackageName Value="tfpandroidbridge_pack"/> + </Item2> + </RequiredPackages> + <Units Count="7"> + <Unit0> + <Filename Value="controls.lpr"/> + <IsPartOfProject Value="True"/> + </Unit0> + <Unit1> + <Filename Value="unit1.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="AndroidModule1"/> + <HasResources Value="True"/> + <CustomData Count="2"> + <Item0 Name="fclControls"/> + <Item1 Name="jControls" Value="jForm;jHttpClient;jPanel;jPreferences;jsBottomNavigationView;jsDrawerLayout;jsFloatingButton;jsNavigationView;jsToolbar;jSwitchButton;jTextView"/> + </CustomData> + </Unit1> + <Unit2> + <Filename Value="unit2.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="AndroidModule2"/> + <HasResources Value="True"/> + <CustomData Count="2"> + <Item0 Name="fclControls"/> + <Item1 Name="jControls" Value="jButton;jCheckBox;jEditText;jForm;jPanel;jTextView"/> + </CustomData> + </Unit2> + <Unit3> + <Filename Value="unit3.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="AndroidModule3"/> + <HasResources Value="True"/> + <CustomData Count="2"> + <Item0 Name="fclControls"/> + <Item1 Name="jControls" Value="jEditText;jForm;jPanel;jTextView"/> + </CustomData> + </Unit3> + <Unit4> + <Filename Value="unit4.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="AndroidModule4"/> + <HasResources Value="True"/> + <CustomData Count="2"> + <Item0 Name="fclControls"/> + <Item1 Name="jControls" Value="jExpandableListView;jForm;jPanel;jTextView"/> + </CustomData> + </Unit4> + <Unit5> + <Filename Value="unit5.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="AndroidModule5"/> + <HasResources Value="True"/> + <CustomData Count="2"> + <Item0 Name="fclControls"/> + <Item1 Name="jControls" Value="jButton;jEditText;jForm;jPanel;jTextView"/> + </CustomData> + </Unit5> + <Unit6> + <Filename Value="fritzbox.pas"/> + <IsPartOfProject Value="True"/> + </Unit6> + </Units> + </ProjectOptions> + <CompilerOptions> + <Version Value="11"/> + <Target> + <Filename Value="../libs/armeabi-v7a/libcontrols"/> + </Target> + <SearchPaths> + <Libraries Value="/home/te/Android/Sdk/ndk/21.2.6472646/platforms/android-22/arch-arm/usr/lib/;/home/te/Android/Sdk/ndk/21.2.6472646/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/lib/gcc/arm-linux-androideabi/4.9.x/"/> + <UnitOutputDirectory Value="../obj/controls"/> + </SearchPaths> + <Parsing> + <SyntaxOptions> + <SyntaxMode Value="Delphi"/> + <CStyleMacros Value="True"/> + </SyntaxOptions> + </Parsing> + <CodeGeneration> + <SmartLinkUnit Value="True"/> + <TargetCPU Value="arm"/> + <TargetOS Value="android"/> + <Optimizations> + <OptimizationLevel Value="3"/> + </Optimizations> + <SmallerCode Value="True"/> + </CodeGeneration> + <Linking> + <Debugging> + <GenerateDebugInfo Value="False"/> + <StripSymbols Value="True"/> + </Debugging> + <LinkSmart Value="True"/> + <Options> + <ExecutableType Value="Library"/> + </Options> + </Linking> + <Other> + <CustomOptions Value="-Xd -CfVFPv3 -CpARMV7A -XParm-linux-androideabi- -FD/home/te/Android/Sdk/ndk/21.2.6472646/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin"/> + </Other> + </CompilerOptions> + <Debugging> + <Exceptions Count="3"> + <Item1> + <Name Value="EAbort"/> + </Item1> + <Item2> + <Name Value="ECodetoolError"/> + </Item2> + <Item3> + <Name Value="EFOpenError"/> + </Item3> + </Exceptions> + </Debugging> +</CONFIG> diff --git a/SmartFritz/jni/controls.lpr b/SmartFritz/jni/controls.lpr new file mode 100644 index 0000000000000000000000000000000000000000..db0698355a7ed172a197c61a6acb6220330e83ea --- /dev/null +++ b/SmartFritz/jni/controls.lpr @@ -0,0 +1,790 @@ +{hint: save all files to location: /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/jni/ } +library controls; //[by LAMW: Lazarus Android Module Wizard: 04.06.2020 20:37:12] + +{$mode delphi} + +uses + Classes, SysUtils, And_jni, And_jni_Bridge, AndroidWidget, Laz_And_Controls, + Laz_And_Controls_Events, unit1, fritzbox; + +{%region /fold 'LAMW generated code'} + +{ Class: org_muctec_smartfritz_Controls + Method: pOnClickBottomNavigationViewItem + Signature: (JILjava/lang/String;)V } +procedure pOnClickBottomNavigationViewItem(PEnv: PJNIEnv; this: JObject; + pasobj: JLong; itemId: JInt; itemCaption: JString); cdecl; +begin + Java_Event_pOnClickBottomNavigationViewItem(PEnv, this, TObject(pasobj), + itemId, itemCaption); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnCreate + Signature: (Landroid/content/Context;Landroid/widget/RelativeLayout;Landroid/content/Intent;)V } +procedure pAppOnCreate(PEnv: PJNIEnv; this: JObject; context: JObject; + layout: JObject; intent: JObject); cdecl; +begin + Java_Event_pAppOnCreate(PEnv, this, context, layout, intent); + AndroidModule1.ReInit(gApp); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnScreenStyle + Signature: ()I } +function pAppOnScreenStyle(PEnv: PJNIEnv; this: JObject): JInt; cdecl; +begin + Result:=Java_Event_pAppOnScreenStyle(PEnv, this); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnNewIntent + Signature: (Landroid/content/Intent;)V } +procedure pAppOnNewIntent(PEnv: PJNIEnv; this: JObject; intent: JObject); cdecl; +begin + Java_Event_pAppOnNewIntent(PEnv, this, intent); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnDestroy + Signature: ()V } +procedure pAppOnDestroy(PEnv: PJNIEnv; this: JObject); cdecl; +begin + Java_Event_pAppOnDestroy(PEnv, this); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnPause + Signature: ()V } +procedure pAppOnPause(PEnv: PJNIEnv; this: JObject); cdecl; +begin + Java_Event_pAppOnPause(PEnv, this); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnRestart + Signature: ()V } +procedure pAppOnRestart(PEnv: PJNIEnv; this: JObject); cdecl; +begin + Java_Event_pAppOnRestart(PEnv, this); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnResume + Signature: ()V } +procedure pAppOnResume(PEnv: PJNIEnv; this: JObject); cdecl; +begin + Java_Event_pAppOnResume(PEnv, this); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnStart + Signature: ()V } +procedure pAppOnStart(PEnv: PJNIEnv; this: JObject); cdecl; +begin + Java_Event_pAppOnStart(PEnv, this); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnStop + Signature: ()V } +procedure pAppOnStop(PEnv: PJNIEnv; this: JObject); cdecl; +begin + Java_Event_pAppOnStop(PEnv, this); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnBackPressed + Signature: ()V } +procedure pAppOnBackPressed(PEnv: PJNIEnv; this: JObject); cdecl; +begin + Java_Event_pAppOnBackPressed(PEnv, this); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnRotate + Signature: (I)I } +function pAppOnRotate(PEnv: PJNIEnv; this: JObject; rotate: JInt): JInt; cdecl; +begin + Result:=Java_Event_pAppOnRotate(PEnv, this, rotate); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnUpdateLayout + Signature: ()V } +procedure pAppOnUpdateLayout(PEnv: PJNIEnv; this: JObject); cdecl; +begin + Java_Event_pAppOnUpdateLayout(PEnv, this); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnConfigurationChanged + Signature: ()V } +procedure pAppOnConfigurationChanged(PEnv: PJNIEnv; this: JObject); cdecl; +begin + Java_Event_pAppOnConfigurationChanged(PEnv, this); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnActivityResult + Signature: (IILandroid/content/Intent;)V } +procedure pAppOnActivityResult(PEnv: PJNIEnv; this: JObject; requestCode: JInt; + resultCode: JInt; data: JObject); cdecl; +begin + Java_Event_pAppOnActivityResult(PEnv, this, requestCode, resultCode, data); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnCreateOptionsMenu + Signature: (Landroid/view/Menu;)V } +procedure pAppOnCreateOptionsMenu(PEnv: PJNIEnv; this: JObject; menu: JObject); + cdecl; +begin + Java_Event_pAppOnCreateOptionsMenu(PEnv, this, menu); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnClickOptionMenuItem + Signature: (Landroid/view/MenuItem;ILjava/lang/String;Z)V } +procedure pAppOnClickOptionMenuItem(PEnv: PJNIEnv; this: JObject; + menuItem: JObject; itemID: JInt; itemCaption: JString; checked: JBoolean); + cdecl; +begin + Java_Event_pAppOnClickOptionMenuItem(PEnv, this, menuItem, itemID, + itemCaption, checked); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnPrepareOptionsMenu + Signature: (Landroid/view/Menu;I)Z } +function pAppOnPrepareOptionsMenu(PEnv: PJNIEnv; this: JObject; menu: JObject; + menuSize: JInt): JBoolean; cdecl; +begin + Result:=Java_Event_pAppOnPrepareOptionsMenu(PEnv, this, menu, menuSize); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnPrepareOptionsMenuItem + Signature: (Landroid/view/Menu;Landroid/view/MenuItem;I)Z } +function pAppOnPrepareOptionsMenuItem(PEnv: PJNIEnv; this: JObject; + menu: JObject; menuItem: JObject; itemIndex: JInt): JBoolean; cdecl; +begin + Result:=Java_Event_pAppOnPrepareOptionsMenuItem(PEnv, this, menu, menuItem, + itemIndex); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnCreateContextMenu + Signature: (Landroid/view/ContextMenu;)V } +procedure pAppOnCreateContextMenu(PEnv: PJNIEnv; this: JObject; menu: JObject); + cdecl; +begin + Java_Event_pAppOnCreateContextMenu(PEnv, this, menu); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnClickContextMenuItem + Signature: (Landroid/view/MenuItem;ILjava/lang/String;Z)V } +procedure pAppOnClickContextMenuItem(PEnv: PJNIEnv; this: JObject; + menuItem: JObject; itemID: JInt; itemCaption: JString; checked: JBoolean); + cdecl; +begin + Java_Event_pAppOnClickContextMenuItem(PEnv, this, menuItem, itemID, + itemCaption, checked); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnDraw + Signature: (J)V } +procedure pOnDraw(PEnv: PJNIEnv; this: JObject; pasobj: JLong); cdecl; +begin + Java_Event_pOnDraw(PEnv, this, TObject(pasobj)); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnTouch + Signature: (JIIFFFF)V } +procedure pOnTouch(PEnv: PJNIEnv; this: JObject; pasobj: JLong; act: JInt; + cnt: JInt; x1: JFloat; y1: JFloat; x2: JFloat; y2: JFloat); cdecl; +begin + Java_Event_pOnTouch(PEnv, this, TObject(pasobj), act, cnt, x1, y1, x2, y2); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnClickGeneric + Signature: (JI)V } +procedure pOnClickGeneric(PEnv: PJNIEnv; this: JObject; pasobj: JLong; + value: JInt); cdecl; +begin + Java_Event_pOnClickGeneric(PEnv, this, TObject(pasobj), value); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnSpecialKeyDown + Signature: (CILjava/lang/String;)Z } +function pAppOnSpecialKeyDown(PEnv: PJNIEnv; this: JObject; keyChar: JChar; + keyCode: JInt; keyCodeString: JString): JBoolean; cdecl; +begin + Result:=Java_Event_pAppOnSpecialKeyDown(PEnv, this, keyChar, keyCode, + keyCodeString); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnDown + Signature: (JI)V } +procedure pOnDown(PEnv: PJNIEnv; this: JObject; pasobj: JLong; value: JInt); + cdecl; +begin + Java_Event_pOnDown(PEnv, this, TObject(pasobj), value); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnClick + Signature: (JI)V } +procedure pOnClick(PEnv: PJNIEnv; this: JObject; pasobj: JLong; value: JInt); + cdecl; +begin + Java_Event_pOnClick(PEnv, this, TObject(pasobj), value); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnLongClick + Signature: (JI)V } +procedure pOnLongClick(PEnv: PJNIEnv; this: JObject; pasobj: JLong; value: JInt + ); cdecl; +begin + Java_Event_pOnLongClick(PEnv, this, TObject(pasobj), value); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnDoubleClick + Signature: (JI)V } +procedure pOnDoubleClick(PEnv: PJNIEnv; this: JObject; pasobj: JLong; + value: JInt); cdecl; +begin + Java_Event_pOnDoubleClick(PEnv, this, TObject(pasobj), value); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnChange + Signature: (JLjava/lang/String;I)V } +procedure pOnChange(PEnv: PJNIEnv; this: JObject; pasobj: JLong; txt: JString; + count: JInt); cdecl; +begin + Java_Event_pOnChange(PEnv, this, TObject(pasobj), txt, count); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnChanged + Signature: (JLjava/lang/String;I)V } +procedure pOnChanged(PEnv: PJNIEnv; this: JObject; pasobj: JLong; txt: JString; + count: JInt); cdecl; +begin + Java_Event_pOnChanged(PEnv, this, TObject(pasobj), txt, count); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnEnter + Signature: (J)V } +procedure pOnEnter(PEnv: PJNIEnv; this: JObject; pasobj: JLong); cdecl; +begin + Java_Event_pOnEnter(PEnv, this, TObject(pasobj)); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnBackPressed + Signature: (J)V } +procedure pOnBackPressed(PEnv: PJNIEnv; this: JObject; pasobj: JLong); cdecl; +begin + Java_Event_pOnBackPressed(PEnv, this, TObject(pasobj)); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnClose + Signature: (J)V } +procedure pOnClose(PEnv: PJNIEnv; this: JObject; pasobj: JLong); cdecl; +begin + Java_Event_pOnClose(PEnv, this, TObject(pasobj)); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnViewClick + Signature: (Landroid/view/View;I)V } +procedure pAppOnViewClick(PEnv: PJNIEnv; this: JObject; view: JObject; id: JInt + ); cdecl; +begin + Java_Event_pAppOnViewClick(PEnv, this, view, id); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnListItemClick + Signature: (Landroid/widget/AdapterView;Landroid/view/View;II)V } +procedure pAppOnListItemClick(PEnv: PJNIEnv; this: JObject; adapter: JObject; + view: JObject; position: JInt; id: JInt); cdecl; +begin + Java_Event_pAppOnListItemClick(PEnv, this, adapter, view, position, id); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnFlingGestureDetected + Signature: (JI)V } +procedure pOnFlingGestureDetected(PEnv: PJNIEnv; this: JObject; pasobj: JLong; + direction: JInt); cdecl; +begin + Java_Event_pOnFlingGestureDetected(PEnv, this, TObject(pasobj), direction); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnPinchZoomGestureDetected + Signature: (JFI)V } +procedure pOnPinchZoomGestureDetected(PEnv: PJNIEnv; this: JObject; + pasobj: JLong; scaleFactor: JFloat; state: JInt); cdecl; +begin + Java_Event_pOnPinchZoomGestureDetected(PEnv, this, TObject(pasobj), + scaleFactor, state); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnLostFocus + Signature: (JLjava/lang/String;)V } +procedure pOnLostFocus(PEnv: PJNIEnv; this: JObject; pasobj: JLong; + text: JString); cdecl; +begin + Java_Event_pOnLostFocus(PEnv, this, TObject(pasobj), text); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnBeforeDispatchDraw + Signature: (JLandroid/graphics/Canvas;I)V } +procedure pOnBeforeDispatchDraw(PEnv: PJNIEnv; this: JObject; pasobj: JLong; + canvas: JObject; tag: JInt); cdecl; +begin + Java_Event_pOnBeforeDispatchDraw(PEnv, this, TObject(pasobj), canvas, tag); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnAfterDispatchDraw + Signature: (JLandroid/graphics/Canvas;I)V } +procedure pOnAfterDispatchDraw(PEnv: PJNIEnv; this: JObject; pasobj: JLong; + canvas: JObject; tag: JInt); cdecl; +begin + Java_Event_pOnAfterDispatchDraw(PEnv, this, TObject(pasobj), canvas, tag); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnLayouting + Signature: (JZ)V } +procedure pOnLayouting(PEnv: PJNIEnv; this: JObject; pasobj: JLong; + changed: JBoolean); cdecl; +begin + Java_Event_pOnLayouting(PEnv, this, TObject(pasobj), changed); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pAppOnRequestPermissionResult + Signature: (ILjava/lang/String;I)V } +procedure pAppOnRequestPermissionResult(PEnv: PJNIEnv; this: JObject; + requestCode: JInt; permission: JString; grantResult: JInt); cdecl; +begin + Java_Event_pAppOnRequestPermissionResult(PEnv, this, requestCode, permission, + grantResult); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnExpandableListViewChildClick + Signature: (JILjava/lang/String;ILjava/lang/String;)V } +procedure pOnExpandableListViewChildClick(PEnv: PJNIEnv; this: JObject; + pasobj: JLong; groupPosition: JInt; groupHeader: JString; + childItemPosition: JInt; childItemCaption: JString); cdecl; +begin + Java_Event_pOnExpandableListViewChildClick(PEnv, this, TObject(pasobj), + groupPosition, groupHeader, childItemPosition, childItemCaption); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnExpandableListViewGroupExpand + Signature: (JILjava/lang/String;)V } +procedure pOnExpandableListViewGroupExpand(PEnv: PJNIEnv; this: JObject; + pasobj: JLong; groupPosition: JInt; groupHeader: JString); cdecl; +begin + Java_Event_pOnExpandableListViewGroupExpand(PEnv, this, TObject(pasobj), + groupPosition, groupHeader); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnExpandableListViewGroupCollapse + Signature: (JILjava/lang/String;)V } +procedure pOnExpandableListViewGroupCollapse(PEnv: PJNIEnv; this: JObject; + pasobj: JLong; groupPosition: JInt; groupHeader: JString); cdecl; +begin + Java_Event_pOnExpandableListViewGroupCollapse(PEnv, this, TObject(pasobj), + groupPosition, groupHeader); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnClickNavigationViewItem + Signature: (JILjava/lang/String;)V } +procedure pOnClickNavigationViewItem(PEnv: PJNIEnv; this: JObject; + pasobj: JLong; itemId: JInt; itemCaption: JString); cdecl; +begin + Java_Event_pOnClickNavigationViewItem(PEnv, this, TObject(pasobj), itemId, + itemCaption); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnChangeSwitchButton + Signature: (JZ)V } +procedure pOnChangeSwitchButton(PEnv: PJNIEnv; this: JObject; pasobj: JLong; + state: JBoolean); cdecl; +begin + Java_Event_pOnChangeSwitchButton(PEnv, this, TObject(pasobj), state); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnHttpClientContentResult + Signature: (JLjava/lang/String;)V } +procedure pOnHttpClientContentResult(PEnv: PJNIEnv; this: JObject; + pasobj: JLong; content: JString); cdecl; +begin + Java_Event_pOnHttpClientContentResult(PEnv, this, TObject(pasobj), content); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnHttpClientCodeResult + Signature: (JI)V } +procedure pOnHttpClientCodeResult(PEnv: PJNIEnv; this: JObject; pasobj: JLong; + code: JInt); cdecl; +begin + Java_Event_pOnHttpClientCodeResult(PEnv, this, TObject(pasobj), code); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnHttpClientUploadProgress + Signature: (JJ)V } +procedure pOnHttpClientUploadProgress(PEnv: PJNIEnv; this: JObject; + pasobj: JLong; progress: JLong); cdecl; +begin + Java_Event_pOnHttpClientUploadProgress(PEnv, this, TObject(pasobj), progress); +end; + +{ Class: org_muctec_smartfritz_Controls + Method: pOnHttpClientUploadFinished + Signature: (JILjava/lang/String;Ljava/lang/String;)V } +procedure pOnHttpClientUploadFinished(PEnv: PJNIEnv; this: JObject; + pasobj: JLong; connectionStatusCode: JInt; connectionStatusMessage: JString; + fullFileName: JString); cdecl; +begin + Java_Event_pOnHttpClientUploadFinished(PEnv, this, TObject(pasobj), + connectionStatusCode, connectionStatusMessage, fullFileName); +end; + +const NativeMethods: array[0..51] of JNINativeMethod = ( + (name: 'pOnClickBottomNavigationViewItem'; + signature: '(JILjava/lang/String;)V'; + fnPtr: @pOnClickBottomNavigationViewItem; ), + (name: 'pAppOnCreate'; + signature: '(Landroid/content/Context;Landroid/widget/RelativeLayout;' + +'Landroid/content/Intent;)V'; + fnPtr: @pAppOnCreate; ), + (name: 'pAppOnScreenStyle'; + signature: '()I'; + fnPtr: @pAppOnScreenStyle; ), + (name: 'pAppOnNewIntent'; + signature: '(Landroid/content/Intent;)V'; + fnPtr: @pAppOnNewIntent; ), + (name: 'pAppOnDestroy'; + signature: '()V'; + fnPtr: @pAppOnDestroy; ), + (name: 'pAppOnPause'; + signature: '()V'; + fnPtr: @pAppOnPause; ), + (name: 'pAppOnRestart'; + signature: '()V'; + fnPtr: @pAppOnRestart; ), + (name: 'pAppOnResume'; + signature: '()V'; + fnPtr: @pAppOnResume; ), + (name: 'pAppOnStart'; + signature: '()V'; + fnPtr: @pAppOnStart; ), + (name: 'pAppOnStop'; + signature: '()V'; + fnPtr: @pAppOnStop; ), + (name: 'pAppOnBackPressed'; + signature: '()V'; + fnPtr: @pAppOnBackPressed; ), + (name: 'pAppOnRotate'; + signature: '(I)I'; + fnPtr: @pAppOnRotate; ), + (name: 'pAppOnUpdateLayout'; + signature: '()V'; + fnPtr: @pAppOnUpdateLayout; ), + (name: 'pAppOnConfigurationChanged'; + signature: '()V'; + fnPtr: @pAppOnConfigurationChanged; ), + (name: 'pAppOnActivityResult'; + signature: '(IILandroid/content/Intent;)V'; + fnPtr: @pAppOnActivityResult; ), + (name: 'pAppOnCreateOptionsMenu'; + signature: '(Landroid/view/Menu;)V'; + fnPtr: @pAppOnCreateOptionsMenu; ), + (name: 'pAppOnClickOptionMenuItem'; + signature: '(Landroid/view/MenuItem;ILjava/lang/String;Z)V'; + fnPtr: @pAppOnClickOptionMenuItem; ), + (name: 'pAppOnPrepareOptionsMenu'; + signature: '(Landroid/view/Menu;I)Z'; + fnPtr: @pAppOnPrepareOptionsMenu; ), + (name: 'pAppOnPrepareOptionsMenuItem'; + signature: '(Landroid/view/Menu;Landroid/view/MenuItem;I)Z'; + fnPtr: @pAppOnPrepareOptionsMenuItem; ), + (name: 'pAppOnCreateContextMenu'; + signature: '(Landroid/view/ContextMenu;)V'; + fnPtr: @pAppOnCreateContextMenu; ), + (name: 'pAppOnClickContextMenuItem'; + signature: '(Landroid/view/MenuItem;ILjava/lang/String;Z)V'; + fnPtr: @pAppOnClickContextMenuItem; ), + (name: 'pOnDraw'; + signature: '(J)V'; + fnPtr: @pOnDraw; ), + (name: 'pOnTouch'; + signature: '(JIIFFFF)V'; + fnPtr: @pOnTouch; ), + (name: 'pOnClickGeneric'; + signature: '(JI)V'; + fnPtr: @pOnClickGeneric; ), + (name: 'pAppOnSpecialKeyDown'; + signature: '(CILjava/lang/String;)Z'; + fnPtr: @pAppOnSpecialKeyDown; ), + (name: 'pOnDown'; + signature: '(JI)V'; + fnPtr: @pOnDown; ), + (name: 'pOnClick'; + signature: '(JI)V'; + fnPtr: @pOnClick; ), + (name: 'pOnLongClick'; + signature: '(JI)V'; + fnPtr: @pOnLongClick; ), + (name: 'pOnDoubleClick'; + signature: '(JI)V'; + fnPtr: @pOnDoubleClick; ), + (name: 'pOnChange'; + signature: '(JLjava/lang/String;I)V'; + fnPtr: @pOnChange; ), + (name: 'pOnChanged'; + signature: '(JLjava/lang/String;I)V'; + fnPtr: @pOnChanged; ), + (name: 'pOnEnter'; + signature: '(J)V'; + fnPtr: @pOnEnter; ), + (name: 'pOnBackPressed'; + signature: '(J)V'; + fnPtr: @pOnBackPressed; ), + (name: 'pOnClose'; + signature: '(J)V'; + fnPtr: @pOnClose; ), + (name: 'pAppOnViewClick'; + signature: '(Landroid/view/View;I)V'; + fnPtr: @pAppOnViewClick; ), + (name: 'pAppOnListItemClick'; + signature: '(Landroid/widget/AdapterView;Landroid/view/View;II)V'; + fnPtr: @pAppOnListItemClick; ), + (name: 'pOnFlingGestureDetected'; + signature: '(JI)V'; + fnPtr: @pOnFlingGestureDetected; ), + (name: 'pOnPinchZoomGestureDetected'; + signature: '(JFI)V'; + fnPtr: @pOnPinchZoomGestureDetected; ), + (name: 'pOnLostFocus'; + signature: '(JLjava/lang/String;)V'; + fnPtr: @pOnLostFocus; ), + (name: 'pOnBeforeDispatchDraw'; + signature: '(JLandroid/graphics/Canvas;I)V'; + fnPtr: @pOnBeforeDispatchDraw; ), + (name: 'pOnAfterDispatchDraw'; + signature: '(JLandroid/graphics/Canvas;I)V'; + fnPtr: @pOnAfterDispatchDraw; ), + (name: 'pOnLayouting'; + signature: '(JZ)V'; + fnPtr: @pOnLayouting; ), + (name: 'pAppOnRequestPermissionResult'; + signature: '(ILjava/lang/String;I)V'; + fnPtr: @pAppOnRequestPermissionResult; ), + (name: 'pOnExpandableListViewChildClick'; + signature: '(JILjava/lang/String;ILjava/lang/String;)V'; + fnPtr: @pOnExpandableListViewChildClick; ), + (name: 'pOnExpandableListViewGroupExpand'; + signature: '(JILjava/lang/String;)V'; + fnPtr: @pOnExpandableListViewGroupExpand; ), + (name: 'pOnExpandableListViewGroupCollapse'; + signature: '(JILjava/lang/String;)V'; + fnPtr: @pOnExpandableListViewGroupCollapse; ), + (name: 'pOnClickNavigationViewItem'; + signature: '(JILjava/lang/String;)V'; + fnPtr: @pOnClickNavigationViewItem; ), + (name: 'pOnChangeSwitchButton'; + signature: '(JZ)V'; + fnPtr: @pOnChangeSwitchButton; ), + (name: 'pOnHttpClientContentResult'; + signature: '(JLjava/lang/String;)V'; + fnPtr: @pOnHttpClientContentResult; ), + (name: 'pOnHttpClientCodeResult'; + signature: '(JI)V'; + fnPtr: @pOnHttpClientCodeResult; ), + (name: 'pOnHttpClientUploadProgress'; + signature: '(JJ)V'; + fnPtr: @pOnHttpClientUploadProgress; ), + (name: 'pOnHttpClientUploadFinished'; + signature: '(JILjava/lang/String;Ljava/lang/String;)V'; + fnPtr: @pOnHttpClientUploadFinished; ) +); + +function RegisterNativeMethodsArray(PEnv: PJNIEnv; className: PChar; + methods: PJNINativeMethod; countMethods: integer): integer; +var + curClass: jClass; +begin + Result:= JNI_FALSE; + curClass:= (PEnv^).FindClass(PEnv, className); + if curClass <> nil then + begin + if (PEnv^).RegisterNatives(PEnv, curClass, methods, countMethods) > 0 + then Result:= JNI_TRUE; + end; +end; + +function RegisterNativeMethods(PEnv: PJNIEnv; className: PChar): integer; +begin + Result:= RegisterNativeMethodsArray(PEnv, className, @NativeMethods[0], Length + (NativeMethods)); +end; + +function JNI_OnLoad(VM: PJavaVM; {%H-}reserved: pointer): JInt; cdecl; +var + PEnv: PPointer; + curEnv: PJNIEnv; +begin + PEnv:= nil; + Result:= JNI_VERSION_1_6; + (VM^).GetEnv(VM, @PEnv, Result); + if PEnv <> nil then + begin + curEnv:= PJNIEnv(PEnv); + RegisterNativeMethods(curEnv, 'org/muctec/smartfritz/Controls'); + end; + gVM:= VM; {AndroidWidget.pas} +end; + +procedure JNI_OnUnload(VM: PJavaVM; {%H-}reserved: pointer); cdecl; +var + PEnv: PPointer; + curEnv: PJNIEnv; +begin + PEnv:= nil; + (VM^).GetEnv(VM, @PEnv, JNI_VERSION_1_6); + if PEnv <> nil then + begin + curEnv:= PJNIEnv(PEnv); + (curEnv^).DeleteGlobalRef(curEnv, gjClass); + gjClass:= nil; {AndroidWidget.pas} + gVM:= nil; {AndroidWidget.pas} + end; + gApp.Terminate; + FreeAndNil(gApp); +end; + +exports + JNI_OnLoad name 'JNI_OnLoad', + JNI_OnUnload name 'JNI_OnUnload', + pOnClickBottomNavigationViewItem name 'Java_org_muctec_smartfritz_Controls_' + +'pOnClickBottomNavigationViewItem', + pAppOnCreate name 'Java_org_muctec_smartfritz_Controls_pAppOnCreate', + pAppOnScreenStyle name + 'Java_org_muctec_smartfritz_Controls_pAppOnScreenStyle', + pAppOnNewIntent name 'Java_org_muctec_smartfritz_Controls_pAppOnNewIntent', + pAppOnDestroy name 'Java_org_muctec_smartfritz_Controls_pAppOnDestroy', + pAppOnPause name 'Java_org_muctec_smartfritz_Controls_pAppOnPause', + pAppOnRestart name 'Java_org_muctec_smartfritz_Controls_pAppOnRestart', + pAppOnResume name 'Java_org_muctec_smartfritz_Controls_pAppOnResume', + pAppOnStart name 'Java_org_muctec_smartfritz_Controls_pAppOnStart', + pAppOnStop name 'Java_org_muctec_smartfritz_Controls_pAppOnStop', + pAppOnBackPressed name + 'Java_org_muctec_smartfritz_Controls_pAppOnBackPressed', + pAppOnRotate name 'Java_org_muctec_smartfritz_Controls_pAppOnRotate', + pAppOnUpdateLayout name 'Java_org_muctec_smartfritz_Controls_' + +'pAppOnUpdateLayout', + pAppOnConfigurationChanged name 'Java_org_muctec_smartfritz_Controls_' + +'pAppOnConfigurationChanged', + pAppOnActivityResult name 'Java_org_muctec_smartfritz_Controls_' + +'pAppOnActivityResult', + pAppOnCreateOptionsMenu name 'Java_org_muctec_smartfritz_Controls_' + +'pAppOnCreateOptionsMenu', + pAppOnClickOptionMenuItem name 'Java_org_muctec_smartfritz_Controls_' + +'pAppOnClickOptionMenuItem', + pAppOnPrepareOptionsMenu name 'Java_org_muctec_smartfritz_Controls_' + +'pAppOnPrepareOptionsMenu', + pAppOnPrepareOptionsMenuItem name 'Java_org_muctec_smartfritz_Controls_' + +'pAppOnPrepareOptionsMenuItem', + pAppOnCreateContextMenu name 'Java_org_muctec_smartfritz_Controls_' + +'pAppOnCreateContextMenu', + pAppOnClickContextMenuItem name 'Java_org_muctec_smartfritz_Controls_' + +'pAppOnClickContextMenuItem', + pOnDraw name 'Java_org_muctec_smartfritz_Controls_pOnDraw', + pOnTouch name 'Java_org_muctec_smartfritz_Controls_pOnTouch', + pOnClickGeneric name 'Java_org_muctec_smartfritz_Controls_pOnClickGeneric', + pAppOnSpecialKeyDown name 'Java_org_muctec_smartfritz_Controls_' + +'pAppOnSpecialKeyDown', + pOnDown name 'Java_org_muctec_smartfritz_Controls_pOnDown', + pOnClick name 'Java_org_muctec_smartfritz_Controls_pOnClick', + pOnLongClick name 'Java_org_muctec_smartfritz_Controls_pOnLongClick', + pOnDoubleClick name 'Java_org_muctec_smartfritz_Controls_pOnDoubleClick', + pOnChange name 'Java_org_muctec_smartfritz_Controls_pOnChange', + pOnChanged name 'Java_org_muctec_smartfritz_Controls_pOnChanged', + pOnEnter name 'Java_org_muctec_smartfritz_Controls_pOnEnter', + pOnBackPressed name 'Java_org_muctec_smartfritz_Controls_pOnBackPressed', + pOnClose name 'Java_org_muctec_smartfritz_Controls_pOnClose', + pAppOnViewClick name 'Java_org_muctec_smartfritz_Controls_pAppOnViewClick', + pAppOnListItemClick name 'Java_org_muctec_smartfritz_Controls_' + +'pAppOnListItemClick', + pOnFlingGestureDetected name 'Java_org_muctec_smartfritz_Controls_' + +'pOnFlingGestureDetected', + pOnPinchZoomGestureDetected name 'Java_org_muctec_smartfritz_Controls_' + +'pOnPinchZoomGestureDetected', + pOnLostFocus name 'Java_org_muctec_smartfritz_Controls_pOnLostFocus', + pOnBeforeDispatchDraw name 'Java_org_muctec_smartfritz_Controls_' + +'pOnBeforeDispatchDraw', + pOnAfterDispatchDraw name 'Java_org_muctec_smartfritz_Controls_' + +'pOnAfterDispatchDraw', + pOnLayouting name 'Java_org_muctec_smartfritz_Controls_pOnLayouting', + pAppOnRequestPermissionResult name 'Java_org_muctec_smartfritz_Controls_' + +'pAppOnRequestPermissionResult', + pOnExpandableListViewChildClick name 'Java_org_muctec_smartfritz_Controls_' + +'pOnExpandableListViewChildClick', + pOnExpandableListViewGroupExpand name 'Java_org_muctec_smartfritz_Controls_' + +'pOnExpandableListViewGroupExpand', + pOnExpandableListViewGroupCollapse name 'Java_org_muctec_smartfritz_Controls' + +'_pOnExpandableListViewGroupCollapse', + pOnClickNavigationViewItem name 'Java_org_muctec_smartfritz_Controls_' + +'pOnClickNavigationViewItem', + pOnChangeSwitchButton name 'Java_org_muctec_smartfritz_Controls_' + +'pOnChangeSwitchButton', + pOnHttpClientContentResult name 'Java_org_muctec_smartfritz_Controls_' + +'pOnHttpClientContentResult', + pOnHttpClientCodeResult name 'Java_org_muctec_smartfritz_Controls_' + +'pOnHttpClientCodeResult', + pOnHttpClientUploadProgress name 'Java_org_muctec_smartfritz_Controls_' + +'pOnHttpClientUploadProgress', + pOnHttpClientUploadFinished name 'Java_org_muctec_smartfritz_Controls_' + +'pOnHttpClientUploadFinished'; + +{%endregion} + +begin + gApp:= jApp.Create(nil); + gApp.Title:= 'LAMW JNI Android Bridges Library'; + gjAppName:= 'org.muctec.smartfritz'; + gjClassName:= 'org/muctec/smartfritz/Controls'; + gApp.AppName:=gjAppName; + gApp.ClassName:=gjClassName; + gApp.Initialize; + gApp.CreateForm(TAndroidModule1, AndroidModule1); +end. diff --git a/SmartFritz/jni/controls.lps b/SmartFritz/jni/controls.lps new file mode 100644 index 0000000000000000000000000000000000000000..434b96f50012ee08bce7807ada91a5c6a086ce51 --- /dev/null +++ b/SmartFritz/jni/controls.lps @@ -0,0 +1,273 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectSession> + <Version Value="12"/> + <BuildModes Active="Default"/> + <Units Count="11"> + <Unit0> + <Filename Value="controls.lpr"/> + <IsPartOfProject Value="True"/> + <EditorIndex Value="-1"/> + <WindowIndex Value="-1"/> + <TopLine Value="-1"/> + <CursorPos X="-1" Y="-1"/> + <UsageCount Value="83"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit0> + <Unit1> + <Filename Value="unit1.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="AndroidModule1"/> + <HasResources Value="True"/> + <CustomData Count="2"> + <Item0 Name="fclControls"/> + <Item1 Name="jControls" Value="jForm;jHttpClient;jPanel;jPreferences;jsBottomNavigationView;jsDrawerLayout;jsFloatingButton;jsNavigationView;jsToolbar;jSwitchButton;jTextView"/> + </CustomData> + <TopLine Value="72"/> + <CursorPos X="85" Y="83"/> + <UsageCount Value="83"/> + <Bookmarks Count="2"> + <Item0 X="53" Y="864" ID="1"/> + <Item1 Y="279"/> + </Bookmarks> + <Loaded Value="True"/> + <LoadedDesigner Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit1> + <Unit2> + <Filename Value="unit2.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="AndroidModule2"/> + <HasResources Value="True"/> + <CustomData Count="2"> + <Item0 Name="fclControls"/> + <Item1 Name="jControls" Value="jButton;jCheckBox;jEditText;jForm;jPanel;jTextView"/> + </CustomData> + <EditorIndex Value="1"/> + <TopLine Value="64"/> + <CursorPos X="29" Y="82"/> + <UsageCount Value="83"/> + <Loaded Value="True"/> + <LoadedDesigner Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit2> + <Unit3> + <Filename Value="unit3.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="AndroidModule3"/> + <HasResources Value="True"/> + <CustomData Count="2"> + <Item0 Name="fclControls"/> + <Item1 Name="jControls" Value="jEditText;jForm;jPanel;jTextView"/> + </CustomData> + <EditorIndex Value="2"/> + <TopLine Value="11"/> + <CursorPos X="56" Y="22"/> + <UsageCount Value="83"/> + <Loaded Value="True"/> + <LoadedDesigner Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit3> + <Unit4> + <Filename Value="unit4.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="AndroidModule4"/> + <HasResources Value="True"/> + <CustomData Count="2"> + <Item0 Name="fclControls"/> + <Item1 Name="jControls" Value="jExpandableListView;jForm;jPanel;jTextView"/> + </CustomData> + <EditorIndex Value="3"/> + <UsageCount Value="83"/> + <Loaded Value="True"/> + <LoadedDesigner Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit4> + <Unit5> + <Filename Value="unit5.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="AndroidModule5"/> + <HasResources Value="True"/> + <CustomData Count="2"> + <Item0 Name="fclControls"/> + <Item1 Name="jControls" Value="jButton;jEditText;jForm;jPanel;jTextView"/> + </CustomData> + <IsVisibleTab Value="True"/> + <EditorIndex Value="4"/> + <CursorPos X="22" Y="43"/> + <UsageCount Value="83"/> + <Loaded Value="True"/> + <LoadedDesigner Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit5> + <Unit6> + <Filename Value="fritzbox.pas"/> + <IsPartOfProject Value="True"/> + <EditorIndex Value="5"/> + <TopLine Value="207"/> + <CursorPos X="42" Y="224"/> + <UsageCount Value="82"/> + <Loaded Value="True"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit6> + <Unit7> + <Filename Value="unit2.lfm"/> + <HasResources Value="True"/> + <EditorIndex Value="-1"/> + <TopLine Value="242"/> + <CursorPos Y="276"/> + <UsageCount Value="17"/> + <DefaultSyntaxHighlighter Value="LFM"/> + </Unit7> + <Unit8> + <Filename Value="../../../../lazarus/lcl/themes.pas"/> + <UnitName Value="Themes"/> + <EditorIndex Value="-1"/> + <TopLine Value="1918"/> + <CursorPos X="16" Y="1938"/> + <UsageCount Value="11"/> + </Unit8> + <Unit9> + <Filename Value="../../../../ccr/lamw/android_bridges/Laz_And_Controls.pas"/> + <EditorIndex Value="6"/> + <TopLine Value="2553"/> + <CursorPos X="45" Y="2562"/> + <UsageCount Value="29"/> + <Loaded Value="True"/> + </Unit9> + <Unit10> + <Filename Value="../../../../ccr/synapse/jedi.inc"/> + <EditorIndex Value="-1"/> + <CursorPos X="21" Y="620"/> + <UsageCount Value="9"/> + <DefaultSyntaxHighlighter Value="Delphi"/> + </Unit10> + </Units> + <JumpHistory Count="30" HistoryIndex="29"> + <Position1> + <Filename Value="unit1.pas"/> + <Caret Line="44" Column="7" TopLine="25"/> + </Position1> + <Position2> + <Filename Value="unit1.pas"/> + <Caret Line="2" Column="43"/> + </Position2> + <Position3> + <Filename Value="unit1.pas"/> + <Caret Line="105" Column="22" TopLine="86"/> + </Position3> + <Position4> + <Filename Value="unit1.pas"/> + <Caret Line="459" Column="27" TopLine="439"/> + </Position4> + <Position5> + <Filename Value="unit1.pas"/> + <Caret Line="468" Column="28" TopLine="439"/> + </Position5> + <Position6> + <Filename Value="unit1.pas"/> + <Caret Line="538" Column="28" TopLine="509"/> + </Position6> + <Position7> + <Filename Value="unit1.pas"/> + <Caret Line="548" Column="27" TopLine="519"/> + </Position7> + <Position8> + <Filename Value="unit1.pas"/> + <Caret Line="7" Column="47"/> + </Position8> + <Position9> + <Filename Value="unit1.pas"/> + <Caret Line="107" Column="31" TopLine="79"/> + </Position9> + <Position10> + <Filename Value="unit1.pas"/> + <Caret Line="1124" TopLine="1091"/> + </Position10> + <Position11> + <Filename Value="unit1.pas"/> + <Caret Line="106" TopLine="90"/> + </Position11> + <Position12> + <Filename Value="unit5.pas"/> + <Caret Line="43" Column="22" TopLine="15"/> + </Position12> + <Position13> + <Filename Value="unit3.pas"/> + <Caret Line="23" Column="53" TopLine="5"/> + </Position13> + <Position14> + <Filename Value="unit3.pas"/> + <Caret Line="22" Column="56" TopLine="11"/> + </Position14> + <Position15> + <Filename Value="unit1.pas"/> + <Caret Line="487" Column="3" TopLine="470"/> + </Position15> + <Position16> + <Filename Value="unit1.pas"/> + <Caret Line="146" Column="5" TopLine="128"/> + </Position16> + <Position17> + <Filename Value="unit1.pas"/> + <Caret Line="76" Column="61" TopLine="68"/> + </Position17> + <Position18> + <Filename Value="unit1.pas"/> + <Caret Line="77" Column="25" TopLine="60"/> + </Position18> + <Position19> + <Filename Value="unit1.pas"/> + <Caret Line="82" Column="24" TopLine="68"/> + </Position19> + <Position20> + <Filename Value="unit1.pas"/> + <Caret Line="375" Column="53" TopLine="357"/> + </Position20> + <Position21> + <Filename Value="unit1.pas"/> + <Caret Line="85" Column="7" TopLine="68"/> + </Position21> + <Position22> + <Filename Value="unit1.pas"/> + <Caret Line="482" Column="42" TopLine="470"/> + </Position22> + <Position23> + <Filename Value="unit1.pas"/> + <Caret Line="89" Column="46" TopLine="72"/> + </Position23> + <Position24> + <Filename Value="unit1.pas"/> + <Caret Line="669" Column="22" TopLine="657"/> + </Position24> + <Position25> + <Filename Value="unit1.pas"/> + <Caret Line="646" Column="3" TopLine="628"/> + </Position25> + <Position26> + <Filename Value="fritzbox.pas"/> + <Caret Line="10" Column="101"/> + </Position26> + <Position27> + <Filename Value="fritzbox.pas"/> + <Caret Line="219" TopLine="208"/> + </Position27> + <Position28> + <Filename Value="fritzbox.pas"/> + <Caret Line="353" TopLine="342"/> + </Position28> + <Position29> + <Filename Value="fritzbox.pas"/> + <Caret Line="224" Column="42" TopLine="207"/> + </Position29> + <Position30> + <Filename Value="unit1.pas"/> + <Caret Line="646" Column="6" TopLine="628"/> + </Position30> + </JumpHistory> + <RunParams> + <FormatVersion Value="2"/> + <Modes ActiveMode=""/> + </RunParams> + </ProjectSession> +</CONFIG> diff --git a/SmartFritz/jni/fritzbox.pas b/SmartFritz/jni/fritzbox.pas new file mode 100644 index 0000000000000000000000000000000000000000..e5712c8faad7ffe35e1ef3b43cd0be9a9cefb2ba --- /dev/null +++ b/SmartFritz/jni/fritzbox.pas @@ -0,0 +1,449 @@ +unit fritzbox; + +///{$mode objfpc}{$H+} +{$mode delphi} +interface + +uses + Classes, SysUtils, {$IFDEF Linux} fphttpclient, + {$ENDIF Linux} {$IFDEF ANDROID}Laz_And_Controls,{$ENDIF ANDROID}HlpIHash, HlpMD5, + laz2_XMLRead, laz2_DOM,RegExpr,{$IFDEF Linux}fphttpclient, httpdefs,httpprotocol, {$ENDIF Linux} opensslsockets; + +type + TBoxInfo = record + SID : String; + Response:String; + Status:Integer; + BlockTime:String; + ExternalIP:String; + end; + + TOnLogMsg = procedure(Sender: TObject; EMessage: string) of + object; + + { TFritzBox } + + TFritzBox = class(TObject) + private + {$IFDEF Linux} + ffHTTP: TFPHttpClient; + {$ENDIF Linux} + {$IFDEF ANDROID} + //ffHTTP: TFPHttpClient; + ffHTTP: JHttpCLient; + {$ENDIF ANDROID} + fError : String; + fBox : TBoxInfo; + FFboxURL:String; + FServiceURL:String; + FOnLogMsg:TOnLogMsg; + + function GetExternalIP: String; + function GetBlockTime: String; + function GetResponse: String; + function GetSID : String; + function GetState: Integer; + procedure SetFBURL(AValue: String); + procedure Logger(EMessage:String); + procedure SetServiceURL(AValue: String); + function GetNodeValue(HttpResultString, SearchString: String): String; + public + constructor Create; + destructor Destroy; override; + Procedure LogIn(ABenutzername: string = ''; APassword: string = ''); + procedure Logout; + procedure FboxGetURL(); + procedure FboxGetExternalIP(); + property SID : String read GetSID; + property FBOXURL: String write SetFBURL; + property ServiceURL: String write SetServiceURL; + property OnLogMsg: TOnLogMsg read FOnLogMsg write FOnLogMsg; + property Response: String read GetResponse; + property State: Integer read GetState; + property BlockTime: String read GetBlockTime; + property ExternalIP: String read GetExternalIP; + + end; + + +implementation + +{$IFDEF ANDROID} +uses unit1; +{$ENDIF ANDROID} + +{ TFritzBox } + +function TFritzBox.GetSID: String; +begin + Result:=FBox.SID; +end; + +function TFritzBox.GetState: Integer; +begin + Result:=FBox.Status; +end; + +function TFritzBox.GetResponse: String; +begin + Result:=FBox.Response; +end; + +function TFritzBox.GetExternalIP: String; +begin + Result:=FBox.ExternalIP; +end; + +function TFritzBox.GetBlockTime: String; +begin + Result:=Fbox.BlockTime; +end; + +procedure TFritzBox.SetFBURL(AValue: String); +begin + FFBOXURL:=AValue; +end; + +procedure TFritzBox.Logger(EMessage: String); +begin + if Assigned(OnLogMsg) then + begin + OnLogMsg(self,EMessage); + end; +end; + +procedure TFritzBox.FboxGetURL(); +begin + Fbox.Response:=''; + try + Fbox.Response:=ffHTTP.Get(FServiceURL); + except + //NOP ignore + end; + {$IFDEF Linux} + FBox.Status:=ffHTTP.ResponseStatusCode; + {$ENDIF Linux} + {$IFDEF ANDROID} + FBox.Status:=ffHTTP.GetResponseCode; + {$ENDIF ANDROID} +end; + +procedure TFritzBox.SetServiceURL(AValue: String); +begin +FServiceURL:=AValue; +end; + + +constructor TFritzBox.Create; +begin + {$IFDEF Linux} + ffHTTP := TFPHttpClient.Create(nil); + {$ENDIF Linux} + {$IFDEF ANDROID} + // Unter Android verwenden wir + // jHttpClient1 von AndroidModule1. + // Es funktiomiert zurzeit nicht stabil, die Komponenten + // dynamisch zu erzeugen. + // TFPHttpClient sollte eigentlich auf funktionieren, lauft aber nicht stabil. + ffHTTP:=AndroidModule1.jHttpClient1; + + + //defaults jHttpClient Android + //ffHTTP.AuthenticationMode:=autNone; + //ffHTTP.CharSet:='UTF-8'; + //ffHTTP.ConnectionTimeout:=15000; + //ffHTTP.ResponseTimeout:=15000; + //ffHTTP.UploadFormName:='lamwFormUpload'; + + + {$ENDIF ANDROID} + Fbox.SID:='0000000000000000'; +end; + +destructor TFritzBox.Destroy; +begin + {$IFDEF Linux} + ffHTTP.Free; + {$ENDIF Linux} + inherited; +end; +// Bei der Fritzbox anmelden +// Zum Verfahren siehe +// https://avm.de/fileadmin/user_upload/Global/Service/Schnittstellen/Session-ID_deutsch_13Nov18.pdf +procedure TFritzBox.LogIn(ABenutzername: string = ''; APassword: string = ''); +var + TheChallenge,TheResponse,TheSid : String; + UseOldSID:Boolean; + + function InternalGetChallenge : String; + var + S:String; + begin + Logger('Hole Challenge'); + try + Result := ffHTTP.Get(FFBoxURL + '/login_sid.lua'); + except on E:Exception do + Logger(e.Message); + end; + Logger('Challenge-Result: ' + Result); + Logger('Response-Code: ' + IntToStr(ffHTTP.GetResponseCode())); + + {$IFDEF ANDROID} + fbox.Status:=ffHTTP.GetResponseCode(); + {$ENDIF ANDROID} + {$IFDEF Linux} + fbox.Status:=ffHTTP.ResponseStatusCode; + {$ENDIF Linux} + FBox.BlockTime:='0'; + S:=GetNodeValue(Result,'BlockTime'); + If S <>'0' Then + begin + FBox.BlockTime:=S; + Logger('BlockTime: ' + S); + end + else + begin + if Pos('<challenge>',LowerCase(Result))=0 then + raise Exception.Create('Fehler beim Initialisieren der Verbindung.'); + + Result:=GetNodeValue(Result,'Challenge'); + end; + + end; + // MD5 erzeugen + function InternalGetMD5 : String; + var + MD5Hash:IHash; + Bytes: TBytes; + str : String; + + begin + Result := ''; + str := TheChallenge+'-'+APassword; + MD5Hash := TMD5.Create(); + Bytes:=TEncoding.Unicode.GetBytes(str); + Result:=LowerCase(MD5Hash.ComputeBytes(Bytes).ToString()); + end; + // SID holen + function InternalGetSid : String; + var + Params :String; + begin + Result := ''; + if Fbox.SID <> '0000000000000000' then + Params:=('?sid=' + Fbox.SID) + else + Params:=('?username=' + ABenutzername + '&response=' + TheChallenge + '-' + TheResponse); + try + Result := ffHTTP.Get(FFBoxURL + '/login_sid.lua' + Params); + except on E:Exception do + Logger(e.Message); + end; + + {$IFDEF ANDROID} + fbox.Status:=ffHTTP.GetResponseCode(); + {$ENDIF ANDROID} + {$IFDEF Linux} + fbox.Status:=ffHTTP.ResponseStatusCode; + {$ENDIF Linux} + + Logger(Result); + if Pos('<sid>',LowerCase(Result))=0 then + raise Exception.Create('Fehler beim Generieren der Sitzungs-ID.'); + + Result:=GetNodeValue(Result,'SID'); + end; + +begin + {$IFDEF Linux} + ffHTTP.AllowRedirect:=True; + {$ENDIF Linux} + + UseOldSID:=false; + Logger('Starte Verbindung zu: ' + FFBoxURL); + try + if Fbox.SID <> '0000000000000000' then + if InternalGetSid=FBox.SID Then + begin + UseOldSID:=True; + Logger('Verwende bisherige SID: ' + FBox.SID); + end; + + If UseOldSID=false Then + begin + + TheChallenge := InternalGetChallenge; + + if fBox.BlockTime <> '0' Then + begin + FBox.SID:='0000000000000000'; + end + else + begin + Logger('Challenge: ' + TheChallenge); + TheResponse := InternalGetMD5; + Logger('MD5: ' + TheResponse); + TheSid:= InternalGetSid; + Logger('Neue SID: ' + TheSid); + FBox.SID := TheSid; + end; + end; + + except + on E:Exception do fError := E.Message; + end; +end; +//bei der Fritzbox abmelden +procedure TFritzBox.Logout; +begin + {$IFDEF Linux} + ffHTTP.AllowRedirect:=True; + {$ENDIF Linux} + ffHTTP.Get(FFBoxURL + '/login_sid.lua?logout=0&sid=' + FBox.SID); + {$IFDEF ANDROID} + fbox.Status:=ffHTTP.GetResponseCode(); + {$ENDIF ANDROID} + {$IFDEF Linux} + fbox.Status:=ffHTTP.ResponseStatusCode; + {$ENDIF Linux} + fBox.SID := '0000000000000000'; +end; +// SessionInfo im XML-String finden +function TFritzBox.GetNodeValue(HttpResultString, SearchString: String): String; +var +Doc: TXMLDocument; +Stream : TStringStream; +ChildNode, SearchNode: TDOMNode; +begin + Result:=''; + Stream:= TStringStream.Create(HttpResultString); + ReadXMLFile(Doc,Stream); + try + ChildNode := Doc.FindNode('SessionInfo'); + If ChildNode<> nil then + begin + If ChildNode.HasChildNodes Then + begin + SearchNode:=ChildNode.findNode(SearchString); + If SearchNode <> nil then + begin + If SearchNode.HasChildNodes Then + begin + Result:=SearchNode.FirstChild.NodeValue; + end; + end + end; + end; + finally + Doc.Free; + Stream.Free; + end; +end; +// Öffentliche IP-Adresse ermitteln +// siehe https://avm.de/fileadmin/user_upload/Global/Service/Schnittstellen/wanipconnSCPD.pdf +procedure TFritzBox.FboxGetExternalIP(); +var +{$IFDEF Linux} +request: TStringList; +stream, result: TMemoryStream; +RegexObj: TRegExpr; +S:String; +{$ENDIF Linux} +{$IFDEF ANDROID} + +content:String; + +{$ENDIF ANDROID} +begin + Fbox.Response:=''; + FBox.Status:=0; + FBox.ExternalIP:=''; + Logger('Starte Abfrage öffentliche IP'); + + {$IFDEF ANDROID} + content:='<?xml version="1.0" encoding="utf-8"?>'#13#10 + + '<s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">' + + ' <s:Body>' + + ' <u:GetExternalIPAddress xmlns:u="urn:schemas-upnp-org:service:WANIPConnection:1" />' + + ' </s:Body>' + + '</s:Envelope>'; + + ffHTTP.CharSet:='UTF-8'; + ffHTTP.ConnectionTimeout:=15000; + ffHTTP.ResponseTimeout:=15000; + ffHTTP.ClearNameValueData; + ffHTTP.SetUnvaluedNameData('BODY'); //disregard nameData 'BODY' + ffHTTP.SetEncodeValueData(False); //not encode ValueData + ffHTTP.AddClientHeader('Pragma', 'no-cache'); + ffHTTP.AddClientHeader('Cache-Control', 'no-cache'); + ffHTTP.AddClientHeader('SoapAction', 'urn:schemas-upnp-org:service:WANIPConnection:1#GetExternalIPAddress'); + ffHTTP.AddClientHeader('Content-Type','text/xml; charset=utf-8'); + ffHTTP.AddNameValueData('BODY',content); + Logger('Service-URL:' +FServiceURL); + // Die SOAP-Abfgrage funktioniert mit dem JhttpClient nur ansynchron + // Die Events werden in AndroidModule1 ausgelöst + // procedure jHttpClient1CodeResult(Sender: TObject; code: integer); + // procedure jHttpClient1ContentResult(Sender: TObject; content: string); + + ffHTTP.PostNameValueDataAsync(FServiceURL); + + {$ENDIF ANDROID} + + {$IFDEF Linux} + ffHTTP.RequestHeaders.Add('Pragma: no-cache'); + ffHTTP.RequestHeaders.Add('Cache-Control: no-cache'); + ffHTTP.RequestHeaders.Add('SoapAction:urn:schemas-upnp-org:service:WANIPConnection:1#GetExternalIPAddress'); + ffHTTP.RequestHeaders.Add('CONTENT-TYPE: text/xml; charset="utf-8"'); + request := TStringList.Create; + request.Add('<?xml version="1.0" encoding="utf-8"?>'); + request.Add('<s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">'); + request.Add(' <s:Body>'); + request.Add(' <u:GetExternalIPAddress xmlns:u="urn:schemas-upnp-org:service:WANIPConnection:1" />'); + + request.Add(' </s:Body>'); + request.Add('</s:Envelope>'); + stream := TMemoryStream.Create; + request.SaveToStream(stream); + + stream.Position := 0; + request.Clear; + + + + ffHTTP.RequestHeaders.Add('Content-Length: '+IntToStr(stream.Size)); + ffHTTP.RequestBody := stream; + result := TMemoryStream.Create; + Logger('Post: '+FServiceURL); + ffHTTP.Post(FServiceURL, result); + result.Position := 0; + request.LoadFromStream(result); + + + RegexObj := TRegExpr.Create; + try + RegexObj.Expression :='(?si)<NewExternalIPAddress>(.*?)<\/NewExternalIPAddress>'; + S:=''; + for i:=0 to request.Count-1 do + begin + Logger('SOAP Request: ' + request.Strings[i]); + If RegexObj.Exec(request.Strings[i]) Then + begin + S:=RegexObj.Match[1]; + + end; + end; + + If S<> '' Then + Logger('Externe IP: ' + S); + FBox.ExternalIP:=S; + + finally + RegexObj.Free; + end; + request.Free; + stream.Free; + {$ENDIF Linux} +end; + +end. + diff --git a/SmartFritz/jni/unit1.lfm b/SmartFritz/jni/unit1.lfm new file mode 100644 index 0000000000000000000000000000000000000000..b1fb487cd3420b71e933c910c65e82ee92beeb10 --- /dev/null +++ b/SmartFritz/jni/unit1.lfm @@ -0,0 +1,271 @@ +object AndroidModule1: TAndroidModule1 + OnCreate = AndroidModule1Create + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 524 + Top = 188 + Width = 351 + Height = 534 + Text = 'AndroidModule1' + ActivityMode = actMain + BackgroundColor = colbrDefault + ActionBarTitle = abtDefault + AnimationDurationIn = 1500 + AnimationDurationOut = 1500 + AnimationMode = animNone + OnJNIPrompt = AndroidModule1JNIPrompt + OnClose = AndroidModule1Close + OnSpecialKeyDown = AndroidModule1SpecialKeyDown + object jsDrawerLayout1: jsDrawerLayout + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 0 + Top = 0 + Width = 351 + Height = 534 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [rpTop] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpMatchParent + BackgroundColor = colbrDefault + FitsSystemWindows = False + object jsNavigationView1: jsNavigationView + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 0 + Top = 0 + Width = 590 + Height = 534 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [] + LayoutParamWidth = lpWrapContent + LayoutParamHeight = lpMatchParent + BackgroundColor = colbrDefault + GravityInParent = lgLeft + FontColor = colbrDefault + OnClickItem = jsNavigationView1ClickItem + end + object jPanel1: jPanel + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 0 + Top = 0 + Width = 351 + Height = 534 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpMatchParent + BackgroundColor = colbrDefault + MinPinchZoomFactor = 0.25 + MaxPinchZoomFactor = 4 + AnimationDurationIn = 1500 + AnimationMode = animNone + object jsToolbar1: jsToolbar + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 0 + Top = 15 + Width = 351 + Height = 40 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpWrapContent + Text = 'jsToolbar1' + FontColor = colbrDefault + GravityInParent = lgNone + AsActionBar = True + BackgroundColor = colbrDefault + FitsSystemWindows = False + OnClickNavigationIcon = jsToolbar1ClickNavigationIcon + end + object jPanel2: jPanel + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 0 + Top = 55 + Width = 351 + Height = 479 + Visible = True + Anchor = jsToolbar1 + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpMatchParent + BackgroundColor = colbrDefault + MinPinchZoomFactor = 0.25 + MaxPinchZoomFactor = 4 + AnimationDurationIn = 1500 + AnimationMode = animNone + OnFlingGesture = jPanel2FlingGesture + object jPanel3: jPanel + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 0 + Top = 0 + Width = 351 + Height = 479 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpMatchParent + BackgroundColor = colbrWhite + MinPinchZoomFactor = 0.25 + MaxPinchZoomFactor = 4 + AnimationDurationIn = 250 + AnimationMode = animNone + object jTextView1: jTextView + MarginLeft = 5 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 109 + Top = 5 + Width = 132 + Height = 21 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [rpTop, rpCenterHorizontal] + LayoutParamWidth = lpWrapContent + LayoutParamHeight = lpWrapContent + Text = 'DECT-Schalter abrufen' + Alignment = taLeft + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + TextTypeFace = tfNormal + FontSizeUnit = unitDefault + GravityInParent = lgNone + end + object pnlSwitches: jPanel + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 0 + Top = 31 + Width = 351 + Height = 48 + Visible = True + Anchor = jTextView1 + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpWrapContent + BackgroundColor = colbrDefault + MinPinchZoomFactor = 0.25 + MaxPinchZoomFactor = 4 + AnimationDurationIn = 1500 + AnimationMode = animNone + end + object jSwitchButton1: jSwitchButton + MarginLeft = 7 + MarginTop = 7 + MarginRight = 7 + MarginBottom = 7 + Enabled = True + Left = 16 + Top = 105 + Width = 100 + Height = 28 + Visible = False + PosRelativeToAnchor = [] + PosRelativeToParent = [] + LayoutParamWidth = lpWrapContent + LayoutParamHeight = lpWrapContent + BackgroundColor = colbrDefault + TextOff = 'OFF' + TextOn = 'ON' + State = tsOff + GravityInParent = lgNone + end + end + object jsBottomNavigationView1: jsBottomNavigationView + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 0 + Top = 569 + Width = 351 + Height = 40 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [rpBottom] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpWrapContent + BackgroundColor = colbrLightGreen + GravityInParent = lgNone + FontColor = colbrDefault + OnClickItem = jsBottomNavigationView1ClickItem + end + end + object jsFloatingButton1: jsFloatingButton + MarginLeft = 10 + MarginTop = 10 + MarginRight = 10 + MarginBottom = 10 + Enabled = True + Left = 147 + Top = 468 + Width = 56 + Height = 56 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [rpBottom, rpCenterHorizontal] + LayoutParamWidth = lpWrapContent + LayoutParamHeight = lpWrapContent + BackgroundColor = colbrRed + GravityInParent = lgNone + OnClick = jsFloatingButton1Click + end + end + end + object jPreferences1: jPreferences + IsShared = False + Left = 272 + Top = 424 + end + object jHttpClient1: jHttpClient + CharSet = 'UTF-8' + IndexUrl = -1 + AuthenticationMode = autNone + ResponseTimeout = 15000 + ConnectionTimeout = 15000 + UploadFormName = 'lamwFormUpload' + OnContentResult = jHttpClient1ContentResult + OnCodeResult = jHttpClient1CodeResult + Left = 272 + Top = 352 + end +end diff --git a/SmartFritz/jni/unit1.pas b/SmartFritz/jni/unit1.pas new file mode 100644 index 0000000000000000000000000000000000000000..8d3e43643fc00ae9727481ab40e1c7f1bf6295e8 --- /dev/null +++ b/SmartFritz/jni/unit1.pas @@ -0,0 +1,1121 @@ +{Hint: save all files to location: /home/[user]/fpcupdeluxe/projects/LAMWProjects/SmartFritz/jni } +// Die Angaben + +// {$IFDEF ANDROID} +// {$ENDIF ANDROID} + +// {$IFDEF Linux} +// {$ENDIF Linux} + +// sollen nur die wichtigsten Unterschiede zum Code für Linux/Windows zeigen +// und sind nicht vollständig. +// Der Code lässt sich nicht immer 1:1 von Android für Linux übernehmen. + +unit unit1; + +{$mode delphi} + +interface + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + {$ENDIF}{$ENDIF} + Classes, SysUtils, AndroidWidget, sdrawerlayout, snavigationview, + Laz_And_Controls, stoolbar, sfloatingbutton, switchbutton, + preferences, sbottomnavigationview, unit2, unit3, unit4, unit5, fritzbox, + laz2_XMLRead, laz2_DOM,{$IFDEF Linux} fphttpclient, + httpdefs, httpprotocol,{$ENDIF Linux} BlowFish, base64, RegExpr; + +// Record für die Werte der SmartHome-Schalter +type + TSmartData = record + Name: string; + AIN: string; + Present: string; + State: string; + HasSwitch: integer; + Celsius: string; + Power: string; + Productname: string; + HasTemperature: integer; + functionbitmask: string; + SollTemperatur: string; + IsComet: integer; //Comet Dect, wird nicht ausgewertet + end; + +type + + { TAndroidModule1 } + + TAndroidModule1 = class(jForm) + jHttpClient1: jHttpClient; + jPanel1: jPanel; + jPanel2: jPanel; + jPanel3: jPanel; + jsBottomNavigationView1: jsBottomNavigationView; + jsFloatingButton1: jsFloatingButton; + jSwitchButton1: jSwitchButton; + pnlSwitches: jPanel; + jPreferences1: jPreferences; + jsDrawerLayout1: jsDrawerLayout; + jsNavigationView1: jsNavigationView; + jsToolbar1: jsToolbar; + jTextView1: jTextView; + + procedure SaveSettings(); + procedure LoadSettings(); + procedure Logger(msg: string); + procedure ToogleSwitch(AIN: string; Command: string); + procedure FBReadData(response: string); + procedure WriteMessages(); + {$IFDEF ANDROID} + procedure AndroidModule1Close(Sender: TObject); + procedure AndroidModule1Create(Sender: TObject); + procedure AndroidModule1JNIPrompt(Sender: TObject); + procedure AndroidModule1SpecialKeyDown(Sender: TObject; keyChar: char; + keyCode: integer; keyCodeString: string; var mute: boolean); + procedure jHttpClient1CodeResult(Sender: TObject; code: integer); + procedure jHttpClient1ContentResult(Sender: TObject; content: string); + procedure jPanel2FlingGesture(Sender: TObject; flingGesture: TFlingGesture); + procedure jsBottomNavigationView1ClickItem(Sender: TObject; + itemId: integer; itemCaption: string); + procedure jsFloatingButton1Click(Sender: TObject); + procedure jsNavigationView1ClickItem(Sender: TObject; itemId: integer; + itemCaption: string); + procedure jsToolbar1ClickNavigationIcon(Sender: TObject); + procedure AddControls(num: integer; SwitchName, State, Present: string); + procedure ClearSwitchPanel(); + procedure aSwitchSwitch(Sender: TObject; state: boolean); + procedure Navigate(itemID: integer); + procedure SetAnimMode(Module: string; ItemID: integer); + procedure CreateForms; + procedure InitPanels; + {$ENDIF ANDROID} + + {$IFDEF Linux} + procedure aSwitchSwitch(Sender: TObject); + {$ENDIF Linux} + procedure GetExternalIP(); + + private + {private declarations} + + ActivePage: integer; + procedure Logger2(Sender: TObject; EMessage: string); + + public + {public declarations} + var + TheSid: string; + FBOXURL: string; + Username: string; + Password: string; + SavePassword: boolean; + DebugLog: boolean; + DeviceList: array of TSmartData; + FBox: TFritzBox; + Messages: TStringList; + FormsCreated: boolean; + PanelsInit: boolean; + end; + +var + AndroidModule1: TAndroidModule1; + +implementation + +{$R *.lfm} + + +{ TAndroidModule1 } + +// Veschlüsselung für Passwort +// Diese einfache Veschlüsselung verbirgt das Passwort +// in der Konfigurationsdatei vor den Augen unbefugter Personen +// und erfüllte keine geltenden Sicherheitsstandards. +function EncryptString(aString: string): string; +var + Key: string; + EncrytpStream: TBlowFishEncryptStream; + StringStream: TStringStream; + EncryptedString: RawByteString; + B64String: string; +begin + if aString = '' then + Exit; + Key := 's6v9y$B&E)H@McQfTjWnZq4t7w!z%C*F'; //sollte geändert werden + StringStream := TStringStream.Create(''); + EncrytpStream := TBlowFishEncryptStream.Create(Key, StringStream); + EncrytpStream.WriteAnsiString(aString); + EncrytpStream.Flush; + EncryptedString := StringStream.DataString; + B64String := EncodeStringBase64(EncryptedString); + EncrytpStream.Free; + StringStream.Free; + EncryptString := B64String; +end; +// Passwort entschlüsseln +function DecryptString(aString: string): string; +var + Key: string; + DecrytpStream: TBlowFishDeCryptStream; + StringStream: TStringStream; + DecryptedString: string; + B64String: RawByteString; +begin + if aString = '' then + Exit; + Key := 's6v9y$B&E)H@McQfTjWnZq4t7w!z%C*F'; + //sollte geändert werden, gleicher Schlüssel wie oben + B64String := DecodeStringBase64(aString, False); + StringStream := TStringStream.Create(B64String); + DecrytpStream := TBlowfishDecryptStream.Create(key, StringStream); + DecryptedString := DecrytpStream.ReadAnsiString; + DecrytpStream.Free; + StringStream.Free; + DecryptString := DecryptedString; +end; +// Initialisierung, wird beim Start der App ausgeführt +procedure TAndroidModule1.AndroidModule1JNIPrompt(Sender: TObject); +var + myMenu: jObjectRef; + navigationMenu: jObjectRef; + //aForm:jForm; +begin + FormsCreated := False; + PanelsInit := False; + //die App-Leiste + jsToolbar1.SetFitsSystemWindows(True); + jsToolbar1.SetBackgroundToPrimaryColor(); // in "...\res\values\style.xml" + jsToolbar1.NavigationIconIdentifier := 'ic_menu_white_36dp'; + jsToolbar1.SetTitleTextColor(colbrWhite); + jsToolbar1.SetTitle('SmartFritz'); + jsToolbar1.SetSubtitleTextColor(colbrWhite); + jsToolbar1.SetSubtitle('Fritzbox steuern'); + + // das Menü + jsNavigationView1.AddHeaderView('bg_material', 'ic_fritzbox', + 'Smarthome|Fritzbox steuern', 180); + myMenu := jsNavigationView1.AddMenu('Fritzbox'); // Menü-Gruppe erstellen + jsNavigationView1.AddItem(myMenu, 101, 'Steuerung', 'ic_fritzbox_icon'); + jsNavigationView1.AddItem(myMenu, 102, 'Einstellungen', 'ic_settings_icon'); + jsNavigationView1.AddItem(myMenu, 103, 'Log-Meldungen', 'ic_log_icon'); + jsNavigationView1.AddItem(myMenu, 104, 'Status-Infos', 'ic_state_icon'); + jsNavigationView1.AddItem(myMenu, 105, 'Anrufliste', 'ic_call_icon'); + + // links/rechts blättern + navigationMenu := jsBottomNavigationView1.GetMenu(); + jsBottomNavigationView1.AddItem(navigationMenu, 102, 'Links', + 'ic_chevron_left_black_48dp'); + jsBottomNavigationView1.AddItem(navigationMenu, 101, 'Rechts', + 'ic_chevron_right_black_48dp'); + + ActivePage := 101; + LoadSettings(); // Einstellungen laden + TheSID := '0000000000000000'; + // Klasse TFritzBox initialisieren + // Diese enthält alle Funktionen für die Fritzbox + FBox := TFritzBox.Create; + +end; +// Beim Schließen Objekt freigeben +procedure TAndroidModule1.AndroidModule1Close(Sender: TObject); +begin + FBox.Free; + Messages.Free; +end; + +procedure TAndroidModule1.AndroidModule1Create(Sender: TObject); +begin + Messages := TStringList.Create; // Speicher für LOG-Meldungen +end; +//Zurückblättern. Auf der Startseite App beenden. +procedure TAndroidModule1.AndroidModule1SpecialKeyDown(Sender: TObject; + keyChar: char; keyCode: integer; keyCodeString: string; var mute: boolean); +begin + if keyCode = 4 then //KEYCODE_BACK + begin + if ActivePage <> 101 then + begin + ActivePage := 101; + Self.jPanel3.BringToFront(); + mute := True; // App nicht schließen + end; + end; +end; +// Untere Navigation /Rechts/Links blättern +procedure TAndroidModule1.jsBottomNavigationView1ClickItem(Sender: TObject; + itemId: integer; itemCaption: string); +begin + + if itemId = 101 then //Schaltfläche Rechts + begin + if ActivePage < 105 then + jsNavigationView1ClickItem(jsNavigationView1, ActivePage + 1, ''); + end; + + if itemId = 102 then //Schaltfläche Links + begin + if ActivePage > 101 then + jsNavigationView1ClickItem(jsNavigationView1, ActivePage - 1, ''); + end; +end; +// Wisch-Gesten Rechts/Links blättern +procedure TAndroidModule1.jPanel2FlingGesture(Sender: TObject; + flingGesture: TFlingGesture); +begin + + case flingGesture of + fliLeftToRight: + begin + if ActivePage > 101 then + jsBottomNavigationView1ClickItem(nil,102,''); //nach links + end; + + fliRightToLeft: + begin + if ActivePage < 105 then + jsBottomNavigationView1ClickItem(nil,101,''); // nach rechts + end; + + end; +end; +// etwas Kosmetik +// Animation der Panels je nach Richtung einstellen +// siehe auch "AnimationDurationIn" (Geschwindigkeit der Animation) +// bei den Panels +procedure TAndroidModule1.SetAnimMode(Module: string; ItemID: integer); +var + aForm: jForm; + aPanel: JPanel; +begin + //das jeweilige Modul suchen + aForm := (gApp.FindComponent(Module) as jForm); + + // das jeweilige Panel suchen + if ItemID = 101 then + begin + aPanel := (aForm.FindComponent('jPanel3') as JPanel); + + end + else + begin + aPanel := (aForm.FindComponent('jPanel1') as JPanel); + end; + + // Anmimation ändern von Rchts oder Links einblenden + if ActivePage < ItemID then + aPanel.AnimationMode := animRightToLeft + else + aPanel.AnimationMode := animLeftToRight; + // aktive Seite ist jetzt die aktuelle Seite + ActivePage := itemID; + // Focus auf das Panel setzen + aPanel.BringToFront(); +end; +// Formulare erstellen AndroidModule2 bis AndroidModule5 +// Das muss nur einmal geschehen, +// was durch dei Variable FormsCreated gesteuert wird +procedure TAndroidModule1.CreateForms; +begin + if FormsCreated = True then // bereits erledigt, also raus hier + Exit; + + if AndroidModule2 = nil then + begin + // Anmerkung wg. actEasel werden die Formulare zunächst nicht angezeigt + gApp.CreateForm(TAndroidModule2, AndroidModule2); + AndroidModule2.Init(gApp); + end; + + if AndroidModule3 = nil then + begin + gApp.CreateForm(TAndroidModule3, AndroidModule3); + AndroidModule3.Init(gApp); + end; + if AndroidModule4 = nil then + begin + gApp.CreateForm(TAndroidModule4, AndroidModule4); + AndroidModule4.Init(gApp); + end; + + if AndroidModule5 = nil then + begin + gApp.CreateForm(TAndroidModule5, AndroidModule5); + AndroidModule5.Init(gApp); + end; + FormsCreated := True; +end; + +procedure TAndroidModule1.InitPanels; +begin +// Die Formular werden nicht direkt angezeigt. +// Stattdessen wird das Panel jPanel1 des jeweiligen Formulars +// ins Panel2 von AndroidModule1 geladen (Self.jPanel2) +// Diese Zuweisung *darf* nur einmal geschehen, was +// durch die Variable PanelsInit gesteuert wird. +// Ansonsten erhalten die Panel nicht immer den Focus. + if PanelsInit = True then + Exit; + AndroidModule2.jPanel1.Parent := Self.jPanel2; + AndroidModule2.jPanel1.SetViewParent(Self.jPanel2.View); + + AndroidModule3.jPanel1.Parent := Self.jPanel2; + AndroidModule3.jPanel1.SetViewParent(Self.jPanel2.View); + + AndroidModule4.jPanel1.Parent := Self.jPanel2; + AndroidModule4.jPanel1.SetViewParent(Self.jPanel2.View); + + AndroidModule5.jPanel1.Parent := Self.jPanel2; + AndroidModule5.jPanel1.SetViewParent(Self.jPanel2.View); + + PanelsInit := True; +end; + +// Navigation zur nächsten/vorherigen Seite/Modul +procedure TAndroidModule1.Navigate(itemID: integer); +begin + // Die Formulare/Module werden erst jetzt geladen. + // Das beschleunigt den Programmstart. + CreateForms(); + // Panel1 der Formulare soll in Panel2 von AndroidModule1 erscheinen + InitPanels(); + + // Je nach ID anderes Modul/Formular laden + if itemID = 101 then + begin + ActivePage := itemID; + SetAnimMode('AndroidModule1', itemID); + end; + + if itemID = 102 then + begin + AndroidModule2.LoadSettings; //Einstellungen in die Formularfelder laden + SetAnimMode('AndroidModule2', itemID); + end; + + if itemID = 103 then + begin + SetAnimMode('AndroidModule3', itemID); + end; + + if itemID = 104 then + begin + SetAnimMode('AndroidModule4', itemID); + end; + + if itemID = 105 then + begin + SetAnimMode('AndroidModule5', itemID); + end; + // das Menü schließen + jsDrawerLayout1.CloseDrawers(); +end; +//Rückgabe-Code einer SOAP-Abfrage z.B. für "Öffentliche IP ermitteln) +procedure TAndroidModule1.jHttpClient1CodeResult(Sender: TObject; code: integer); +begin + Logger('Code: ' + IntToStr(code)); + WriteMessages; +end; +//Inhaltsergebnis einer SOAP-Abfrage z.B. für "Öffentliche IP ermitteln) +procedure TAndroidModule1.jHttpClient1ContentResult(Sender: TObject; content: string); +var + RegexObj: TRegExpr; + S: string; +begin + Logger('SOAP-Content: ' + content); + WriteMessages; + + if content <> '' then + begin + // NewExternalIPAddress auslesen + RegexObj := TRegExpr.Create; + try + RegexObj.Expression := '(?si)<NewExternalIPAddress>(.*?)<\/NewExternalIPAddress>'; + S := ''; + if RegexObj.Exec(content) then + begin + S := RegexObj.Match[1]; + end; + if S <> '' then + Logger('Öffentliche IP: ' + S); + WriteMessages; + ShowMessage('Öffentliche IP: ' + S + ' (siehe log)'); + finally + RegexObj.Free; + end; + end; +end; + +// Öffentliche IP-Adresse ermitteln +// Dafür ist keine Anmeldung bei der Fritzbox erforderlich +procedure TAndroidModule1.GetExternalIP(); +begin +{$IFDEF ANDROID} + CreateForms(); + FBox.OnLogMsg := Logger2; + FBox.ServiceURL := FBOXURL + ':49000/igdupnp/control/WANIPConn1'; + FBox.FboxGetExternalIP(); + //WriteMessages; +{$ENDIF ANDROID} + +{$IFDEF Linux} + Memo2.Clear; + FBOXURL := Trim(edtURL.Text); + FBox.OnLogMsg := @Logger2; + FBox.ServiceURL := FBOXURL + ':49000/igdupnp/control/WANIPConn1'; + FBox.FboxGetExternalIP(); + Memo2.Text := 'Externe IP: ' + FBox.ExternalIP; + {$ENDIF Linux} +end; +// Zu einer Seite blättern +procedure TAndroidModule1.jsNavigationView1ClickItem(Sender: TObject; + itemId: integer; itemCaption: string); +begin + Navigate(itemID); +end; +// Menü über das Icon links oben öffnen +procedure TAndroidModule1.jsToolbar1ClickNavigationIcon(Sender: TObject); +begin + jsDrawerLayout1.OpenDrawer(); +end; +// Einstellungen speichern +procedure TAndroidModule1.SaveSettings(); +begin + + if (LeftStr(FBOXURL, 7) <> 'http://') and (LeftStr(FBOXURL, 8) <> 'https://') then + FBOXURL := 'http://' + FBOXURL; + jPreferences1.SetStringData('FritzboxURL', FBOXURL); + jPreferences1.SetStringData('User', Username); + if SavePassword = True then + begin + //Passwort unverschlüsselt speichern + //jPreferences1.SetStringData('Password', Password) + + //Passwort verschlüsselt speichern + jPreferences1.SetStringData('Password', EncryptString(Password)); + end + else + jPreferences1.SetStringData('Password', ''); //Passwort löschen + + jPreferences1.SetBoolData('SavePassword', SavePassword); + jPreferences1.SetBoolData('DebugLog', DebugLog); +end; +// Einstellungen laden +procedure TAndroidModule1.LoadSettings(); +begin + FBOXURL := jPreferences1.GetStringData('FritzboxURL', ''); + if (LeftStr(FBOXURL, 7) <> 'http://') and (LeftStr(FBOXURL, 8) <> 'https://') then + FBOXURL := 'http://' + FBOXURL; + + Username := jPreferences1.GetStringData('User', ''); + SavePassword := jPreferences1.GetBoolData('SavePassword', False); + if SavePassword = True then + Password := DecryptString(jPreferences1.GetStringData('Password', '')); + //Password := jPreferences1.GetStringData('Password', ''); + + DebugLog := jPreferences1.GetBoolData('DebugLog', False); +end; +//Hier startet die Abfrage der Fritzbox +procedure TAndroidModule1.jsFloatingButton1Click(Sender: TObject); + +begin + {$IFDEF Linux} + FBOXURL := Trim(edtURL.Text); + if (LeftStr(FBOXURL, 7) <> 'http://') and (LeftStr(FBOXURL, 8) <> 'https://') then + FBOXURL := 'http://' + FBOXURL; + edtURL.Text := FBOXURL; + + Username := Trim(edtUserName.Text); + Password := Trim(edtPassword.Text); + Memo1.Clear; + + FBox.OnLogMsg := @Logger2; +{$ENDIF Linux} +{$IFDEF ANDROID} + // Die anderen Module müssen geladen sein. + // Sonst lässen sich die Formularelemente nicht füllen + CreateForms(); + // Zurück zur Startseite + if ActivePage <> 101 then + Navigate(101); + //Den Logger-Event festlegen + FBox.OnLogMsg := Logger2; + // Alte Log-Meldungen löschen + Messages.Clear; + + AndroidModule5.btnGetCallList.Enabled := False; + // Listenelemente löschen + AndroidModule4.lv.Clear(); + // Panel vorübergehend ausblenden (anti-flackern) + pnlSwitches.Visible := False; + + +{$ENDIF ANDROID} + // dei URL der Fritzbox wie konfiguriert + Fbox.FBOXURL := FBOXURL; + try + FBox.LogIn(Username, Password); //Anmelden + except + on E: Exception do + Logger(e.Message); + + end; + TheSid := FBox.SID; + + // Anmeldung blockert? + if Fbox.BlockTime <> '0' then + begin + ShowMessage('Die Anmeldung ist noch blockiert für: ' + Fbox.BlockTime + + ' Sekunden.'); + end + else + begin + if TheSid <> '0000000000000000' then // Bei erfolgreicher Anmeldung + begin + + {$IFDEF Linux} + btnCallList.Enabled := True; + {$ENDIF Linux} + // Die Service-URL für SmartHome + FBox.ServiceURL := FBOXURL + '/webservices/homeautoswitch.lua?sid=' + + FBox.SID + '&switchcmd=getdevicelistinfos'; + + FBox.FboxGetURL(); + if FBox.State = 200 then // erfolgreich + begin + Logger('Antwort DeviceList: ' + FBox.Response); + FBReadData(FBox.Response); + {$IFDEF ANDROID} + AndroidModule5.btnGetCallList.Enabled := True; + AndroidModule1.pnlSwitches.Visible := True; + {$ENDIF ANDROID} + end + else + begin + {$IFDEF ANDROID} + // keine DeviceList, keine Smarthome-Funktion + // SID OK daher CallList (AndroidModule5) möglich + AndroidModule5.btnGetCallList.Enabled := True; + jTextView1.Text := 'Keine Smarthome-Funktion vorhanden? Siehe log.'; + ShowMessage('Keine Smarthome-Funktion vorhanden? Siehe log.'); + {$ENDIF ANDROID} + Logger('Keine Smarthome-Funktion vorhanden oder URL nicht gefunden, Fehler: ' + + IntToStr(FBox.State)); + end; + end + else + begin + Logger('Fehler: Konnte keine Verbindung herstellen. Fehlercode: ' + + IntToStr(FBox.State)); + ShowMessage('Fehler: Konnte keine Verbindung herstellen. Fehlercode: ' + + IntToStr(FBox.State)); + end; + end; + WriteMessages; +end; +// Schalter umschalten +procedure TAndroidModule1.aSwitchSwitch(Sender: TObject; state: boolean); +var + AIN: string; + Index: integer; +begin + Index := jSwitchButton(Sender).Tag; + AIN := DeviceList[Index].AIN; + ToogleSwitch(AIN, 'setswitchtoggle'); +end; + + +{$IFDEF Linux} +procedure TAndroidModule1.aSwitchSwitch(Sender: TObject); +var + AIN: string; + Index: integer; +begin + Index := TEcSwitch(Sender).tag; + AIN := DeviceList[Index].AIN; + Application.ProcessMessages; + ToogleSwitch(AIN, 'setswitchtoggle'); + Logger(AIN + ' umschalten'); +end; + +{$ENDIF Linux} +//Daten der Schalter einlesen +procedure TAndroidModule1.FBReadData(response: string); +var + Doc: TXMLDocument; + I, J: integer; + Stream: TStringStream; + numDevices: integer; + iNode: TDOMNode; + SwitchData: TSmartData; + has_switch, has_temperatur: boolean; +{$IFDEF Linux} + aSwitch: TECSwitch; + Item0: TTreeNode; + Item1: TTreeNode; + Item2: TTreeNode; + Item3: TTreeNode; +{$ENDIF Linux} +{$IFDEF ANDROID} + LVItems: string; +{$ENDIF ANDROID} + // XML-Datei auswerten + procedure ProcessNode(Node: TDOMNode); + var + cNode: TDOMNode; + tmpNode: TDOMNode; + aktTemp: extended; + aktPower: extended; + BitMask: integer; + begin + if Node = nil then + Exit; + with Node do + begin + if NodeName = 'name' then + begin + SwitchData.Name := Node.FirstChild.NodeValue; + end; + + if NodeName = 'device' then + begin + SwitchData.AIN := Attributes.GetNamedItem('identifier').NodeValue; + SwitchData.functionbitmask := + Attributes.GetNamedItem('functionbitmask').NodeValue; + BitMask := StrToInt(SwitchData.functionbitmask); + has_switch := BitMask and (1 shl 9) <> 0; + has_temperatur := BitMask and (1 shl 8) <> 0; + + if has_switch then + SwitchData.HasSwitch := 1 + else + SwitchData.HasSwitch := 0; + + if has_temperatur then + SwitchData.HasTemperature := 1 + else + SwitchData.HasTemperature := 0; + SwitchData.Productname := Attributes.GetNamedItem('productname').NodeValue; + end; + + + if NodeName = 'state' then + begin + tmpNode := Node.FirstChild; + if tmpNode <> nil then + begin + if tmpNode.NodeValue <> '' then + begin + + SwitchData.State := tmpNode.NodeValue; + end; + end; + end; + + + if NodeName = 'celsius' then + begin + tmpNode := Node.FirstChild; + if tmpNode <> nil then + begin + if tmpNode.NodeValue <> '' then + begin + aktTemp := StrToFloat(tmpNode.NodeValue) / 10; + SwitchData.Celsius := FloatToStrF(aktTemp, ffFixed, 2, 1, formatSettings); + end; + end; + end; + + if NodeName = 'tsoll' then + begin + tmpNode := Node.FirstChild; + if tmpNode <> nil then + begin + if tmpNode.NodeValue <> '' then + begin + if tmpNode.NodeValue = '254' then + begin + SwitchData.SollTemperatur := 'ein'; + end + else if tmpNode.NodeValue = '253' then + begin + SwitchData.SollTemperatur := 'aus'; + Exit; + end + else + begin + aktTemp := StrToFloat(tmpNode.NodeValue) * 0.5; + SwitchData.SollTemperatur := + FloatToStrF(aktTemp, ffNumber, 18, 1, formatSettings); + end; + end; + end; + end; + + if NodeName = 'power' then + begin + tmpNode := Node.FirstChild; + if tmpNode <> nil then + begin + if tmpNode.NodeValue <> '' then + begin + aktPower := StrToFloat(tmpNode.NodeValue) / 1000; + Str(aktPower: 6: 2, SwitchData.Power); + end; + end; + end; + + if NodeName = 'present' then + begin + tmpNode := Node.FirstChild; + if tmpNode <> nil then + begin + if tmpNode.NodeValue <> '' then + SwitchData.Present := tmpNode.NodeValue; + end; + end; + + cNode := Node.FirstChild; + while cNode <> nil do + begin + ProcessNode(cNode); + cNode := cNode.NextSibling; + end; + end; + end; + +begin + {$IFDEF Linux} + Treeview1.Items.Clear; + ClearScrollbox; + {$ENDIF Linux} + {$IFDEF ANDROID} + // Alles zuvor generierten Schalter entfernen + ClearSwitchPanel; + + {$ENDIF ANDROID} + SetLength(DeviceList, 0); + // Verbindung erfolgreich? + if TheSID <> '0000000000000000' then + begin + {$IFDEF ANDROID} + jsFloatingButton1.BackgroundColor := colbrOliveDrab; + {$ENDIF ANDROID} + Stream := TStringStream.Create(response); + try + ReadXMLFile(Doc, Stream); //XML-Daten einlesen + i := 0; + J := 0; + numDevices := Doc.DocumentElement.ChildNodes.Count; + Logger('Geräte gefunden:' + IntToStr(numDevices)); + if numDevices = 0 then + begin + Logger('Fehler: Konnte Geräteliste nicht von der Fritzbox laden.'); + ShowMessage('Fehler: Konnte Geräteliste nicht von der Fritzbox laden.'); + Exit; + end; + + SetLength(DeviceList, numDevices); + iNode := Doc.DocumentElement.FirstChild; + + while iNode <> nil do + begin + Logger('============='); + + ProcessNode(iNode); + + DeviceList[i] := SwitchData; + Logger('Name: ' + SwitchData.Name + ' AIN: ' + SwitchData.AIN); + Logger('Verbunden: ' + SwitchData.Present); + Logger('Ist Schalter: ' + IntToStr(SwitchData.HasSwitch)); + if SwitchData.State <> '' then + Logger('Status ist: ' + SwitchData.State); + Logger('Liefert Temperatur: ' + IntToStr(SwitchData.HasTemperature)); + + if SwitchData.HasSwitch = 1 then + begin + {$IFDEF Linux} + aSwitch := TECSwitch.Create(Self); + aSwitch.Height := 25; + aSwitch.Top := 1 + i * 30; + aSwitch.Tag := i; + aSwitch.Name := 'Switch' + IntToStr(i); + aSwitch.Caption := SwitchData.Name; + + if SwitchData.State = '0' then + aSwitch.Checked := False; + if SwitchData.State = '1' then + aSwitch.Checked := True; + + aSwitch.OnClick := @aSwitchSwitch; + aSwitch.Parent := ScrollBox1; + Inc(J); + if SwitchData.Present = '0' then + aSwitch.Enabled := False; + {$ENDIF Linux} + {$IFDEF ANDROID} + // Schalter in pnlSwitches hinzufügen + // Hinweis: Es muss sich ein Schalter (jSwitchButton) + // auf dem Formular befinden, damit das funktioniert + AddControls(I, SwitchData.Name, SwitchData.State, SwitchData.Present); + + {$ENDIF ANDROID} + + end; + {$IFDEF ANDROID} + // Detail-Infos für die Liste + // in AndroidModule4 + LVItems := 'Modell: ' + SwitchData.Productname; + if SwitchData.HasTemperature = 1 then + begin + LVItems := LVItems + ';Temperatur: ' + SwitchData.Celsius + ' °C'; + end; + if SwitchData.Power <> '' then + begin + LVItems := LVItems + ';Aktuelle Leistung: ' + SwitchData.Power + ' Watt'; + end; + if SwitchData.State = '0' then + LVItems := LVItems + ';Schalter-Status: Aus' + else + LVItems := LVItems + ';Schalter-Status: An'; + + // Infos hinzufügen + AndroidModule4.lv.Add(SwitchData.Name, LVItems); + //Logger(LVItems); + {$ENDIF ANDROID} + + {$IFDEF Linux} + Item0 := TreeView1.Items.Add(nil, 'Fritzbox'); + Item1 := TreeView1.Items.AddChild(item0, ''); + Item1.Text := SwitchData.Name; + Item2 := TreeView1.Items.AddChild(item1, ''); + Item2.Text := 'Modell: ' + SwitchData.Productname; + + + if SwitchData.HasTemperature = 1 then + begin + + if SwitchData.Celsius <> '' then + begin + Item2 := TreeView1.Items.AddChild(item1, ''); + Item2.Text := 'Temperatur: ' + SwitchData.Celsius + ' °C'; + + end; + end; + + if SwitchData.SollTemperatur <> '' then + begin + Item2 := TreeView1.Items.AddChild(item1, ''); + if SwitchData.SollTemperatur = 'aus' then + Item2.Text := 'Soll-Temperatur: ' + SwitchData.SollTemperatur + else if SwitchData.SollTemperatur = 'ein' then + Item2.Text := 'Soll-Temperatur: ' + SwitchData.SollTemperatur + else + Item2.Text := + 'Soll-Temperatur: ' + SwitchData.SollTemperatur + ' °C'; + + end; + if SwitchData.Power <> '' then + begin + Item2 := TreeView1.Items.AddChild(item1, ''); + Item2.Text := 'Aktuelle Leistung: ' + SwitchData.Power + ' Watt'; + + end; + + if SwitchData.Present = '0' then + begin + Item2 := TreeView1.Items.AddChild(item1, ''); + Item2.Text := 'Verbunden: Nein'; + + end; + if SwitchData.Present = '1' then + begin + Item2 := TreeView1.Items.AddChild(item1, ''); + Item2.Text := 'Verbunden: Ja'; + + end; + {$ENDIF Linux} + + Inc(i); + // Alte Daten löschen + SwitchData.Name := ''; + SwitchData.AIN := ''; + SwitchData.Present := ''; + SwitchData.State := ''; + SwitchData.HasSwitch := 0; + SwitchData.HasTemperature := 0; + SwitchData.functionbitmask := ''; + SwitchData.Celsius := ''; + SwitchData.Power := ''; + SwitchData.Productname := ''; + SwitchData.SollTemperatur := ''; + SwitchData.IsComet := 0; + iNode := iNode.NextSibling; + end; + finally + Stream.Free; + Doc.Free; + end; + end + else + begin + Logger('Konnte keine Verbindung herstellen'); + end; + +end; +//Log-Meldungen ausgeben +procedure TAndroidModule1.WriteMessages(); +var + I: integer; +begin +{$IFDEF ANDROID} + AndroidModule3.edtLog.Text := ''; +{$ENDIF ANDROID} + if Messages.Count > 0 then + begin + + for I := 0 to Messages.Count - 1 do + begin + {$IFDEF ANDROID} + AndroidModule3.edtLog.AppendLn(Messages.Strings[I]); + {$ENDIF ANDROID} + {$IFDEF Linux} + Memo1.Lines.Add(Messages.Strings[I]); + {$ENDIF Linux} + + end; + end; +end; +// Schalter umschalten +procedure TAndroidModule1.ToogleSwitch(AIN: string; Command: string); +begin + Fbox.FBOXURL := FBOXURL; + FBox.LogIn(Username, Password); + TheSid := FBox.SID; + FBox.ServiceURL := FBOXURL + '/webservices/homeautoswitch.lua' + + '?sid=' + FBox.SID + '&ain=' + AIN + '&switchcmd=' + Command; + FBox.FboxGetURL(); +end; +// Schalter und Beschriftungen hinzufügen +procedure TAndroidModule1.AddControls(num: integer; SwitchName, State, Present: string); +var + ajTextView: jTextView; + myjTextView: jTextView; + ajPanel: JPanel; + myjPanel: JPanel; + ajSwitch: jSwitchButton; +begin + ajPanel := jPanel.Create(self); + ajPanel.Parent := pnlSwitches; + ajPanel.LayoutParamHeight := lpWrapContent; + ajPanel.LayoutParamWidth := lpMatchParent; + + if num = 0 then + begin + ajPanel.PosRelativeToParent := [rpTop]; + end + + else + begin + myjPanel := (AndroidModule1.FindComponent('SwitchPanel' + IntToStr(num - 1)) as JPanel); + ajPanel.Anchor := myjPanel; + ajPanel.PosRelativeToAnchor := [raBelow]; + end; + ajPanel.Name := 'SwitchPanel' + IntToStr(num); + ajPanel.SetMarginLeftTopRightBottom(10, 25, 25, 25); + ajPanel.Init(gApp); + + myjPanel := (AndroidModule1.FindComponent('SwitchPanel' + IntToStr(num)) as JPanel); + + ajTextView := jTextView.Create(Self); + ajTextView.Parent := myjPanel; + + + if num = 0 then + ajTextView.PosRelativeToParent := [rpTop, rpLeft] + + else + begin + myjTextView := (AndroidModule1.FindComponent('lblSwitch' + IntToStr(num - 1)) as + JTextView); + ajTextView.Anchor := myjTextView; + ajTextView.PosRelativeToAnchor := [raBelow]; + ajTextView.PosRelativeToParent := [rpLeft]; + end; + + if Present = '0' then + ajTextView.Text := SwitchName + ' (nicht verbunden)' + else + ajTextView.Text := SwitchName; + + ajTextView.Name := 'lblSwitch' + IntToStr(num); + ajTextView.FontSize := 16; + ajTextView.MarginLeft := 10; + ajTextView.MarginRight := 50; + + + ajTextView.Init(gApp); + + + myjTextView := (AndroidModule1.FindComponent('lblSwitch' + IntToStr(num)) as JTextView); + + + ajSwitch := jSwitchButton.Create(self); + ajSwitch.Parent := myjPanel; + + ajSwitch.Name := 'mySwitch' + IntToStr(num); + + + if Present = '1' then + ajSwitch.Visible := True + else + ajSwitch.Visible := False; + + if State = '0' then + ajSwitch.State := tsOff + else + ajSwitch.State := tsOn; + + ajSwitch.Tag := num; + ajSwitch.OnToggle := aSwitchSwitch; + ajSwitch.PosRelativeToParent := [rpEnd]; + + ajSwitch.Init(gApp); + +end; +// Schalter entfernen (vor der Neuverbindung) +procedure TAndroidModule1.ClearSwitchPanel(); +var + I: integer; +begin + for I := Length(DeviceList) - 1 downto 0 do + begin + if DeviceList[i].HasSwitch = 1 then + (AndroidModule1.FindComponent('SwitchPanel' + IntToStr(i)) as jPanel).Free; + end; + +end; +// Log-Meldungen speichern +procedure TAndroidModule1.Logger(msg: string); +begin + if DebugLog = True then + begin + + {$IFDEF ANDROID} + Messages.Add(msg); +{$ENDIF ANDROID} +{$IFDEF Linux} + Memo1.Lines.Add(msg); +{$ENDIF Linux} + end; +end; +// Fehler loggen +procedure TAndroidModule1.Logger2(Sender: TObject; EMessage: string); +begin + Logger(EMessage); +end; + + +end. diff --git a/SmartFritz/jni/unit2.lfm b/SmartFritz/jni/unit2.lfm new file mode 100644 index 0000000000000000000000000000000000000000..3f06565ad9bdbc8041e46015c3ee718c77ed939f --- /dev/null +++ b/SmartFritz/jni/unit2.lfm @@ -0,0 +1,338 @@ +object AndroidModule2: TAndroidModule2 + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 882 + Top = 186 + Width = 320 + Height = 537 + Text = 'AndroidModule2' + ActivityMode = actEasel + BackgroundColor = colbrDefault + ActionBarTitle = abtDefault + AnimationDurationIn = 1500 + AnimationDurationOut = 1500 + AnimationMode = animRightToLeft + OnJNIPrompt = AndroidModule2JNIPrompt + object jPanel1: jPanel + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 0 + Top = 0 + Width = 320 + Height = 537 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpMatchParent + BackgroundColor = colbrWhite + MinPinchZoomFactor = 0.25 + MaxPinchZoomFactor = 4 + AnimationDurationIn = 250 + AnimationMode = animRightToLeft + object lblURL: jTextView + MarginLeft = 15 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 15 + Top = 5 + Width = 233 + Height = 21 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [rpTop, rpLeft] + LayoutParamWidth = lpWrapContent + LayoutParamHeight = lpWrapContent + Text = 'Fritzbox-URL (mit http:// oder https://):' + Alignment = taLeft + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + TextTypeFace = tfNormal + FontSizeUnit = unitDefault + GravityInParent = lgNone + end + object edtURL: jEditText + MarginLeft = 5 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 5 + Top = 36 + Width = 310 + Height = 39 + Visible = True + Anchor = lblURL + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [rpLeft] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpWrapContent + Alignment = taLeft + InputTypeEx = itxText + MaxTextLength = -1 + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + HintTextColor = colbrDefault + ScrollBarStyle = scrNone + MaxLines = 1 + HorScrollBar = True + VerScrollBar = True + WrappingLine = False + Editable = True + FontSizeUnit = unitDefault + CloseSoftInputOnEnter = True + CapSentence = False + CaptureBackPressed = False + GravityInParent = lgNone + end + object lblUserName: jTextView + MarginLeft = 15 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 15 + Top = 85 + Width = 198 + Height = 21 + Visible = True + Anchor = edtURL + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [rpLeft] + LayoutParamWidth = lpWrapContent + LayoutParamHeight = lpWrapContent + Text = 'Benutzername (im LAN optional):' + Alignment = taLeft + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + TextTypeFace = tfNormal + FontSizeUnit = unitDefault + GravityInParent = lgNone + end + object edtUserName: jEditText + MarginLeft = 5 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 5 + Top = 116 + Width = 310 + Height = 39 + Visible = True + Anchor = lblUserName + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [rpLeft] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpWrapContent + Alignment = taLeft + InputTypeEx = itxText + MaxTextLength = -1 + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + HintTextColor = colbrDefault + ScrollBarStyle = scrNone + MaxLines = 1 + HorScrollBar = True + VerScrollBar = True + WrappingLine = False + Editable = True + FontSizeUnit = unitDefault + CloseSoftInputOnEnter = True + CapSentence = False + CaptureBackPressed = False + GravityInParent = lgNone + end + object edtPassword: jEditText + MarginLeft = 5 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 5 + Top = 196 + Width = 310 + Height = 39 + Visible = True + Anchor = lblPassword + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [rpLeft] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpWrapContent + Alignment = taLeft + InputTypeEx = itxTextPassword + MaxTextLength = -1 + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + HintTextColor = colbrDefault + ScrollBarStyle = scrNone + MaxLines = 1 + HorScrollBar = True + VerScrollBar = True + WrappingLine = False + Editable = True + FontSizeUnit = unitDefault + CloseSoftInputOnEnter = True + CapSentence = False + CaptureBackPressed = False + GravityInParent = lgNone + end + object lblPassword: jTextView + MarginLeft = 15 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 15 + Top = 165 + Width = 58 + Height = 21 + Visible = True + Anchor = edtUserName + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [rpLeft] + LayoutParamWidth = lpWrapContent + LayoutParamHeight = lpWrapContent + Text = 'Passwort:' + Alignment = taLeft + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + TextTypeFace = tfNormal + FontSizeUnit = unitDefault + GravityInParent = lgNone + end + object btnSaveSettings: jButton + MarginLeft = 5 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 5 + Top = 371 + Width = 310 + Height = 51 + Visible = True + Anchor = chkDebugLog + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpWrapContent + Text = 'Einstellungen speichern' + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + FontSizeUnit = unitDefault + GravityInParent = lgNone + OnClick = btnSaveSettingsClick + end + object chkShowPassword: jCheckBox + MarginLeft = 5 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 5 + Top = 245 + Width = 158 + Height = 32 + Visible = True + Anchor = edtPassword + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [rpLeft] + LayoutParamWidth = lpWrapContent + LayoutParamHeight = lpWrapContent + Text = 'Passwort zeigen' + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + Checked = False + FontSizeUnit = unitDefault + OnClick = chkShowPasswordClick + end + object chkSavePassword: jCheckBox + MarginLeft = 5 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 5 + Top = 287 + Width = 183 + Height = 32 + Visible = True + Anchor = chkShowPassword + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [rpLeft] + LayoutParamWidth = lpWrapContent + LayoutParamHeight = lpWrapContent + Text = 'Passwort speichern' + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + Checked = True + FontSizeUnit = unitDefault + OnClick = chkSavePasswordClick + end + object chkDebugLog: jCheckBox + MarginLeft = 5 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 5 + Top = 329 + Width = 196 + Height = 32 + Visible = True + Anchor = chkSavePassword + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [rpLeft] + LayoutParamWidth = lpWrapContent + LayoutParamHeight = lpWrapContent + Text = 'Debug-Log aktivieren' + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + Checked = False + FontSizeUnit = unitDefault + end + object btnExternalIP: jButton + MarginLeft = 5 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 5 + Top = 432 + Width = 310 + Height = 51 + Visible = True + Anchor = btnSaveSettings + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpWrapContent + Text = 'Externe IP abrufen' + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + FontSizeUnit = unitDefault + GravityInParent = lgNone + OnClick = btnExternalIPClick + end + end +end diff --git a/SmartFritz/jni/unit2.pas b/SmartFritz/jni/unit2.pas new file mode 100644 index 0000000000000000000000000000000000000000..5668b4fed84fdb3fe42f44d8eff1435405be5147 --- /dev/null +++ b/SmartFritz/jni/unit2.pas @@ -0,0 +1,122 @@ +{Hint: save all files to location: /jni } +unit unit2; + +{$mode delphi} + +interface + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + {$ENDIF}{$ENDIF} + Classes, SysUtils, AndroidWidget, Laz_And_Controls, preferences; + +type + + { TAndroidModule2 } + + TAndroidModule2 = class(jForm) + edtURL: jEditText; + edtUserName: jEditText; + edtPassword: jEditText; + btnSaveSettings: jButton; + chkShowPassword: jCheckBox; + chkSavePassword: jCheckBox; + chkDebugLog: jCheckBox; + btnExternalIP: jButton; + jPanel1: jPanel; + lblURL: jTextView; + lblUserName: jTextView; + lblPassword: jTextView; + procedure AndroidModule2JNIPrompt(Sender: TObject); + procedure btnExternalIPClick(Sender: TObject); + + procedure btnSaveSettingsClick(Sender: TObject); + procedure chkShowPasswordClick(Sender: TObject); + procedure chkSavePasswordClick(Sender: TObject); + procedure LoadSettings; + private + {private declarations} + public + {public declarations} + Procedure SaveSettings(); + end; + +var + AndroidModule2: TAndroidModule2; + +implementation + +uses unit1; + +{$R *.lfm} + + +{ TAndroidModule2 } + +procedure TAndroidModule2.btnSaveSettingsClick(Sender: TObject); +begin + SaveSettings; +end; + +procedure TAndroidModule2.chkShowPasswordClick(Sender: TObject); +begin + if chkShowPassword.Checked Then + edtPassword.InputTypeEx:=itxText + else + edtPassword.InputTypeEx:=itxTextPassword; +end; + +procedure TAndroidModule2.chkSavePasswordClick(Sender: TObject); +begin + // +end; + +procedure TAndroidModule2.AndroidModule2JNIPrompt(Sender: TObject); +begin +//LoadSettings; +end; + +procedure TAndroidModule2.btnExternalIPClick(Sender: TObject); +begin +AndroidModule1.GetExternalIP(); + +end; + + + +procedure TAndroidModule2.LoadSettings; +begin +edtURL.Text:=AndroidModule1.FBOXURL; + if (LeftStr(edtURL.Text,7) <> 'http://') AND (LeftStr(edtURL.Text,8) <> 'https://')then + edtURL.Text:='http://' + edtURL.Text; + + edtUserName.text:=AndroidModule1.Username; + edtPassword.Text:=AndroidModule1.Password; + chkSavePassword.Checked:=AndroidModule1.jPreferences1.GetBoolData('SavePassword',false); + chkDebugLog.Checked:=AndroidModule1.jPreferences1.GetBoolData('DebugLog',false); + +exit; +edtURL.Text:=AndroidModule1.jPreferences1.GetStringData('FritzboxURL',''); + if (LeftStr(edtURL.Text,7) <> 'http://') AND (LeftStr(edtURL.Text,8) <> 'https://')then + edtURL.Text:='http://' + edtURL.Text; + + edtUserName.text:=AndroidModule1.jPreferences1.GetStringData('User',''); + edtPassword.Text:=AndroidModule1.jPreferences1.GetStringData('Password',''); + chkSavePassword.Checked:=AndroidModule1.jPreferences1.GetBoolData('SavePassword',false); + chkDebugLog.Checked:=AndroidModule1.jPreferences1.GetBoolData('DebugLog',false); +end; + +procedure TAndroidModule2.SaveSettings(); +begin + if (LeftStr(edtURL.Text,7) <> 'http://') AND (LeftStr(edtURL.Text,8) <> 'https://')then + edtURL.Text:='http://' + edtURL.Text; +AndroidModule1.FBOXURL:=Trim(edtURL.Text); +AndroidModule1.Username:=Trim(edtUserName.text); +AndroidModule1.Password:=Trim(edtPassword.Text); +AndroidModule1.SavePassword:=chkSavePassword.Checked; +AndroidModule1.DebugLog:=chkDebugLog.Checked; +AndroidModule1.SaveSettings; +end; + +end. diff --git a/SmartFritz/jni/unit3.lfm b/SmartFritz/jni/unit3.lfm new file mode 100644 index 0000000000000000000000000000000000000000..eaadc18e7b310d914fc8c18a14846dee0f35a416 --- /dev/null +++ b/SmartFritz/jni/unit3.lfm @@ -0,0 +1,99 @@ +object AndroidModule3: TAndroidModule3 + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 1213 + Top = 184 + Width = 294 + Height = 536 + Text = 'AndroidModule3' + ActivityMode = actEasel + BackgroundColor = colbrDefault + ActionBarTitle = abtDefault + AnimationDurationIn = 1500 + AnimationDurationOut = 1500 + AnimationMode = animRightToLeft + OnJNIPrompt = AndroidModule3JNIPrompt + object jPanel1: jPanel + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 0 + Top = 0 + Width = 294 + Height = 536 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpMatchParent + BackgroundColor = colbrWhite + MinPinchZoomFactor = 0.25 + MaxPinchZoomFactor = 4 + AnimationDurationIn = 250 + AnimationMode = animRightToLeft + object edtLog: jEditText + MarginLeft = 5 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 5 + Top = 36 + Width = 284 + Height = 39 + Visible = True + Anchor = jTextView1 + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpWrapContent + Alignment = taLeft + InputTypeEx = itxMultiLine + MaxTextLength = 3000 + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + HintTextColor = colbrDefault + ScrollBarStyle = scrlInsideInset + MaxLines = 2000 + HorScrollBar = True + VerScrollBar = True + WrappingLine = True + Editable = False + FontSizeUnit = unitDefault + CloseSoftInputOnEnter = True + CapSentence = False + CaptureBackPressed = False + GravityInParent = lgNone + end + object jTextView1: jTextView + MarginLeft = 15 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 15 + Top = 5 + Width = 26 + Height = 21 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [rpTop, rpLeft] + LayoutParamWidth = lpWrapContent + LayoutParamHeight = lpWrapContent + Text = 'Log:' + Alignment = taLeft + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + TextTypeFace = tfNormal + FontSizeUnit = unitDefault + GravityInParent = lgNone + end + end +end diff --git a/SmartFritz/jni/unit3.pas b/SmartFritz/jni/unit3.pas new file mode 100644 index 0000000000000000000000000000000000000000..d1728dca2edf76167f292b7fc45581a9aa4567fa --- /dev/null +++ b/SmartFritz/jni/unit3.pas @@ -0,0 +1,46 @@ +{Hint: save all files to location: /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/jni } +unit unit3; + +{$mode delphi} + +interface + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + {$ENDIF}{$ENDIF} + Classes, SysUtils, AndroidWidget, Laz_And_Controls; + +type + + { TAndroidModule3 } + + TAndroidModule3 = class(jForm) + edtLog: jEditText; + jPanel1: jPanel; + jTextView1: jTextView; + procedure AndroidModule3JNIPrompt(Sender: TObject); + private + {private declarations} + public + {public declarations} + end; + +var + AndroidModule3: TAndroidModule3; + +implementation + + +{$R *.lfm} + + +{ TAndroidModule3 } + +procedure TAndroidModule3.AndroidModule3JNIPrompt(Sender: TObject); +begin +// +end; + + +end. diff --git a/SmartFritz/jni/unit4.lfm b/SmartFritz/jni/unit4.lfm new file mode 100644 index 0000000000000000000000000000000000000000..1078f69456c847483ecf18194c29472a003cfe36 --- /dev/null +++ b/SmartFritz/jni/unit4.lfm @@ -0,0 +1,91 @@ +object AndroidModule4: TAndroidModule4 + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 1472 + Top = 178 + Width = 320 + Height = 539 + Text = 'AndroidModule4' + ActivityMode = actEasel + BackgroundColor = colbrDefault + ActionBarTitle = abtDefault + AnimationDurationIn = 1500 + AnimationDurationOut = 1500 + AnimationMode = animNone + object jPanel1: jPanel + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 0 + Top = 0 + Width = 320 + Height = 539 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpMatchParent + BackgroundColor = colbrWhite + MinPinchZoomFactor = 0.25 + MaxPinchZoomFactor = 4 + AnimationDurationIn = 250 + AnimationMode = animRightToLeft + object lv: jExpandableListView + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 0 + Top = 31 + Width = 320 + Height = 96 + Visible = True + Anchor = jlblInfos + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [rpLeft] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpWrapContent + GroupItemDelimiter = '$' + ChildItemDelimiter = ';' + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontChildColor = colbrDefault + FontSize = 0 + FontChildSize = 0 + FontSizeUnit = unitDefault + TextAlign = alLeft + TextChildAlign = alLeft + HighLightSelectedChildItemColor = colbrDefault + end + object jlblInfos: jTextView + MarginLeft = 15 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 15 + Top = 5 + Width = 33 + Height = 21 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [rpTop, rpLeft] + LayoutParamWidth = lpWrapContent + LayoutParamHeight = lpWrapContent + Text = 'Infos:' + Alignment = taLeft + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + TextTypeFace = tfNormal + FontSizeUnit = unitDefault + GravityInParent = lgNone + end + end +end diff --git a/SmartFritz/jni/unit4.pas b/SmartFritz/jni/unit4.pas new file mode 100644 index 0000000000000000000000000000000000000000..3dbbda0ba60b19e0fa9efff07c9c174b8d4db40f --- /dev/null +++ b/SmartFritz/jni/unit4.pas @@ -0,0 +1,36 @@ +{Hint: save all files to location: /jni } +unit unit4; + +{$mode delphi} + +interface + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + {$ENDIF}{$ENDIF} + Classes, SysUtils, AndroidWidget, Laz_And_Controls, expandablelistview; + +type + + { TAndroidModule4 } + + TAndroidModule4 = class(jForm) + lv: jExpandableListView; + jPanel1: jPanel; + jlblInfos: jTextView; + private + {private declarations} + public + {public declarations} + end; + +var + AndroidModule4: TAndroidModule4; + +implementation + +{$R *.lfm} + + +end. diff --git a/SmartFritz/jni/unit5.lfm b/SmartFritz/jni/unit5.lfm new file mode 100644 index 0000000000000000000000000000000000000000..c191e9aa1c4e99e9f6c9baf505e142d9cefa10c6 --- /dev/null +++ b/SmartFritz/jni/unit5.lfm @@ -0,0 +1,122 @@ +object AndroidModule5: TAndroidModule5 + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 1662 + Top = 160 + Width = 320 + Height = 400 + Text = 'AndroidModule5' + ActivityMode = actEasel + BackgroundColor = colbrDefault + ActionBarTitle = abtDefault + AnimationDurationIn = 1500 + AnimationDurationOut = 1500 + AnimationMode = animRightToLeft + object jPanel1: jPanel + MarginLeft = 0 + MarginTop = 0 + MarginRight = 0 + MarginBottom = 0 + Enabled = True + Left = 0 + Top = 0 + Width = 320 + Height = 400 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpMatchParent + BackgroundColor = colbrWhite + MinPinchZoomFactor = 0.25 + MaxPinchZoomFactor = 4 + AnimationDurationIn = 250 + AnimationMode = animRightToLeft + object lblCall: jTextView + MarginLeft = 15 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 15 + Top = 5 + Width = 57 + Height = 21 + Visible = True + PosRelativeToAnchor = [] + PosRelativeToParent = [rpTop, rpLeft] + LayoutParamWidth = lpWrapContent + LayoutParamHeight = lpWrapContent + Text = 'Anrufliste' + Alignment = taLeft + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + TextTypeFace = tfNormal + FontSizeUnit = unitDefault + GravityInParent = lgNone + end + object edtCall: jEditText + MarginLeft = 5 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = True + Left = 5 + Top = 97 + Width = 310 + Height = 39 + Visible = True + Anchor = btnGetCallList + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [rpLeft] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpWrapContent + Alignment = taLeft + InputTypeEx = itxMultiLine + MaxTextLength = 1000 + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + HintTextColor = colbrDefault + ScrollBarStyle = scrlInsideInset + MaxLines = 1000 + HorScrollBar = True + VerScrollBar = True + WrappingLine = True + Editable = False + FontSizeUnit = unitDefault + CloseSoftInputOnEnter = True + CapSentence = False + CaptureBackPressed = False + GravityInParent = lgNone + end + object btnGetCallList: jButton + MarginLeft = 5 + MarginTop = 5 + MarginRight = 5 + MarginBottom = 5 + Enabled = False + Left = 5 + Top = 36 + Width = 310 + Height = 51 + Visible = True + Anchor = lblCall + PosRelativeToAnchor = [raBelow] + PosRelativeToParent = [] + LayoutParamWidth = lpMatchParent + LayoutParamHeight = lpWrapContent + Text = 'Anrufliste herunterladen' + BackgroundColor = colbrDefault + FontColor = colbrDefault + FontSize = 0 + FontSizeUnit = unitDefault + GravityInParent = lgNone + OnClick = btnGetCallListClick + end + end +end diff --git a/SmartFritz/jni/unit5.pas b/SmartFritz/jni/unit5.pas new file mode 100644 index 0000000000000000000000000000000000000000..da9d653f7c6e53f8b1f5ff59169bc557f55ed4fb --- /dev/null +++ b/SmartFritz/jni/unit5.pas @@ -0,0 +1,50 @@ +{Hint: save all files to location: /jni } +unit unit5; + +{$mode delphi} + +interface + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + {$ENDIF}{$ENDIF} + Classes, SysUtils, AndroidWidget, Laz_And_Controls; + +type + + { TAndroidModule5 } + + TAndroidModule5 = class(jForm) + edtCall: jEditText; + btnGetCallList: jButton; + jPanel1: jPanel; + lblCall: jTextView; + procedure btnGetCallListClick(Sender: TObject); + private + {private declarations} + public + {public declarations} + end; + +var + AndroidModule5: TAndroidModule5; + +implementation + +{$R *.lfm} +uses unit1; + +{ TAndroidModule5 } + +procedure TAndroidModule5.btnGetCallListClick(Sender: TObject); +begin + edtCall.Text:=''; + AndroidModule1.FBox.LogIn(AndroidModule1.Username, AndroidModule1.Password); + AndroidModule1.TheSid:=AndroidModule1.FBox.SID; + AndroidModule1.FBox.ServiceURL:=AndroidModule1.FBOXURL + '/fon_num/foncalls_list.lua?sid=' + AndroidModule1.TheSID + '&csv='; + AndroidModule1.FBox.FboxGetURL(); + edtCall.Text:= AndroidModule1.FBox.Response; +end; + +end. diff --git a/SmartFritz/keytool_input.txt b/SmartFritz/keytool_input.txt new file mode 100644 index 0000000000000000000000000000000000000000..0da193d48b783e52b4e21ac3c4b9643d38c6fd50 --- /dev/null +++ b/SmartFritz/keytool_input.txt @@ -0,0 +1,10 @@ +123456 +123456 +MyFirstName MyLastName +MyDevelopmentUnitName +MyCompanyName +MyCity +MT +BR +y +123456 diff --git a/SmartFritz/lamwdesigner/Controls.native b/SmartFritz/lamwdesigner/Controls.native new file mode 100644 index 0000000000000000000000000000000000000000..452fe210031e521634ec43c6688d14424f5a417d --- /dev/null +++ b/SmartFritz/lamwdesigner/Controls.native @@ -0,0 +1,42 @@ +public native void pAppOnCreate(Context context, RelativeLayout layout, Intent intent); +public native int pAppOnScreenStyle(); +public native void pAppOnNewIntent(Intent intent); +public native void pAppOnDestroy(); +public native void pAppOnPause(); +public native void pAppOnRestart(); +public native void pAppOnResume(); +public native void pAppOnStart(); +public native void pAppOnStop(); +public native void pAppOnBackPressed(); +public native int pAppOnRotate(int rotate); +public native void pAppOnUpdateLayout(); +public native void pAppOnConfigurationChanged(); +public native void pAppOnActivityResult(int requestCode, int resultCode, Intent data); +public native void pAppOnCreateOptionsMenu(Menu menu); +public native void pAppOnClickOptionMenuItem(MenuItem menuItem, int itemID, String itemCaption, boolean checked); +public native boolean pAppOnPrepareOptionsMenu(Menu menu, int menuSize); +public native boolean pAppOnPrepareOptionsMenuItem(Menu menu, MenuItem menuItem, int itemIndex); +public native void pAppOnCreateContextMenu(ContextMenu menu); +public native void pAppOnClickContextMenuItem(MenuItem menuItem, int itemID, String itemCaption, boolean checked); +public native void pOnDraw(long pasobj); +public native void pOnTouch(long pasobj, int act, int cnt, float x1, float y1, float x2, float y2); +public native void pOnClickGeneric(long pasobj, int value); +public native boolean pAppOnSpecialKeyDown(char keyChar, int keyCode, String keyCodeString); +public native void pOnDown(long pasobj, int value); +public native void pOnClick(long pasobj, int value); +public native void pOnLongClick(long pasobj, int value); +public native void pOnDoubleClick(long pasobj, int value); +public native void pOnChange(long pasobj, String txt, int count); +public native void pOnChanged(long pasobj, String txt, int count); +public native void pOnEnter(long pasobj); +public native void pOnBackPressed(long pasobj); +public native void pOnClose(long pasobj); +public native void pAppOnViewClick(View view, int id); +public native void pAppOnListItemClick(AdapterView adapter, View view, int position, int id); +public native void pOnFlingGestureDetected(long pasobj, int direction); +public native void pOnPinchZoomGestureDetected(long pasobj, float scaleFactor, int state); +public native void pOnLostFocus(long pasobj, String text); +public native void pOnBeforeDispatchDraw(long pasobj, Canvas canvas, int tag); +public native void pOnAfterDispatchDraw(long pasobj, Canvas canvas, int tag); +public native void pOnLayouting(long pasobj, boolean changed); +public native void pAppOnRequestPermissionResult(int requestCode, String permission, int grantResult); diff --git a/SmartFritz/lamwdesigner/jExpandableListView.native b/SmartFritz/lamwdesigner/jExpandableListView.native new file mode 100644 index 0000000000000000000000000000000000000000..aa1386c7ad3395bd381dbbfa70ce95fafc0a70a9 --- /dev/null +++ b/SmartFritz/lamwdesigner/jExpandableListView.native @@ -0,0 +1,3 @@ +public native void pOnExpandableListViewChildClick(long pasobj, int groupPosition, String groupHeader, int childItemPosition, String childItemCaption); +public native void pOnExpandableListViewGroupExpand(long pasobj, int groupPosition, String groupHeader); +public native void pOnExpandableListViewGroupCollapse(long pasobj, int groupPosition, String groupHeader); \ No newline at end of file diff --git a/SmartFritz/lamwdesigner/jHttpClient.native b/SmartFritz/lamwdesigner/jHttpClient.native new file mode 100644 index 0000000000000000000000000000000000000000..1409ac3d6ded10d198e8214c897be705b6f64a23 --- /dev/null +++ b/SmartFritz/lamwdesigner/jHttpClient.native @@ -0,0 +1,4 @@ +public native void pOnHttpClientContentResult(long pasobj, String content); +public native void pOnHttpClientCodeResult(long pasobj, int code); +public native void pOnHttpClientUploadProgress(long pasobj, long progress); +public native void pOnHttpClientUploadFinished(long pasobj, int connectionStatusCode, String connectionStatusMessage, String fullFileName); \ No newline at end of file diff --git a/SmartFritz/lamwdesigner/jSwitchButton.native b/SmartFritz/lamwdesigner/jSwitchButton.native new file mode 100644 index 0000000000000000000000000000000000000000..297a7661a9408d8af443f9b4451d2f4114db701b --- /dev/null +++ b/SmartFritz/lamwdesigner/jSwitchButton.native @@ -0,0 +1 @@ +public native void pOnChangeSwitchButton(long pasobj, boolean state); \ No newline at end of file diff --git a/SmartFritz/lamwdesigner/jsBottomNavigationView.native b/SmartFritz/lamwdesigner/jsBottomNavigationView.native new file mode 100644 index 0000000000000000000000000000000000000000..e9642e004ff32d3975e036a3b3ac36ffa6ac93a2 --- /dev/null +++ b/SmartFritz/lamwdesigner/jsBottomNavigationView.native @@ -0,0 +1 @@ +public native void pOnClickBottomNavigationViewItem(long pasobj, int itemId, String itemCaption); \ No newline at end of file diff --git a/SmartFritz/lamwdesigner/jsNavigationView.native b/SmartFritz/lamwdesigner/jsNavigationView.native new file mode 100644 index 0000000000000000000000000000000000000000..0f726114f18fa18383bafe0289d047ddb44f7691 --- /dev/null +++ b/SmartFritz/lamwdesigner/jsNavigationView.native @@ -0,0 +1 @@ +public native void pOnClickNavigationViewItem(long pasobj, int itemId, String itemCaption); \ No newline at end of file diff --git a/SmartFritz/launch-avd-default.bat b/SmartFritz/launch-avd-default.bat new file mode 100644 index 0000000000000000000000000000000000000000..d0f0d79293a332832b76701e1efddaf3d83a3bbb --- /dev/null +++ b/SmartFritz/launch-avd-default.bat @@ -0,0 +1,3 @@ +cd /home/te/Android/Sdk/tools +tools emulator -avd avd_api_14 & +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz diff --git a/SmartFritz/local.properties b/SmartFritz/local.properties new file mode 100644 index 0000000000000000000000000000000000000000..4007e9546000d1a32acd097c6a13c4d436ad4730 --- /dev/null +++ b/SmartFritz/local.properties @@ -0,0 +1,2 @@ +sdk.dir=/home/te/Android/Sdk/ +ndk.dir=/home/te/Android/Sdk/ndk/21.2.6472646/ diff --git a/SmartFritz/logcat.bat b/SmartFritz/logcat.bat new file mode 100644 index 0000000000000000000000000000000000000000..60882f75bf4bb7328b1758da9dc693a285ec9a3f --- /dev/null +++ b/SmartFritz/logcat.bat @@ -0,0 +1,2 @@ +/home/te/Android/Sdk/platform-tools/adb logcat & +pause diff --git a/SmartFritz/logcat.sh b/SmartFritz/logcat.sh new file mode 100755 index 0000000000000000000000000000000000000000..fb08cee7c3150290c1664d52a34e27896b24878f --- /dev/null +++ b/SmartFritz/logcat.sh @@ -0,0 +1 @@ +/home/te/Android/Sdk/platform-tools/adb logcat & diff --git a/SmartFritz/proguard-project.txt b/SmartFritz/proguard-project.txt new file mode 100644 index 0000000000000000000000000000000000000000..77571682573f059987612d9ff43fbefb4029f3a8 --- /dev/null +++ b/SmartFritz/proguard-project.txt @@ -0,0 +1,20 @@ +# To enable ProGuard in your project, edit project.properties +# to define the proguard.config property as described in that file. +# +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in ${sdk.dir}/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the ProGuard +# include property in project.properties. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} diff --git a/SmartFritz/project.properties b/SmartFritz/project.properties new file mode 100644 index 0000000000000000000000000000000000000000..51da2c95243974119908b57cc70af40c78857c44 --- /dev/null +++ b/SmartFritz/project.properties @@ -0,0 +1,14 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system edit +# "ant.properties", and override values to adapt the script to your +# project structure. +# +# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): +#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt + +# Project target. +target=android-28 diff --git a/SmartFritz/readme.txt b/SmartFritz/readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..d7e29e0b5f0da6db1a86d25cc6f724bfdd613534 --- /dev/null +++ b/SmartFritz/readme.txt @@ -0,0 +1,50 @@ +Tutorial: How to get your Android Application [Apk] using "Ant": + + NEW! Go to Lazarus IDE menu "Run--> [LAMW] Build and Run"! Thanks to Anton!!! + +1. Double click "ant-build-debug.bat [.sh]" to build Apk + +2. If Android Virtual Device[AVD]/Emulator [or real device] is running then: + 2.1 double click "install-debug.bat" to install the Apk on the Emulator [or real device] + 2.2 look for the App "SmartFritz" in the Emulator [or real device] and click it! + +3. If AVD/Emulator is NOT running: + 3.1 If AVD/Emulator NOT exist: + 3.1.1 double click "paused_create-avd-default.bat" to create the AVD [/utils folder] + 3.2 double click "launch-avd-default.bat" to launch the Emulator [/utils folder] + 3.3 look for the App "SmartFritz" in the Emulator and click it! + +4. Log/Debug + 4.1 double click "logcat*.bat" to read logs and bugs! [/utils folder] + +5. Uninstall Apk + 5.1 double click "uninstall.bat" to remove Apk from the Emulator [or real device]! + +6. To find your Apk look for the "SmartFritz-debug.apk" in /bin folder! + +7. Android Asset Packaging Tool: to know which files were packed in "SmartFritz-debug.apk" + 7.1 double click "aapt.bat" [/utils folder] + +8. To see all available Android targets in your system [/utils folder] + 8.1 double click "paused_list_target.bat" + +9. Hint 1: you can edit "*.bat" to extend/modify some command or to fix some incorrect info/path! + +10.Hint 2: you can edit "build.xml" to set another Android target. ex. "android-18" or "android-19" etc. + WARNING: Yes, if after run "ant-build-debug.*" the folder "...\bin" is still empty then try another target! + WARNING: If you changed the target in "build.xml" change it in "AndroidManifest.xml" too! + +11.WARNING: After a new [Lazarus IDE]-> "run->build" do not forget to run again: "ant-build-debug.bat" and "install.bat" ! + +12. Linux users: use "ant-build-debug.sh" , "install-debug.sh" , "uninstall.sh" and "logcat.sh" [thanks to Stephano!] + WARNING: All demos Apps was generate on my windows system! So, please, edit its to correct paths...! + +13. WARNING, before to execute "ant-build-release.bat" [.sh] you need execute "release-keystore.bat" [.sh] ! + Please, read "How_To_Get_Your_Signed_Release_Apk.txt" + +14. Please, for more info, look for "How to use the Demos" in "LAMW: Lazarus Android Module Wizard" readme.txt!! + +.... Thank you! + +.... by jmpessoa_hotmail_com + diff --git a/SmartFritz/release-keystore-macos.sh b/SmartFritz/release-keystore-macos.sh new file mode 100755 index 0000000000000000000000000000000000000000..309f7538797fdb591ce98dfc1c777dfab5eb10e1 --- /dev/null +++ b/SmartFritz/release-keystore-macos.sh @@ -0,0 +1,4 @@ +export JAVA_HOME=${/usr/libexec/java_home} +export PATH=${JAVA_HOME}/bin:$PATH +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz +keytool -genkey -v -keystore smartfritz-release.keystore -alias smartfritz.keyalias -keyalg RSA -keysize 2048 -validity 10000 < /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/keytool_input.txt diff --git a/SmartFritz/release-keystore.bat b/SmartFritz/release-keystore.bat new file mode 100644 index 0000000000000000000000000000000000000000..21fa7b5f7dec8d03a2a7d4b75496b72c657ecd5f --- /dev/null +++ b/SmartFritz/release-keystore.bat @@ -0,0 +1,5 @@ +set JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 +set PATH=%JAVA_HOME%/bin;%PATH% +set JAVA_TOOL_OPTIONS=-Duser.language=en +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz +keytool -genkey -v -keystore smartfritz-release.keystore -alias smartfritz.keyalias -keyalg RSA -keysize 2048 -validity 10000 < /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/keytool_input.txt diff --git a/SmartFritz/release-keystore.sh b/SmartFritz/release-keystore.sh new file mode 100755 index 0000000000000000000000000000000000000000..a8c04e9ad9ab95445fdc3bb8ef97088803c0b3a5 --- /dev/null +++ b/SmartFritz/release-keystore.sh @@ -0,0 +1,3 @@ +export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 +cd /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz +keytool -genkey -v -keystore smartfritz-release.keystore -alias smartfritz.keyalias -keyalg RSA -keysize 2048 -validity 10000 < /home/te/fpcupdeluxe/projects/LAMWProjects/SmartFritz/keytool_input.txt diff --git a/SmartFritz/res/drawable-hdpi/ic_call_icon.png b/SmartFritz/res/drawable-hdpi/ic_call_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6bb52340d1f81587147beffc76398a663f379a53 Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_call_icon.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_cervantes.png b/SmartFritz/res/drawable-hdpi/ic_cervantes.png new file mode 100755 index 0000000000000000000000000000000000000000..0eb90840c49c76a471b22a6328810b3b43923fa2 Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_cervantes.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_chevron_left_black_48dp.png b/SmartFritz/res/drawable-hdpi/ic_chevron_left_black_48dp.png new file mode 100755 index 0000000000000000000000000000000000000000..f443b3c06e520d2dabf05680e8da7a11ff18d68c Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_chevron_left_black_48dp.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_chevron_right_black_48dp.png b/SmartFritz/res/drawable-hdpi/ic_chevron_right_black_48dp.png new file mode 100755 index 0000000000000000000000000000000000000000..1ecbc5fc78ce59b445dce8def0b231ceb3ef4ebf Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_chevron_right_black_48dp.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_don_quixote.png b/SmartFritz/res/drawable-hdpi/ic_don_quixote.png new file mode 100755 index 0000000000000000000000000000000000000000..fc58952933fe4d946db5dcf430433b0954326cb3 Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_don_quixote.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_fritzbox.png b/SmartFritz/res/drawable-hdpi/ic_fritzbox.png new file mode 100644 index 0000000000000000000000000000000000000000..a168ebb87d53ea582541697f34742f58848f3ea6 Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_fritzbox.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_fritzbox_icon.png b/SmartFritz/res/drawable-hdpi/ic_fritzbox_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..5882c6b58224c56ddcc94d870b7298e4a9b90e4c Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_fritzbox_icon.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_lance.png b/SmartFritz/res/drawable-hdpi/ic_lance.png new file mode 100755 index 0000000000000000000000000000000000000000..196002831eee0a659cb9f4acdb3f9e1386960580 Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_lance.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_launcher.png b/SmartFritz/res/drawable-hdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..d1ce560e2b7322286a46af847cb3bff33a9577cd Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_launcher.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_log_icon.png b/SmartFritz/res/drawable-hdpi/ic_log_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..57eb595c173f6c92d53a3e433988eb57a569fd5c Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_log_icon.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_menu_white_36dp.png b/SmartFritz/res/drawable-hdpi/ic_menu_white_36dp.png new file mode 100755 index 0000000000000000000000000000000000000000..59aca7ceb1c7dde8652f4932b4714ed30d8db224 Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_menu_white_36dp.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_scene_1.jpg b/SmartFritz/res/drawable-hdpi/ic_scene_1.jpg new file mode 100755 index 0000000000000000000000000000000000000000..684d229c94de48dc47eeed2f33a43937e1e78ea6 Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_scene_1.jpg differ diff --git a/SmartFritz/res/drawable-hdpi/ic_scene_2.png b/SmartFritz/res/drawable-hdpi/ic_scene_2.png new file mode 100755 index 0000000000000000000000000000000000000000..01337c403f77051bea66439695619c39a34115a4 Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_scene_2.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_scene_3.jpg b/SmartFritz/res/drawable-hdpi/ic_scene_3.jpg new file mode 100755 index 0000000000000000000000000000000000000000..8625fc9e5d09864872ddc359374de73fa4bce7f4 Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_scene_3.jpg differ diff --git a/SmartFritz/res/drawable-hdpi/ic_settings_icon.png b/SmartFritz/res/drawable-hdpi/ic_settings_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..bc254745d53e687198af41231a8fa16884cafe0f Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_settings_icon.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_state_icon.png b/SmartFritz/res/drawable-hdpi/ic_state_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..db8f7b462e15e12a996212d3662d8a4bee4eb4d6 Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_state_icon.png differ diff --git a/SmartFritz/res/drawable-hdpi/ic_windmil.png b/SmartFritz/res/drawable-hdpi/ic_windmil.png new file mode 100755 index 0000000000000000000000000000000000000000..bbd1dfe6753424aa009fbd7af136fe3606ab4c35 Binary files /dev/null and b/SmartFritz/res/drawable-hdpi/ic_windmil.png differ diff --git a/SmartFritz/res/drawable-ldpi/ic_launcher.png b/SmartFritz/res/drawable-ldpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..84142a8bc137f87c752896bd727a3b89914f333f Binary files /dev/null and b/SmartFritz/res/drawable-ldpi/ic_launcher.png differ diff --git a/SmartFritz/res/drawable-mdpi/ic_launcher.png b/SmartFritz/res/drawable-mdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..e7386e72d3b56c762003deef6e2fe5df2995fd31 Binary files /dev/null and b/SmartFritz/res/drawable-mdpi/ic_launcher.png differ diff --git a/SmartFritz/res/drawable-xhdpi/ic_chevron_left_black_48dp.png b/SmartFritz/res/drawable-xhdpi/ic_chevron_left_black_48dp.png new file mode 100755 index 0000000000000000000000000000000000000000..d3b8e767857b665a0d131fbb2bff0441706b1a7f Binary files /dev/null and b/SmartFritz/res/drawable-xhdpi/ic_chevron_left_black_48dp.png differ diff --git a/SmartFritz/res/drawable-xhdpi/ic_chevron_right_black_48dp.png b/SmartFritz/res/drawable-xhdpi/ic_chevron_right_black_48dp.png new file mode 100755 index 0000000000000000000000000000000000000000..7522b3845a9ff88b2e547c55d4377a1852709a34 Binary files /dev/null and b/SmartFritz/res/drawable-xhdpi/ic_chevron_right_black_48dp.png differ diff --git a/SmartFritz/res/drawable-xhdpi/ic_launcher.png b/SmartFritz/res/drawable-xhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..d1ce560e2b7322286a46af847cb3bff33a9577cd Binary files /dev/null and b/SmartFritz/res/drawable-xhdpi/ic_launcher.png differ diff --git a/SmartFritz/res/drawable-xhdpi/ic_menu_white_36dp.png b/SmartFritz/res/drawable-xhdpi/ic_menu_white_36dp.png new file mode 100755 index 0000000000000000000000000000000000000000..9cb03482360f7357894c5ad1340238ca06fac6e2 Binary files /dev/null and b/SmartFritz/res/drawable-xhdpi/ic_menu_white_36dp.png differ diff --git a/SmartFritz/res/drawable-xxhdpi/ic_launcher.png b/SmartFritz/res/drawable-xxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..d1ce560e2b7322286a46af847cb3bff33a9577cd Binary files /dev/null and b/SmartFritz/res/drawable-xxhdpi/ic_launcher.png differ diff --git a/SmartFritz/res/drawable/bg_material.png b/SmartFritz/res/drawable/bg_material.png new file mode 100755 index 0000000000000000000000000000000000000000..3049ad1e0bd94f784098bafc26cd8ff53fececfa Binary files /dev/null and b/SmartFritz/res/drawable/bg_material.png differ diff --git a/SmartFritz/res/layout/activity_app.xml b/SmartFritz/res/layout/activity_app.xml new file mode 100644 index 0000000000000000000000000000000000000000..0824a8f36650de8f08c144e9a9e8648a6b14f57f --- /dev/null +++ b/SmartFritz/res/layout/activity_app.xml @@ -0,0 +1,10 @@ +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context=".App" > + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/hello_world"/> +</RelativeLayout> diff --git a/SmartFritz/res/raw/my_ca b/SmartFritz/res/raw/my_ca new file mode 100644 index 0000000000000000000000000000000000000000..864b5b50a0df46428a814e3b438c34cf454ad30a --- /dev/null +++ b/SmartFritz/res/raw/my_ca @@ -0,0 +1,22 @@ +-----BEGIN CERTIFICATE----- +MIIDpTCCAo2gAwIBAgIJALWmvxUkgR+QMA0GCSqGSIb3DQEBCwUAMBkxFzAVBgNV +BAMTDmFib3JhLnNwZG5zLmRlMB4XDTE4MTAwNTE3MTUyOFoXDTM4MDExNTE3MTUy +OFowGTEXMBUGA1UEAxMOYWJvcmEuc3BkbnMuZGUwggEiMA0GCSqGSIb3DQEBAQUA +A4IBDwAwggEKAoIBAQDjipe+oQa4Z+fgYal82u5L/v1EAvA7Fw2cMgFFZXcSkpeJ +aKVJTmRNHr8yJge2d+6mUof4WmHmg5XXkqUN+H7k25NNgkzObtmyTsHTULaDKyuO +UA4koZYno5Cv3w4IfSVEyGzW2cnjjihsl7KCdTJxeoa3XYkPGEugelmJkmD+9Vhq +SG8JHQ1ESOxrQNmbr0Y9/vAOVOtUBr/QrwXTTJsED1+zcXYbeEEdwiEcQZgzhmAS +THem8LNO/j34y0n3iYtYf2Jk6V+tvbP7zmc4GCwgFrgCGfM9HEhE4kqWfqvkIgj3 +itLKyq/V7f5/uljPscOCdc/SMsM9lZrPSCewfvlRAgMBAAGjge8wgewwHQYDVR0O +BBYEFBiFBTV55Flps/1uYpu71T6eqjB8MEkGA1UdIwRCMECAFBiFBTV55Flps/1u +Ypu71T6eqjB8oR2kGzAZMRcwFQYDVQQDEw5hYm9yYS5zcGRucy5kZYIJALWmvxUk +gR+QMAwGA1UdEwQFMAMBAf8wcgYDVR0RAQH/BGgwZoIOYWJvcmEuc3BkbnMuZGWC +HHp5Y3B2dHVrbnR0em8xc20ubXlmcml0ei5uZXSCCWZyaXR6LmJveIINd3d3LmZy +aXR6LmJveIILbXlmcml0ei5ib3iCD3d3dy5teWZyaXR6LmJveDANBgkqhkiG9w0B +AQsFAAOCAQEAco3MU7Tus6BVbvEvgjHNxxDS9Ku4Oo4/UtYCO4Koa4r7bX67+UXB +M6kQ/Xca4ZClXLZKA1uBnVjHA8rdqF/rpVgNnCTtlaGS2zAl69XszNQdFs1NDOtI +P23LjhpNl6pRIHLoO5NBwO9j2DThJ756+RyfBTzGoEf3YCtty/QiPIwXozyNBYcw +SjCevyc03+yUmshH/AllTDVqeYykttDCyVcP0JVLhNP6EPmE+K0dfkQGdaOQDKbm +LhcuWzVF53cfukwzAvb4UhLfso69TEHl3i1WVZPIGd6YxnmGHjNBUdSBoohNMilA +8WFlDqxE3+2p0s4IYQ2VpQeY1eh9EFoVTg== +-----END CERTIFICATE----- diff --git a/SmartFritz/res/values-v14/styles.xml b/SmartFritz/res/values-v14/styles.xml new file mode 100644 index 0000000000000000000000000000000000000000..ded28f7b4e8482bb692e952574df8900a39b92fb --- /dev/null +++ b/SmartFritz/res/values-v14/styles.xml @@ -0,0 +1,11 @@ +<resources> + <!-- + Base application theme for API 14+. This theme completely replaces + AppBaseTheme from BOTH res/values/styles.xml and + res/values-v11/styles.xml on API 14+ devices. + --> + <style name="AppBaseTheme" parent="android:Theme.DeviceDefault"> + <!-- API 14 theme customizations can go here. --> + </style> + +</resources> diff --git a/SmartFritz/res/values/colors.xml b/SmartFritz/res/values/colors.xml new file mode 100644 index 0000000000000000000000000000000000000000..fbf9ded64d90ecfaf4fb26ffb68910e5ef07b2f9 --- /dev/null +++ b/SmartFritz/res/values/colors.xml @@ -0,0 +1,10 @@ +<resources> + <color name="primary">#3F51B5</color> + <color name="primary_dark">#303F9F</color> + <color name="primary_light">#C5CAE9</color> + <color name="accent">#03A9F4</color> + <color name="primary_text">#212121</color> + <color name="secondary_text">#727272</color> + <color name="icons">#FFFFFF</color> + <color name="divider">#B6B6B6</color> +</resources> \ No newline at end of file diff --git a/SmartFritz/res/values/strings.xml b/SmartFritz/res/values/strings.xml new file mode 100644 index 0000000000000000000000000000000000000000..2454aa293cf6facef6bd01a727c5c5048c3268ec --- /dev/null +++ b/SmartFritz/res/values/strings.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<resources> + <string name="app_name">SmartFritz</string> + <string name="hello_world">Hello world!</string> +</resources> diff --git a/SmartFritz/res/values/styles.xml b/SmartFritz/res/values/styles.xml new file mode 100644 index 0000000000000000000000000000000000000000..1a183cb3ed33900d49f3864e78cf536b58a4e858 --- /dev/null +++ b/SmartFritz/res/values/styles.xml @@ -0,0 +1,22 @@ +<resources> + + <!-- + Base application theme, dependent on API level. This theme is replaced + by AppBaseTheme from res/values-vXX/styles.xml on newer devices. + --> + <style name="AppBaseTheme" parent="android:Theme.Light"> + <!-- + Theme customizations available in newer API levels can go in + res/values-vXX/styles.xml, while customizations related to + backward-compatibility can go here. + --> + </style> + + <!-- Application theme. --> + <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> + <!-- All customizations that are NOT specific to a particular API-level can go here. --> + <item name="colorPrimary">@color/primary</item> + <item name="colorPrimaryDark">@color/primary_dark</item> + </style> + +</resources> diff --git a/SmartFritz/res/xml/network_security_config.xml b/SmartFritz/res/xml/network_security_config.xml new file mode 100644 index 0000000000000000000000000000000000000000..7f9ee5019f03ae67e863d5e7ea5b072f9bba53ab --- /dev/null +++ b/SmartFritz/res/xml/network_security_config.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<network-security-config> + <base-config cleartextTrafficPermitted="true"> + <trust-anchors> + <certificates src="@raw/my_ca"/> + + + <certificates src="system" /> + <certificates src="user" /> + </trust-anchors> + </base-config> +</network-security-config> diff --git a/SmartFritz/src/org/muctec/smartfritz/App.java b/SmartFritz/src/org/muctec/smartfritz/App.java new file mode 100644 index 0000000000000000000000000000000000000000..226dc6859065d6a7f19c68162b9861061b791133 --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/App.java @@ -0,0 +1,325 @@ +package org.muctec.smartfritz; + +//Lamw: Lazarus Android Module Wizard - version 0.8.4 - 12 March - 2019 +//Form Designer and Components development model! +//https://github.com/jmpessoa/lazandroidmodulewizard +//http://forum.lazarus.freepascal.org/index.php/topic,21919.270.html + +//Android Java Interface for Pascal/Delphi XE5 +//And LAZARUS by Jose Marques Pessoa [december 2013] + +//Developers +// Simon,Choi / Choi,Won-sik +// simonsayz@naver.com +// http://blog.naver.com/simonsayz +// +// LoadMan / Jang,Yang-Ho +// wkddidgh@naver.com +// http://blog.naver.com/wkddidgh + +// Jose Marques Pessoa / josemarquespessoa@gmail.com + +import java.lang.Override; +//import android.app.Activity; +import android.support.v7.app.AppCompatActivity; +import android.content.Intent; +import android.content.res.Configuration; +import android.content.pm.ActivityInfo; +import android.widget.RelativeLayout; +import android.view.ContextMenu; +import android.view.ContextMenu.ContextMenuInfo; +import android.view.KeyEvent; +import android.view.Menu; +import android.view.MenuItem; +import android.view.View; +import android.view.WindowManager; +import android.os.Bundle; +import android.os.StrictMode; +import android.util.Log; +import android.content.Context; +import android.graphics.Canvas; + +public class App extends AppCompatActivity { +private Controls controls; + + private int screenOrientation = 0; //For update screen orientation. [by TR3E] + private boolean rlSizeChanged = false; + + //New "RelativeLayout" adapted to "Multiwindow" and automatic resizing. [by TR3E] + public class RLAppLayout extends RelativeLayout { + + public RLAppLayout(Context context) { + super(context); + } + + @Override + protected void onSizeChanged(int w, int h, int oldw, int oldh) { + super.onSizeChanged(w, h, oldw, oldh); + + if ((controls.screenWidth != w) || (controls.screenHeight != h)){ + controls.screenWidth = w; + controls.screenHeight = h; + rlSizeChanged = true; + } + + } + + @Override + protected void onDraw(Canvas canvas) { + super.onDraw(canvas); + + // If change size call "jAppOnRotate" for update screen. [by TR3E] + if( controls.formChangeSize || rlSizeChanged ){ + controls.formChangeSize = false; + rlSizeChanged = false; + + controls.formNeedLayout = true; + + //ssPortrait = 1, //Force Portrait + //ssLandscape = 2, //Force LandScape + if( controls.screenWidth < controls.screenHeight ) screenOrientation = 1; + if( controls.screenWidth > controls.screenHeight ) screenOrientation = 2; + + controls.jAppOnRotate(screenOrientation); + } + + // Call updatelayout automatically if necessary. [by TR3E] + if( controls.formNeedLayout ){ + controls.formNeedLayout = false; + controls.jAppOnUpdateLayout(); + } + } + } + + @Override + public void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + + //ref. http://stackoverflow.com/questions/8706464/defaulthttpclient-to-androidhttpclient + int systemVersion = android.os.Build.VERSION.SDK_INT; + if (systemVersion > 9) { + StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build(); + StrictMode.setThreadPolicy(policy); + } + + //Log.i("jApp","01.Activity.onCreate"); + controls = new Controls(); + controls.activity = this; + + controls.screenWidth = getResources().getDisplayMetrics().widthPixels; + controls.screenHeight = getResources().getDisplayMetrics().heightPixels; + + //New "RelativeLayout" adapted to "Multiwindows" and automatic resizing. [by TR3E] + controls.appLayout = new RLAppLayout(this); + controls.appLayout.getRootView().setBackgroundColor (0x00FFFFFF); + + controls.screenStyle = controls.jAppOnScreenStyle(); + controls.systemVersion = systemVersion; + + switch( controls.screenStyle ) { + case 1 : this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT ); break; + case 2 : this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); break; + default : ; // Device Default , Rotation by Device + } + + this.setContentView(controls.appLayout); + + this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN); + + controls.jAppOnCreate(this, controls.appLayout, getIntent()); + + // Force updating the screen would need for Android 8 or higher [by TR3E] + controls.appLayout.requestLayout(); + } + + //[ifdef_api23up] + @Override + public void onRequestPermissionsResult(int permsRequestCode, String[] permissions, int[] grantResults){ + + if ( (permissions.length > 0) && (grantResults.length > 0) ) { + for (int i = 0; i < permissions.length; i++) { + controls.jAppOnRequestPermissionResult(permsRequestCode, permissions[i], grantResults[i]); + } + } + } //[endif_api23up] + + @Override + protected void onNewIntent(Intent intent) { + super.onNewIntent(intent); + //Bundle extras = intent.getExtras(); + //if (extras != null) Log.i("onNewIntent", extras.getString("data")); + + controls.jAppOnNewIntent(intent);} + + @Override + protected void onDestroy() { super.onDestroy(); controls.jAppOnDestroy();} + + @Override + protected void onPause() {super.onPause(); controls.jAppOnPause();} + + @Override + protected void onRestart() {super.onRestart(); controls.jAppOnRestart();} + + @Override + protected void onResume() { super.onResume(); controls.jAppOnResume(); } + + @Override + protected void onStart() { super.onStart(); controls.jAppOnStart(); } + + @Override + protected void onStop() { super.onStop(); controls.jAppOnStop();} + + @Override + public void onBackPressed() { controls.jAppOnBackPressed();} + + @Override + public void onConfigurationChanged(Configuration newConfig) { + super.onConfigurationChanged(newConfig); + + screenOrientation = newConfig.orientation; + + controls.appLayout.requestLayout(); + } + + @Override + public void onActivityResult(int requestCode, int resultCode, Intent data) { + controls.jAppOnActivityResult(requestCode,resultCode,data); + } + + // http://stackoverflow.com/questions/15686555/display-back-button-on-action-bar + @Override + public boolean onOptionsItemSelected(MenuItem item) { + switch (item.getItemId()) { + case android.R.id.home: + // app icon in action bar clicked; go home + controls.jAppOnBackPressed(); + return true; + default: + String caption = item.getTitle().toString(); + controls.jAppOnClickOptionMenuItem(item, item.getItemId(), caption, item.isChecked()); + return true; //renabor + } + } + + //by jmpessoa: context menu support - Context menu items do not support icons! + @Override + public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) { + super.onCreateContextMenu(menu, v, menuInfo); + //Log.i("App.Java_onCreateContextMenu", "long_pressed!"); + + controls.jAppOnCreateContextMenu(menu); + } + + /*by jmpessoa: Handles menu item selections*/ + @Override + public boolean onContextItemSelected(MenuItem item) { + + String caption = item.getTitle().toString(); + controls.jAppOnClickContextMenuItem(item, item.getItemId(), caption, item.isChecked()); + return true; // stop propagating event + } + + //by jmpessoa: option menu support + @Override + public boolean onCreateOptionsMenu(Menu menu) { + + controls.jAppOnCreateOptionsMenu(menu); + return true; + } + + /*by jmpessoa: TODO :Handles prepare menu item*/ + @Override + public boolean onPrepareOptionsMenu(Menu menu) { + + boolean changeMenuItems = false; + boolean continueChangingItem = true; + + changeMenuItems =controls.jAppOnPrepareOptionsMenu(menu, menu.size()); + + if (changeMenuItems) { + for (int i = 0; i < menu.size(); i++) { + MenuItem item = menu.getItem(i); + continueChangingItem = controls.jAppOnPrepareOptionsItem(menu, item, i); + if (!continueChangingItem) break; + } + } + return super.onPrepareOptionsMenu(menu); + } + + /*by jmpessoa: TODO :Handles opened menu */ + @Override + public boolean onMenuOpened(int featureId, Menu menu) { + //TODO!!!! + return super.onMenuOpened(featureId, menu); + } + + //https://abhik1987.wordpress.com/tag/android-disable-home-button/ + //http://code.tutsplus.com/tutorials/android-sdk-intercepting-physical-key-events--mobile-10379 //otimo! + + //Return true to prevent this event from being propagated further, + //or false to indicate that you have not handled this event and it should continue to be propagated. + + @Override + public boolean onKeyDown(int keyCode, KeyEvent event) { + + char c = event.getDisplayLabel(); + //boolean mute = controls.jAppOnKeyDown(c,keyCode,KeyEvent.keyCodeToString(keyCode)); //TODO + //if (mute) return false; + switch(keyCode) { + + case KeyEvent.KEYCODE_BACK: + boolean mute = controls.jAppOnKeyDown(c,keyCode,KeyEvent.keyCodeToString(keyCode)); + if (!mute) { //continue ... + onBackPressed(); + return true; + } else { // exit! + return false; //caution!! the back_key will not close the App, no more!! + } + + case KeyEvent.KEYCODE_MENU: + controls.jAppOnKeyDown(c,keyCode,KeyEvent.keyCodeToString(keyCode)); + break; + + case KeyEvent.KEYCODE_SEARCH: + controls.jAppOnKeyDown(c,keyCode,KeyEvent.keyCodeToString(keyCode)); + break; + + case KeyEvent.KEYCODE_VOLUME_UP: + //event.startTracking(); //TODO + controls.jAppOnKeyDown(c,keyCode,KeyEvent.keyCodeToString(keyCode)); + break; + + case KeyEvent.KEYCODE_VOLUME_DOWN: + controls.jAppOnKeyDown(c,keyCode,KeyEvent.keyCodeToString(keyCode)); + break; + + /*commented! need SDK API >= 18 [Android 4.3] to compile!*/ + /* + case KeyEvent.KEYCODE_BRIGHTNESS_DOWN: + controls.jAppOnKeyDown(c,keyCode,KeyEvent.keyCodeToString(keyCode)); + break; + case KeyEvent.KEYCODE_BRIGHTNESS_UP: + controls.jAppOnKeyDown(c,keyCode,KeyEvent.keyCodeToString(keyCode)); + break; + */ + + case KeyEvent.KEYCODE_HEADSETHOOK: + controls.jAppOnKeyDown(c,keyCode,KeyEvent.keyCodeToString(keyCode)); + break; + + case KeyEvent.KEYCODE_DEL: + controls.jAppOnKeyDown(c,keyCode,KeyEvent.keyCodeToString(keyCode)); + break; + + case KeyEvent.KEYCODE_NUM: + controls.jAppOnKeyDown(c,keyCode,KeyEvent.keyCodeToString(keyCode)); + break; + + case KeyEvent.KEYCODE_NUM_LOCK: + controls.jAppOnKeyDown(c,keyCode,KeyEvent.keyCodeToString(keyCode)); + break; + //default: controls.jAppOnKeyDown(c,keyCode,KeyEvent.keyCodeToString(keyCode)); + } + return super.onKeyDown(keyCode, event); + } +} diff --git a/SmartFritz/src/org/muctec/smartfritz/Controls.java b/SmartFritz/src/org/muctec/smartfritz/Controls.java new file mode 100644 index 0000000000000000000000000000000000000000..726f79a0137117cd16d3529d57a67ca819674918 --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/Controls.java @@ -0,0 +1,2829 @@ +package org.muctec.smartfritz; + +//LAMW: Lazarus Android Module Wizard - version 0.8.4.6 - 10 November - 2019 +//RAD Android: Project Wizard, Form Designer and Components Development Model! + +//https://github.com/jmpessoa/lazandroidmodulewizard +//http://forum.lazarus.freepascal.org/index.php/topic,21919.270.html + +//Android Java Interface for LAZARUS [december/2013 by jmpessoa] + +//Developers: +// Simon,Choi / Choi,Won-sik +// simonsayz@naver.com +// http://blog.naver.com/simonsayz +// +// LoadMan / Jang,Yang-Ho +// wkddidgh@naver.com +// http://blog.naver.com/wkddidgh +// +// Jose Marques Pessoa / jmpessoa@hotmail.com +// +//Version +//History +// 2013.02.24 ver0.01 Started +// 2013.02.28 ver0.02 added Delphi Style +// 2013.03.01 ver0.03 added sysInfo +// 2013.03.05 ver0.04 added Java Loading Png +// 2013.03.08 ver0.05 Restructuring (Interlation #.02) +// 2013.07.13 ver0.06 added TForm +// 2013.07.22 ver0.07 added Back Event for Close +// 2013.07.26 ver0.08 Class,Method Cache (Single Thread,Class) +// 2013.07.30 ver0.09 added TEditText Keyboard,Focus +// 2013.08.02 ver0.10 added TextView - Enabled +// 2013.08.05 ver0.11 added Form Object +// 2013.08.11 ver0.12 added Canvas +// added Direct Bitmap access +// 2013.08.14 ver0.13 Fixed Memory Leak +// 2013.08.18 ver0.14 added OpenGL ES1 2D (Stencil) +// 2013.08.21 ver0.15 Fixed jImageBtn Memory Leak +// Fixed Socket Buffer +// 2013.08.23 ver0.16 Fixed Memory Leak for Form,Control +// added Form Stack +// 2013.08.24 ver0.17 added Thread +// 2013.08.26 ver0.18 added OpenGL ES2 2D/3D +// added Button Font Color/Height +// 2013.08.31 ver0.19 added Unified OpenGL ES1,2 Canvas +// added OpenGL ES1,2 Simulator for Windows +// 2013.09.01 ver0.20 added GLThread on Canvas +// Fixed OpenGL Crash +// rename example Name +// 12.2013 LAMW Started by jmpessoa + +import android.support.v4.app.ActivityCompat; +import android.support.v4.content.FileProvider; +import android.provider.DocumentsContract; +import android.view.animation.AccelerateInterpolator; +import android.view.animation.AlphaAnimation; +import android.view.animation.Animation; +import android.animation.LayoutTransition; +import android.annotation.SuppressLint; +import android.app.ActionBar; +import android.app.Activity; +import android.app.AlarmManager; +import android.app.AlertDialog; +import android.app.Dialog; +import android.app.PendingIntent; +import android.content.Context; +import android.content.Intent; +import android.content.pm.ActivityInfo; +import android.content.pm.PackageManager; +import android.content.pm.PackageManager.NameNotFoundException; +import android.content.res.AssetManager; +import android.content.res.Configuration; +import android.content.res.Resources; +import android.database.Cursor; +import android.graphics.Bitmap; +import android.graphics.BitmapFactory; +import android.graphics.Canvas; +import android.graphics.SurfaceTexture; +import android.graphics.drawable.BitmapDrawable; +import android.graphics.drawable.Drawable; +import android.graphics.Matrix; +import android.hardware.Sensor; +import android.os.Build; +import android.os.Bundle; +import android.os.CountDownTimer; +import android.os.Environment; +import android.os.Vibrator; +import android.telephony.SmsManager; +import android.telephony.SmsMessage; +import android.telephony.TelephonyManager; +import android.provider.ContactsContract; +import android.provider.MediaStore; +import android.util.AttributeSet; +import android.util.DisplayMetrics; +import android.util.TypedValue; +import android.net.ConnectivityManager; +import android.net.DhcpInfo; +import android.net.NetworkInfo; +import android.net.Uri; +import android.net.wifi.WifiInfo; +import android.net.wifi.WifiManager; +import android.util.Log; +import android.view.ContextMenu; +import android.view.Gravity; +import android.view.Menu; +import android.view.MenuItem; +import android.view.SurfaceHolder; +import android.view.View.OnClickListener; +import android.view.ViewGroup.MarginLayoutParams; +import android.view.View; +import android.view.ViewGroup; +import android.view.animation.DecelerateInterpolator; +import android.view.animation.TranslateAnimation; +import android.view.inputmethod.InputMethodManager; +import android.view.WindowManager; +import android.widget.AdapterView; +import android.widget.FrameLayout; +import android.widget.ImageView; +import android.widget.LinearLayout; +import android.widget.AdapterView.OnItemClickListener; +import android.widget.RelativeLayout.LayoutParams; +import android.widget.RemoteViews; +import android.widget.RelativeLayout; +import android.widget.Toast; +import java.io.*; +import java.lang.Class; +import java.nio.ByteBuffer; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Date; +import java.util.Enumeration; + +import java.util.List; +import java.util.Locale; +import java.lang.reflect.*; +import java.net.InetAddress; +import java.net.NetworkInterface; +import java.net.SocketException; +import java.lang.Object; + +import javax.microedition.khronos.opengles.GL10; +import javax.microedition.khronos.egl.EGL10; +import javax.microedition.khronos.egl.EGLContext; +import javax.microedition.khronos.egl.EGLDisplay; +import javax.microedition.khronos.egl.EGLSurface; + +import android.provider.Settings; +import android.provider.Settings.SettingNotFoundException; + +import android.app.KeyguardManager; +import android.os.PowerManager; +import android.os.BatteryManager; + +import android.content.IntentFilter; + +import android.media.MediaScannerConnection; + +import java.text.Normalizer; + +//------------------------------------------------------------------------- +//Constants +//------------------------------------------------------------------------- +class Const { + public static final int TouchDown = 0; + public static final int TouchMove = 1; + public static final int TouchUp = 2; + public static final int Click = 3; // new + public static final int DoubleClick = 4; // new + public static final int Click_Default = 0; +} + +//------------------------------------------------------------------------- +//Form +//------------------------------------------------------------------------- +class jForm { + //Java-Pascal Interface + private long PasObj = 0; // Pascal Obj + private Controls controls = null; // Control Class for Event + private RelativeLayout layout = null; + private LayoutParams layparam = null; + private RelativeLayout parent = null; //activity appLayout + private OnClickListener onClickListener; // event + private OnClickListener onViewClickListener; // generic delegate event + private OnItemClickListener onListItemClickListener; + private Boolean enabled = true; // + private Intent intent; + private int mCountTab = 0; + private ImageView mImageBackground = null; + + private boolean mRemovedFromParent = false; + + private int animationDurationIn = 1500; + private int animationDurationOut = 1500; + private int animationMode = 0; //none, fade, LeftToRight, RightToLeft + + // Constructor + public jForm(Controls ctrls, long pasobj) { + PasObj = pasobj; + controls = ctrls; + parent = controls.appLayout; + + layout = new RelativeLayout(controls.activity); + + if (layout == null) return; + + layparam = new LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, + ViewGroup.LayoutParams.MATCH_PARENT); + layout.setLayoutParams(layparam); + + // Init Event + onClickListener = new OnClickListener() { + public void onClick(View view) { + if (enabled) { + controls.pOnClick(PasObj, Const.Click_Default); + } + } + + ; + }; + + //geric list item click Event - experimental component model! + onListItemClickListener = new OnItemClickListener() { + @Override + public void onItemClick(AdapterView<?> parent, View v, int position, long id) { + controls.jAppOnListItemClick(parent, v, position, v.getId()); + } + }; + + //Init Event + onViewClickListener = new OnClickListener() { + public void onClick(View view) { + if (enabled) { + controls.jAppOnViewClick(view, view.getId()); + } + } + + ; + }; + + layout.setOnClickListener(onClickListener); + + // To ensure that the image is always in the background by TR3E + mImageBackground = new ImageView(controls.activity); + + if (mImageBackground != null) { + mImageBackground.setScaleType(ImageView.ScaleType.FIT_XY); + + LayoutParams param = new LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT); + + mImageBackground.setLayoutParams(param); + mImageBackground.setImageResource(android.R.color.transparent); + + //mImageBackground.invalidate(); + layout.addView(mImageBackground); + } + } + + public void FormChangeSize() { + controls.formChangeSize = true; + controls.appLayout.requestLayout(); + } + + public RelativeLayout GetLayout() { + return layout; + } + + public RelativeLayout GetView() { + return layout; + } + + public void SetEnabled(boolean enabled) { + for (int i = 0; i < layout.getChildCount(); i++) { + View child = layout.getChildAt(i); + child.setEnabled(enabled); + } + } + + public void SetLayoutVisibility(boolean _value) { + if (!_value) { + layout.setVisibility(android.view.View.INVISIBLE); + } else { + layout.setVisibility(android.view.View.VISIBLE); + } + } + + public void SetVisible(boolean visible) { + if (visible) { + if (layout.getParent() == null) { + parent.addView(layout); + layout.setVisibility(android.view.View.VISIBLE); + mRemovedFromParent = false; + } + } else { + if (layout.getParent() != null) { + layout.setVisibility(android.view.View.INVISIBLE); + parent.removeView(layout); + mRemovedFromParent = true; + } + } + } + + public void RemoveFromViewParent() { //TODO Pascal + if (!mRemovedFromParent) { + if (layout != null) { + layout.setVisibility(android.view.View.INVISIBLE); + if (parent != null) parent.removeView(layout); + } + mRemovedFromParent = true; + } + } + + public void SetViewParent(android.view.ViewGroup _viewgroup) { + if ((parent != null) && (layout != null)) { + parent.removeView(layout); + } + parent = (RelativeLayout) _viewgroup; + if ((parent != null) && (layout != null)) { + parent.addView(layout, layparam); + layout.setVisibility(android.view.View.VISIBLE); + } + mRemovedFromParent = false; + } + + + public void SetAnimationDurationIn(int _animationDurationIn) { + animationDurationIn = _animationDurationIn; + } + + public void SetAnimationDurationOut(int _animationDurationOut) { + animationDurationOut = _animationDurationOut; + } + + public void SetAnimationMode(int _animationMode) { + animationMode = _animationMode; + } + + /// https://www.codexpedia.com/android/android-fade-in-and-fade-out-animation-programatically/ + private void fadeInAnimation(final View view, int duration) { + Animation fadeIn = new AlphaAnimation(0, 1); + fadeIn.setInterpolator(new DecelerateInterpolator()); + fadeIn.setDuration(duration); + fadeIn.setAnimationListener(new Animation.AnimationListener() { + @Override + public void onAnimationStart(Animation animation) { + } + + @Override + public void onAnimationEnd(Animation animation) { + view.setVisibility(View.VISIBLE); + } + + @Override + public void onAnimationRepeat(Animation animation) { + } + }); + + view.startAnimation(fadeIn); + } + + private void fadeOutAnimation(final View view, int duration) { + Animation fadeOut = new AlphaAnimation(1, 0); + fadeOut.setInterpolator(new AccelerateInterpolator()); + fadeOut.setStartOffset(duration); + fadeOut.setDuration(duration); + fadeOut.setAnimationListener(new Animation.AnimationListener() { + @Override + public void onAnimationStart(Animation animation) { + } + + @Override + public void onAnimationEnd(Animation animation) { + view.setVisibility(View.INVISIBLE); + } + + @Override + public void onAnimationRepeat(Animation animation) { + } + }); + view.startAnimation(fadeOut); + } + + //https://stackoverflow.com/questions/20696801/how-to-make-a-right-to-left-animation-in-a-layout/20696822 + private void slidefromRightToLeft(View view, long duration) { + TranslateAnimation animate; + if (view.getHeight() == 0) { + //parent.getHeight(); // parent layout + animate = new TranslateAnimation(parent.getWidth(), + 0, 0, 0); //(xFrom,xTo, yFrom,yTo) + } else { + animate = new TranslateAnimation(view.getWidth(), 0, 0, 0); // View for animation + } + animate.setDuration(duration); + animate.setFillAfter(true); + view.startAnimation(animate); + view.setVisibility(View.VISIBLE); // Change visibility VISIBLE or GONE + } + + private void slidefromLeftToRight(View view, long duration) { //try + + TranslateAnimation animate; //(0.0f, 0.0f, 1500.0f, 0.0f); + if (view.getHeight() == 0) { + //parent.getHeight(); // parent layout + animate = new TranslateAnimation(0, + parent.getWidth(), 0, 0); //(xFrom,xTo, yFrom,yTo) + } else { + animate = new TranslateAnimation(0, view.getWidth(), 0, 0); // View for animation + } + + animate.setDuration(duration); + animate.setFillAfter(true); + view.startAnimation(animate); + view.setVisibility(View.VISIBLE); // Change visibility VISIBLE or GONE + } + + + private void slidefromRightToLeft3(View view, long duration) { + TranslateAnimation animate; //(0.0f, 0.0f, 1500.0f, 0.0f); + if (view.getHeight() == 0) { + //parent.getHeight(); // parent layout + animate = new TranslateAnimation(0, -parent.getWidth(), + 0, 0); //(xFrom,xTo, yFrom,yTo) + } else { + animate = new TranslateAnimation(0, -parent.getWidth(), + 0, 0); // View for animation + } + + animate.setDuration(duration); + animate.setFillAfter(true); + view.startAnimation(animate); + view.setVisibility(View.VISIBLE); // Change visibility VISIBLE or GONE + } + + private void slidefromLeftToRight3(View view, long duration) { //try + + TranslateAnimation animate; //(0.0f, 0.0f, 1500.0f, 0.0f); + if (view.getHeight() == 0) { + //parent.getHeight(); // parent layout + animate = new TranslateAnimation(-parent.getWidth(), + 0, 0, 0); //(xFrom,xTo, yFrom,yTo) + } else { + animate = new TranslateAnimation(-parent.getWidth(), 0, 0, 0); // View for animation + } + + animate.setDuration(duration); + animate.setFillAfter(true); + view.startAnimation(animate); + view.setVisibility(View.VISIBLE); // Change visibility VISIBLE or GONE + } + + + public void Show(int effect) { + + //fadeOutAnimation(layout, 2000); + //fadeInAnimation(layout, 2000); + + if (animationDurationIn > 0) { + switch (animationMode) { + case 1: { + fadeInAnimation(layout, animationDurationIn); + break; + } + case 2: { //RightToLeft + slidefromRightToLeft(layout, animationDurationIn); + break; + } + case 3: { //RightToLeft + slidefromLeftToRight3(layout, animationDurationIn); + break; + } + } + } + + //controls.appLayout.addView(layout); + //parent = controls.appLayout; + parent.addView(layout); + + } + + public ViewGroup GetParent() { + return parent; //parent; + } + + public void Close(int effect) { + controls.pOnClose(PasObj); + } + + public void Close2() { + //fadeOutAnimation(layout, 2000); + // slidefromLeftToRight(layout, 2000); + if (animationDurationOut > 0) { + switch (animationMode) { + case 1: { + fadeOutAnimation(layout, animationDurationOut); + break; + } + case 2: { + slidefromLeftToRight(layout, animationDurationOut); + break; + } + case 3: { + slidefromRightToLeft3(layout, animationDurationOut); + break; + } + } + } + parent.removeView(layout); + controls.pOnClose(PasObj); + } + + //by TR3E + public boolean IsScreenLocked() { + KeyguardManager myKM = (KeyguardManager) controls.activity.getSystemService(Context.KEYGUARD_SERVICE); + + if (myKM == null) return false; + + return myKM.inKeyguardRestrictedInputMode(); + } + + //by TR3E + public boolean IsSleepMode() { + PowerManager powerManager = (PowerManager) controls.activity.getSystemService(Context.POWER_SERVICE); + + if (powerManager == null) return false; + + boolean isScreenAwake = (Build.VERSION.SDK_INT < 20 ? powerManager.isScreenOn() : powerManager.isInteractive()); + + return !isScreenAwake; + } + + public boolean IsConnected() { //by TR3E + + ConnectivityManager cm = (ConnectivityManager) controls.activity.getSystemService(Context.CONNECTIVITY_SERVICE); + + if (cm != null) { + NetworkInfo activeNetwork = cm.getActiveNetworkInfo(); + + if (activeNetwork != null) + return (activeNetwork.isAvailable() && activeNetwork.isConnected()); + } + + return false; + } + + public boolean IsConnectedWifi() { // by TR3E + + ConnectivityManager cm = (ConnectivityManager) controls.activity.getSystemService(Context.CONNECTIVITY_SERVICE); + + if (cm != null) { + NetworkInfo activeNetwork = cm.getActiveNetworkInfo(); + + if (activeNetwork != null) + return (activeNetwork.getType() == ConnectivityManager.TYPE_WIFI); + } + + return false; + } + + public boolean IsConnectedTo(int _connectionType) { // by TR3E + + ConnectivityManager cm = (ConnectivityManager) controls.activity.getSystemService(Context.CONNECTIVITY_SERVICE); + + if (cm != null) { + NetworkInfo activeNetwork = cm.getActiveNetworkInfo(); + + int result = -1; + + if (activeNetwork != null) + if (activeNetwork.isAvailable() && activeNetwork.isConnected()) ; + { + switch (activeNetwork.getType()) { + case ConnectivityManager.TYPE_MOBILE: + result = 0; + break; //0 + case ConnectivityManager.TYPE_WIFI: + result = 1; + break; //1 + case ConnectivityManager.TYPE_BLUETOOTH: + result = 2; + break; //7 + case ConnectivityManager.TYPE_ETHERNET: + result = 3; + break; //9 + } + } + + return (result == _connectionType); + } + + return false; + } + + public void ShowMessage(String msg) { + Log.i("ShowMessage", msg); + Toast toast = Toast.makeText(controls.activity, msg, Toast.LENGTH_SHORT); + + if (toast != null) { + toast.setGravity(Gravity.BOTTOM, 0, 0); + toast.show(); + } + } + + public void ShowMessage(String _msg, int _gravity, int _timeLength) { + Log.i("ShowMessage", _msg); + + Toast toast = Toast.makeText(controls.activity, _msg, _timeLength); + + int posGravity = Gravity.BOTTOM; + + switch (_gravity) { + case 1: + posGravity = Gravity.CENTER; + break; + case 8: + posGravity = Gravity.TOP; + break; + } + + if (toast != null) { + toast.setGravity(posGravity, 0, 0); + toast.show(); + } + } + + public String GetDateTime() { + SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault()); + return (formatter.format(new Date())); + } + + // by TR3E + public long GetTimeInMilliseconds(){ + return controls.getTick(); + } + + //by TR3E + public String GetTimeHHssSS( long millisTime ) { + SimpleDateFormat formatter = new SimpleDateFormat ( "mm:ss:SS" ); + return( formatter.format ( new Date (millisTime) ) ); + } + + //Free object except Self, Pascal Code Free the class. + public void Free() { + if (parent != null) { + parent.removeView(layout); + } + onClickListener = null; + layout.setOnClickListener(null); + layparam = null; + layout = null; + } + + //http://startandroid.ru/en/lessons/complete-list/250-lesson-29-invoking-activity-and-getting-a-result-startactivityforresult-method.html + public String GetStringExtra(Intent data, String extraName) { + String valueStr; + valueStr = ""; + if (data != null) { + valueStr = data.getStringExtra(extraName); + } + return valueStr; + } + + public int GetIntExtra(Intent data, String extraName, int defaultValue) { + int value; + value = defaultValue; + if (data != null) { + value = data.getIntExtra(extraName, defaultValue); + } + return value; + } + + public double GetDoubleExtra(Intent data, String extraName, double defaultValue) { + double value; + value = defaultValue; + if (data != null) { + value = data.getDoubleExtra(extraName, defaultValue); + } + return value; + } + + public OnClickListener GetOnViewClickListener() { + return this.onViewClickListener; + } + + public OnItemClickListener GetOnListItemClickListener() { + return this.onListItemClickListener; + } + + public int GetSystemVersion() { + return controls.systemVersion; + } + + public boolean SetWifiEnabled(boolean _status) { + //WifiManager wifiManager = (WifiManager)this.controls.activity.getSystemService(Context.WIFI_SERVICE); + WifiManager wifiManager = (WifiManager) this.controls.activity.getApplicationContext().getSystemService(Context.WIFI_SERVICE); + + return wifiManager.setWifiEnabled(_status); + } + + public boolean IsWifiEnabled() { + //WifiManager wifiManager = (WifiManager)this.controls.activity.getSystemService(Context.WIFI_SERVICE); + WifiManager wifiManager = (WifiManager) this.controls.activity.getApplicationContext().getSystemService(Context.WIFI_SERVICE); + + return wifiManager.isWifiEnabled(); + } + + public boolean IsMobileDataEnabled() { + boolean mobileDataEnabled = false; // Assume disabled + ConnectivityManager cm = (ConnectivityManager) controls.activity.getSystemService(Context.CONNECTIVITY_SERVICE); + try { + final Class<?> cmClass = Class.forName(cm.getClass().getName()); + Method method = cmClass.getDeclaredMethod("getMobileDataEnabled"); + method.setAccessible(true); // Make the method callable + // get the setting for "mobile data" + mobileDataEnabled = (Boolean) method.invoke(cm); + } catch (Exception e) { + // Some problem accessible private API + // TODO do whatever error handling you want here + } + return mobileDataEnabled; + } + + public String GetEnvironmentDirectoryPath(int _directory) { + + File filePath = null; + String absPath = ""; //fail! + + //Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOCUMENTS);break; //only Api 19! + if (_directory != 8) { + switch (_directory) { + case 0: + filePath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS); + break; + case 1: + filePath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM); + break; + case 2: + filePath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MUSIC); + break; + case 3: + filePath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES); + break; + case 4: + filePath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_NOTIFICATIONS); + break; + case 5: + filePath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MOVIES); + break; + case 6: + filePath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PODCASTS); + break; + case 7: + filePath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_RINGTONES); + break; + + case 9: + absPath = this.controls.activity.getFilesDir().getAbsolutePath(); + break; //Result : /data/data/com/MyApp/files + case 10: + absPath = this.controls.activity.getFilesDir().getPath(); + absPath = absPath.substring(0, absPath.lastIndexOf("/")) + "/databases"; + break; + case 11: + absPath = this.controls.activity.getFilesDir().getPath(); + absPath = absPath.substring(0, absPath.lastIndexOf("/")) + "/shared_prefs"; + break; + + case 12: + absPath = this.controls.activity.getFilesDir().getPath(); + absPath = absPath.substring(0, absPath.lastIndexOf("/")) + "/cache"; + break; + + } + + //Make sure the directory exists. + if (_directory < 8) { + filePath.mkdirs(); + absPath = filePath.getPath(); + } + + } else { //== 8 + if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED) == true) { + filePath = Environment.getExternalStorageDirectory(); //sdcard! + // Make sure the directory exists. + filePath.mkdirs(); + absPath = filePath.getPath(); + } + } + + return absPath; + } + + public String GetInternalAppStoragePath() { //GetAbsoluteDirectoryPath + String PathDat = this.controls.activity.getFilesDir().getAbsolutePath(); //Result : /data/data/com/MyApp/files + return PathDat; + } + + private void copyFileUsingFileStreams(File source, File dest) + throws IOException { + InputStream input = null; + OutputStream output = null; + try { + input = new FileInputStream(source); + output = new FileOutputStream(dest); + byte[] buf = new byte[1024]; + int bytesRead; + while ((bytesRead = input.read(buf)) > 0) { + output.write(buf, 0, bytesRead); + } + } finally { + input.close(); + output.close(); + } + } + + public boolean CopyFile(String _scrFullFileName, String _destFullFileName) { + File src = new File(_scrFullFileName); + File dest = new File(_destFullFileName); + try { + copyFileUsingFileStreams(src, dest); + return true; + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + return false; + } + } + + //ref. https://xjaphx.wordpress.com/2011/10/02/store-and-use-files-in-assets/ +//result: path to new storage [Internal App Storage] + public String LoadFromAssets(String _filename) { + + String pathRes = ""; + + InputStream is = null; + FileOutputStream fos = null; + String PathDat = controls.activity.getFilesDir().getAbsolutePath(); + try { + File outfile = new File(PathDat, _filename); + + fos = new FileOutputStream(outfile); //save to data/data/your_package/files/your_file_name + is = controls.activity.getAssets().open(_filename); + int size = is.available(); + byte[] buffer = new byte[size]; + + for (int c = is.read(buffer); c != -1; c = is.read(buffer)) { + fos.write(buffer, 0, c); + } + + is.close(); + fos.close(); + pathRes = PathDat + "/" + _filename; + + } catch (IOException e) { + e.printStackTrace(); + } + + return pathRes; + } + + public boolean IsSdCardMounted() { + return Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED); + } + + public void DeleteFile(String _filename) { + this.controls.activity.deleteFile(_filename); + } + + public void DeleteFile(String _fullPath, String _filename) { + File file; + if (_fullPath.equalsIgnoreCase("")) { + file = new File(Environment.getExternalStorageDirectory() + "/" + _filename); // root + } else { + file = new File(_fullPath + "/" + _filename); + } + file.delete(); + } + + public void DeleteFile(int _environmentDir, String _filename) { + String baseDir = GetEnvironmentDirectoryPath(_environmentDir); + if (!baseDir.equalsIgnoreCase("")) { + File file = new File(baseDir, _filename); + file.delete(); + } + } + + public String CreateDir(String _dirName) { + this.controls.activity.getDir(_dirName, 0); //if not exist -->> CREATE! + String absPath = this.controls.activity.getFilesDir().getPath(); + absPath = absPath.substring(0, absPath.lastIndexOf("/")) + "/" + _dirName; + return absPath; + } + + public String CreateDir(int _environmentDir, String _dirName) { + String baseDir = GetEnvironmentDirectoryPath(_environmentDir); + if (!baseDir.equalsIgnoreCase("")) { + File file = new File(baseDir, _dirName); + file.mkdirs(); + return file.getPath(); + } else return ""; + } + + public String CreateDir(String _fullPath, String _dirName) { + File file = new File(_fullPath, _dirName); + file.mkdirs(); + return file.getPath(); + } + + /* + Added in API level 11 + Returns whether the primary "external" storage device is emulated. If true, + data stored on this device will be stored on a portion of the internal storage system. + */ + public boolean IsExternalStorageEmulated() { + return Environment.isExternalStorageEmulated(); + } + + /* + Added in API level 9 + Returns whether the primary "external" storage device is removable. + */ + public boolean IsExternalStorageRemovable() { + return Environment.isExternalStorageRemovable(); + } + + // + public String GetjFormVersionFeatures() { + String listVersionInfo = + "6$5=SetWifiEnabled;" + //[0.6-05] + "6$5=IsWifiEnabled;" + + "6$5=GetEnvironmentDirectoryPath;" + + "6$5=GetInternalAppStoragePath;" + + "6$5=CopyFile;" + + "6$5=LoadFromAssets;" + + "6$5=IsSdCardMounted;" + + "6$5=DeleteFile;" + + "6$5=CreateDir;" + + "6$5=IsExternalStorageEmulated;" + + "6$5=IsExternalStorageRemovable"; + return listVersionInfo; + } + + /* + *Given that you can access R.java just fine normally in code. + *As long as you are retrieving data from your application's R.java - Use reflection! + */ + public int GetStringResourceId(String _resName) { + try { + Class<?> res = R.string.class; + Field field = res.getField(_resName); + int strId = field.getInt(null); + return strId; + } catch (Exception e) { + Log.e("jForm", "Failure to Get String Resource", e); + return 0; + } + } + + public String GetStringResourceById(int _resID) { + return (String) (this.controls.activity.getResources().getText(_resID)); + } + + public int GetDrawableResourceId(String _resName) { + try { + Class<?> res = R.drawable.class; + Field field = res.getField(_resName); //"drawableName" + int drawableId = field.getInt(null); + return drawableId; + } catch (Exception e) { + Log.e("jForm", "Failure to get drawable id.", e); + return 0; + } + } + + public Drawable GetDrawableResourceById(int _resID) { + if (_resID == 0) return null; // by tr3e + + Drawable res = null; + + if (Build.VERSION.SDK_INT < 21) { //for old device < 21 + res = this.controls.activity.getResources().getDrawable(_resID); + } + + //[ifdef_api21up] + if (Build.VERSION.SDK_INT >= 21) { + res = this.controls.activity.getResources().getDrawable(_resID, null); + }//[endif_api21up] + + return res; + } + + //BY TR3E + public void SetBackgroundImage(String _imageIdentifier, int _scaleType) { + + if (mImageBackground == null) return; + + Drawable d = GetDrawableResourceById(GetDrawableResourceId(_imageIdentifier)); + + switch (_scaleType) { + case 0: + mImageBackground.setScaleType(ImageView.ScaleType.CENTER); + break; + case 1: + mImageBackground.setScaleType(ImageView.ScaleType.CENTER_CROP); + break; + case 2: + mImageBackground.setScaleType(ImageView.ScaleType.CENTER_INSIDE); + break; + case 3: + mImageBackground.setScaleType(ImageView.ScaleType.FIT_CENTER); + break; + case 4: + mImageBackground.setScaleType(ImageView.ScaleType.FIT_END); + break; + case 5: + mImageBackground.setScaleType(ImageView.ScaleType.FIT_START); + break; + case 6: + mImageBackground.setScaleType(ImageView.ScaleType.FIT_XY); + break; + case 7: + mImageBackground.setScaleType(ImageView.ScaleType.MATRIX); + break; + } + + mImageBackground.setImageDrawable(d); + } + + //BY TR3E + public void SetBackgroundImageMatrix(float _scaleX, float _scaleY, float _degress, float _dx, float _dy, float _centerX, float _centerY) { + + if (mImageBackground == null) return; + + if (mImageBackground.getScaleType() != ImageView.ScaleType.MATRIX) + mImageBackground.setScaleType(ImageView.ScaleType.MATRIX); + + Matrix matrix = new Matrix(); + + matrix.setRotate(_degress, _centerX, _centerY); + matrix.postScale(_scaleX, _scaleY, _centerX * _scaleX, _centerY * _scaleY); + matrix.postTranslate(_dx, _dy); + + mImageBackground.setImageMatrix(matrix); + //mImageBackground.invalidate(); + } + + // BY TR3E + public void SetBackgroundImage(String _imageIdentifier) { + SetBackgroundImage(_imageIdentifier, 6); // FIT_XY for default + } + + + //by thierrydijoux + public String GetQuantityStringByName(String _resName, int _quantity) { + int id = this.controls.activity.getResources().getIdentifier(_resName, "plurals", this.controls.activity.getPackageName()); + String value = id == 0 ? "" : (String) this.controls.activity.getResources().getQuantityString(id, _quantity, _quantity); + return value; + } + + //by thierrydijoux + public String GetStringResourceByName(String _resName) { + int id = this.controls.activity.getResources().getIdentifier(_resName, "string", this.controls.activity.getPackageName()); + String value = id == 0 ? "" : (String) this.controls.activity.getResources().getText(id); + return value; + } + + public ActionBar GetActionBar() { + if (!jCommons.IsAppCompatProject(controls)) { + return (controls.activity).getActionBar(); + } else return null; + } + + // BY TR3E + public int GetBatteryPercent() { + + int ret = -1; + + if (Build.VERSION.SDK_INT >= 21) { + + BatteryManager bm = (BatteryManager) this.controls.activity.getSystemService(this.controls.activity.BATTERY_SERVICE); + + if( bm != null ) + ret = bm.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY); + + } else { + + IntentFilter iFilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED); + Intent batteryStatus = this.controls.activity.registerReceiver(null, iFilter); + + int level = batteryStatus != null ? batteryStatus.getIntExtra(BatteryManager.EXTRA_LEVEL, -1) : -1; + int scale = batteryStatus != null ? batteryStatus.getIntExtra(BatteryManager.EXTRA_SCALE, -1) : -1; + + double batteryPct = level / (double) scale; + + ret = (int) (batteryPct * 100); + } + + return ret; + } + +/* + * To disableAction-bar Icon and Title, you must do two things: + setDisplayShowHomeEnabled(false); // hides action bar icon + setDisplayShowTitleEnabled(false); // hides action bar title + */ + + public void HideActionBar() { + jCommons.ActionBarHide(controls); + } + + public void ShowActionBar() { + jCommons.ActionBarShow(controls); + } + + //Hide the title label + public void ShowTitleActionBar(boolean _value) { + jCommons.ActionBarShowTitle(controls, _value); + } + + //Hide the logo = false + public void ShowLogoActionBar(boolean _value) { + jCommons.ActionBarShowLogo(controls, _value); + } + + //set a title and subtitle to the Action bar as shown in the code snippet. + public void SetTitleActionBar(String _title) { + jCommons.SetActionBarTitle(controls, _title); + } + + //set a title and subtitle to the Action bar as shown in the code snippet. + public void SetSubTitleActionBar(String _subtitle) { + jCommons.SetActionBarSubTitle(controls, _subtitle); + } + + //forward [<] activity! // If your minSdkVersion is 11 or higher! + /*.*/ + public void SetDisplayHomeAsUpEnabledActionBar(boolean _value) { + jCommons.ActionBarDisplayHomeAsUpEnabled(controls, _value); + } + + public void SetIconActionBar(String _iconIdentifier) { +//[ifdef_api14up] + Drawable d = GetDrawableResourceById(GetDrawableResourceId(_iconIdentifier)); + + if (d != null) // by tr3e + jCommons.ActionBarSetIcon(controls, d); +//[endif_api14up] + } + + public void SetTabNavigationModeActionBar() { + jCommons.ActionBarSetTabNavigationMode(controls); + } + + //This method remove all tabs from the action bar and deselect the current tab + public void RemoveAllTabsActionBar() { + jCommons.ActionBarRemoveAllTabs(controls); + } + + //Calculate ActionBar height +//ref http://stackoverflow.com/questions/12301510/how-to-get-the-actionbar-height + public int GetActionBarHeight() { + return jCommons.ActionGetBarBarHeight(controls); + } + + public boolean ActionBarIsShowing() { + return jCommons.ActionBarIsShowing(controls); + } + + public boolean HasActionBar() { + return jCommons.HasActionBar(controls); + } + + public boolean IsAppCompatProject() { + return jCommons.IsAppCompatProject(controls); + } + + public boolean IsPackageInstalled(String _packagename) { + PackageManager pm = controls.activity.getPackageManager(); + try { + pm.getPackageInfo(_packagename, PackageManager.GET_ACTIVITIES); + return true; + } catch (NameNotFoundException e) { + return false; + } + } + + //android.view.View + public void ShowCustomMessage(View _layout, int _gravity) { + //controls.pOnShowCustomMessage(PasObj); + Toast toast = new Toast(controls.activity); + toast.setGravity(_gravity, 0, 0); + toast.setDuration(Toast.LENGTH_LONG); + RelativeLayout par = (RelativeLayout) _layout.getParent(); + if (par != null) { + par.removeView(_layout); + } + _layout.setVisibility(View.VISIBLE); + toast.setView(_layout); + toast.show(); + } + + private class MyCountDownTimer extends CountDownTimer { + Toast toast; + + public MyCountDownTimer(long startTime, long interval, Toast toas) { + super(startTime, interval); + toast = toas; + } + + @Override + public void onFinish() { + //text.setText("Time's up!"); + toast.cancel(); + } + + @Override + public void onTick(long millisUntilFinished) { + //text.setText("" + millisUntilFinished / 1000); + toast.show(); + } + } + + public void ShowCustomMessage(View _layout, int _gravity, int _lenghTimeSecond) { + Toast toast = new Toast(controls.activity); + toast.setGravity(_gravity, 0, 0); + //toast.setDuration(Toast.LENGTH_LONG); + RelativeLayout par = (RelativeLayout) _layout.getParent(); + if (par != null) { + par.removeView(_layout); + } + _layout.setVisibility(View.VISIBLE);//0 + toast.setView(_layout); + //it will show the toast for 20 seconds: + //(20000 milliseconds/1st argument) with interval of 1 second/2nd argument //--> (20 000, 1000) + MyCountDownTimer countDownTimer = new MyCountDownTimer(_lenghTimeSecond * 1000, 1000, toast); + countDownTimer.start(); + } + + public void SetScreenOrientation(int _orientation) { + //Log.i("Screen","Orientation "+ _orientation); + switch (_orientation) { + case 1: + controls.activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); + break; + case 2: + controls.activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); + break; + default: + controls.activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR); + break; + } + } + + // ssPortrait = 1, //Portrait + // ssLandscape = 2, //LandScape + // ssUnknown = 3 + + public int GetScreenOrientation() { + + int r = 3; // ssUnknown + + if( controls.screenWidth <= controls.screenHeight ) r = 1; // Portrait + if( controls.screenWidth > controls.screenHeight ) r = 2; // LandScape + + return r; + } + + public String GetScreenDensity() { + String r = ""; + DisplayMetrics metrics = new DisplayMetrics(); + + controls.activity.getWindowManager().getDefaultDisplay().getMetrics(metrics); + + int density = metrics.densityDpi; + +//[ifdef_api16up] + if (density == DisplayMetrics.DENSITY_XXHIGH) { + r = "XXHIGH:" + String.valueOf(density); + } else +//[endif_api16up] + if (density == DisplayMetrics.DENSITY_XHIGH) { + r = "XHIGH:" + String.valueOf(density); + } else if (density == DisplayMetrics.DENSITY_HIGH) { + r = "HIGH:" + String.valueOf(density); + } else if (density == DisplayMetrics.DENSITY_MEDIUM) { + r = "MEDIUM:" + String.valueOf(density); + } else if (density == DisplayMetrics.DENSITY_LOW) { + r = "LOW:" + String.valueOf(density); + } + return r; + } + + public String GetScreenSize() { + String r = ""; + + if ((controls.activity.getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_XLARGE) { + r = "XLARGE"; + } else if ((controls.activity.getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_LARGE) { + r = "LARGE"; + } else if ((controls.activity.getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_NORMAL) { + r = "NORMAL"; + } else if ((controls.activity.getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_SMALL) { + r = "SMALL"; + } + return r; + } + + public void LogDebug(String _tag, String _msg) { + Log.d(_tag, _msg); //debug + } + + public void Vibrate(int _milliseconds) { + Vibrator vib = (Vibrator) controls.activity.getSystemService(Context.VIBRATOR_SERVICE); + if (vib.hasVibrator()) { + vib.vibrate(_milliseconds); + } + } + + public void Vibrate(long[] _millisecondsPattern) { + Vibrator vib = (Vibrator) controls.activity.getSystemService(Context.VIBRATOR_SERVICE); + if (vib.hasVibrator()) { + vib.vibrate(_millisecondsPattern, -1); + } + } + + //http://stackoverflow.com/questions/2661536/how-to-programatically-take-a-screenshot-on-android + public void TakeScreenshot(String _savePath, String _saveFileNameJPG) { + + String myPath = _savePath + "/" + _saveFileNameJPG; + Bitmap bitmap; + View v1 = controls.activity.getWindow().getDecorView().getRootView(); + v1.setDrawingCacheEnabled(true); + bitmap = Bitmap.createBitmap(v1.getDrawingCache()); + v1.setDrawingCacheEnabled(false); + + OutputStream fout = null; + File imageFile = new File(myPath); + + try { + fout = new FileOutputStream(imageFile); + bitmap.compress(Bitmap.CompressFormat.JPEG, 90, fout); + fout.flush(); + fout.close(); + + } catch (FileNotFoundException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + + public String GetTitleActionBar() { + ActionBar actionBar = this.controls.activity.getActionBar(); + return (String) actionBar.getTitle(); + } + + public String GetSubTitleActionBar() { + ActionBar actionBar = this.controls.activity.getActionBar(); + return (String) actionBar.getSubtitle(); + } + + //https://xjaphx.wordpress.com/2011/10/02/store-and-use-files-in-assets/ + public String CopyFromAssetsToInternalAppStorage(String _filename) { + InputStream is = null; + FileOutputStream fos = null; + String PathDat = controls.activity.getFilesDir().getAbsolutePath(); + try { + File outfile = new File(PathDat + "/" + _filename); + // if file doesnt exists, then create it + if (!outfile.exists()) { + outfile.createNewFile(); + } + fos = new FileOutputStream(outfile); //save to data/data/your_package/files/your_file_name + is = controls.activity.getAssets().open(_filename); + int size = is.available(); + byte[] buffer = new byte[size]; + for (int c = is.read(buffer); c != -1; c = is.read(buffer)) { + fos.write(buffer, 0, c); + } + is.close(); + fos.close(); + } catch (IOException e) { + // Log.i("ShareFromAssets","fail!!"); + e.printStackTrace(); + } + return PathDat + "/" + _filename; + } + + //by TR3E + public String GetStripAccents(String _str) { + _str = Normalizer.normalize(_str, Normalizer.Form.NFD); + _str = _str.replaceAll("[\\p{InCombiningDiacriticalMarks}]", ""); + return _str; + } + + public String GetPathFromAssetsFile(String _assetsFileName) { + return LoadFromAssets(_assetsFileName); + } + + public Bitmap GetImageFromAssetsFile(String _assetsImageFileName) { + String path = LoadFromAssets(_assetsImageFileName); + BitmapFactory.Options bo = new BitmapFactory.Options(); + bo.inScaled = false; + return BitmapFactory.decodeFile(path, bo); + } + + public void CopyFromInternalAppStorageToEnvironmentDir(String _filename, String _environmentDir) { + String srcPath = controls.activity.getFilesDir().getAbsolutePath() + "/" + _filename; //Result : /data/data/com/MyApp/files + String destPath = _environmentDir + "/" + _filename; + CopyFile(srcPath, destPath); + } + + + public void CopyFromAssetsToEnvironmentDir(String _filename, String _environmentDir) { + CopyFromAssetsToInternalAppStorage(_filename); + CopyFromInternalAppStorageToEnvironmentDir(_filename, _environmentDir); + } + + public void ToggleSoftInput() { + InputMethodManager imm = (InputMethodManager) controls.activity.getSystemService(Context.INPUT_METHOD_SERVICE); + imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0); + } + + public void HideSoftInput() { + InputMethodManager imm = (InputMethodManager) controls.activity.getSystemService(Context.INPUT_METHOD_SERVICE); + imm.toggleSoftInput(InputMethodManager.RESULT_HIDDEN, 0); + } + + public void HideSoftInput(View _view) { + InputMethodManager imm = (InputMethodManager) controls.activity.getSystemService(Context.INPUT_METHOD_SERVICE); + imm.hideSoftInputFromWindow(_view.getWindowToken(), 0); + } + + public void ShowSoftInput() { + InputMethodManager imm = (InputMethodManager) controls.activity.getSystemService(Context.INPUT_METHOD_SERVICE); + imm.toggleSoftInput(InputMethodManager.RESULT_SHOWN, 0); + } + + //thanks to Mladen + public String GetDeviceModel() { + return android.os.Build.MODEL; + } + + public String GetDeviceManufacturer() { + return android.os.Build.MANUFACTURER; + } + + public void SetKeepScreenOn(boolean _value) { + if (_value) + controls.activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); + else + controls.activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); + } + + public void SetTurnScreenOn(boolean _value) { + if (_value) + controls.activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON); + else + controls.activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON); + } + + public void SetAllowLockWhileScreenOn(boolean _value) { + if (_value) + controls.activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_ALLOW_LOCK_WHILE_SCREEN_ON); + else + controls.activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_ALLOW_LOCK_WHILE_SCREEN_ON); + } + + public void SetShowWhenLocked(boolean _value) { + if (_value) + controls.activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED); + else + controls.activity.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED); + } + + public Uri ParseUri(String _uriAsString) { + return Uri.parse(_uriAsString); + } + + public String UriToString(Uri _uri) { + return _uri.toString(); + } + + // ref. http://www.android-examples.com/get-display-ip-address-of-android-phone-device-programmatically/ + public int GetNetworkStatus() { + boolean WIFI = false; + boolean MOBILE = false; + int r = 0; //NOT_CONNECTED + ConnectivityManager CM = (ConnectivityManager) controls.activity.getSystemService(Context.CONNECTIVITY_SERVICE); + NetworkInfo[] networkInfo = CM.getAllNetworkInfo(); + for (NetworkInfo netInfo : networkInfo) { + if (netInfo.getTypeName().equalsIgnoreCase("WIFI")) + if (netInfo.isConnected()) WIFI = true; + if (netInfo.getTypeName().equalsIgnoreCase("MOBILE")) + if (netInfo.isConnected()) + MOBILE = true; + } + + if (WIFI == true) { + r = 1; //WIFI_CONNECTED + } + + if (MOBILE == true) { + r = 2; //MOBILE_DATA_CONNECTED + } + + return r; + } + + public String GetDeviceDataMobileIPAddress() { + String r = ""; + try { + for (Enumeration<NetworkInterface> en = NetworkInterface.getNetworkInterfaces(); + en.hasMoreElements(); ) { + NetworkInterface networkinterface = en.nextElement(); + for (Enumeration<InetAddress> enumIpAddr = networkinterface.getInetAddresses(); enumIpAddr.hasMoreElements(); ) { + InetAddress inetAddress = enumIpAddr.nextElement(); + if (!inetAddress.isLoopbackAddress()) { + boolean isIPv4 = inetAddress.getHostAddress().indexOf(':') < 0; + if (isIPv4) return r = inetAddress.getHostAddress(); + if (!isIPv4) { + int delim = inetAddress.getHostAddress().indexOf('%'); // drop ip6 zone suffix + r = delim < 0 ? inetAddress.getHostAddress().toUpperCase() : inetAddress.getHostAddress().substring(0, delim).toUpperCase(); + } + } + } + } + } catch (Exception ex) { + Log.e("Current IP", ex.toString()); + } + return r; + } + + //ref. http://www.devlper.com/2010/07/getting-ip-address-of-the-device-in-android/ + public String GetDeviceWifiIPAddress() { + //WifiManager mWifi = (WifiManager) controls.activity.getSystemService(Context.WIFI_SERVICE); + WifiManager mWifi = (WifiManager) this.controls.activity.getApplicationContext().getSystemService(Context.WIFI_SERVICE); + + //String ip = Formatter.formatIpAddress( + int ipAddress = mWifi.getConnectionInfo().getIpAddress(); + String sIP = String.format("%d.%d.%d.%d", + (ipAddress & 0xff), + (ipAddress >> 8 & 0xff), + (ipAddress >> 16 & 0xff), + (ipAddress >> 24 & 0xff)); + return sIP; + } + + /** + * Calculate the broadcast IP we need to send the packet along. + * ref. http://www.ece.ncsu.edu/wireless/MadeInWALAN/AndroidTutorial/ + */ + public String GetWifiBroadcastIPAddress() throws IOException { + String r = null; + //WifiManager mWifi = (WifiManager) controls.activity.getSystemService(Context.WIFI_SERVICE); + WifiManager mWifi = (WifiManager) this.controls.activity.getApplicationContext().getSystemService(Context.WIFI_SERVICE); + // DhcpInfo is a simple object for retrieving the results of a DHCP request + DhcpInfo dhcp = mWifi.getDhcpInfo(); + if (dhcp == null) { + return null; + } + int broadcast = (dhcp.ipAddress & dhcp.netmask) | ~dhcp.netmask; + byte[] quads = new byte[4]; + for (int k = 0; k < 4; k++) + quads[k] = (byte) ((broadcast >> k * 8) & 0xFF); + // Returns the InetAddress corresponding to the array of bytes. + // The high order byte is quads[0]. + r = InetAddress.getByAddress(quads).getHostAddress(); + if (r == null) r = ""; + return r; + } + + //https://xjaphx.wordpress.com/2011/10/02/store-and-use-files-in-assets/ + public String LoadFromAssetsTextContent(String _filename) { + String str; + // load text + try { + //Log.i("loadFromAssets", "name: "+_filename); + // get input stream for text + InputStream is = controls.activity.getAssets().open(_filename); + // check size + int size = is.available(); + // create buffer for IO + byte[] buffer = new byte[size]; + // get data to buffer + is.read(buffer); + // close stream + is.close(); + // set result to TextView + str = new String(buffer); + //Log.i("loadFromAssets", ":: "+ str); + return str.toString(); + } catch (IOException ex) { + //Log.i("loadFromAssets", "error!"); + return ""; + } + } + + +//Fatih: Path = '' = Asset Root Folder +//Path Example: gunlukler/2015/02/28/001 + + public String[] GetAssetContentList(String _path) throws IOException { + ArrayList<String> Folders = new ArrayList<String>(); + + Resources r = this.controls.activity.getResources(); + AssetManager am = r.getAssets(); + String fileList[] = am.list(_path); + if (fileList != null) { + for (int i = 0; i < fileList.length; i++) { + Folders.add(fileList[i]); + } + } + String sFolders[] = Folders.toArray(new String[Folders.size()]); + return sFolders; + } + + //Fatih: gets system storage driver list + public String[] GetDriverList() { + ArrayList<String> Drivers = new ArrayList<String>(); + + String sDriver; + sDriver = System.getenv("EXTERNAL_STORAGE"); + if (sDriver != null) { + File fDriver = new File(sDriver); + + if (fDriver.exists() && fDriver.canWrite()) { + Drivers.add(fDriver.getAbsolutePath()); + } + } + + sDriver = System.getenv("SECONDARY_STORAGE"); + if (sDriver != null) { + File fDriver = new File(sDriver); + + if (fDriver.exists() && fDriver.canWrite()) { + Drivers.add(fDriver.getAbsolutePath()); + } + } + + String sDrivers[] = Drivers.toArray(new String[Drivers.size()]); + return sDrivers; + } + + //Fatih: get folders list +//Path Example: /storage/emulated/legacy/ + public String[] GetFolderList(String _envPath) { + ArrayList<String> Folders = new ArrayList<String>(); + + File f = new File(_envPath); + File[] files = f.listFiles(); + for (File fFile : files) { + if (fFile.isDirectory()) { + Folders.add(fFile.getName()); + } + } + String sFolders[] = Folders.toArray(new String[Folders.size()]); + return sFolders; + } + + //Fatih: get files list +//Path Example: /storage/emulated/legacy/ + public String[] GetFileList(String _envPath) { + ArrayList<String> Folders = new ArrayList<String>(); + + File f = new File(_envPath); + File[] files = f.listFiles(); + for (File fFile : files) { + if (fFile.isFile()) { + Folders.add(fFile.getName()); + } + } + String sFolders[] = Folders.toArray(new String[Folders.size()]); + return sFolders; + } + + public boolean FileExists(String _fullFileName) { + return new File(_fullFileName).isFile(); + } + + public boolean DirectoryExists(String _fullDirectoryName) { + return new File(_fullDirectoryName).isDirectory(); + } + + + //http://blog.scriptico.com/category/dev/java/android/ + public void Minimize() { + Intent main = new Intent(Intent.ACTION_MAIN); + main.addCategory(Intent.CATEGORY_HOME); + main.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); + controls.activity.startActivity(main); + } + + public void Restart(int _delay) { + PendingIntent intent = PendingIntent.getActivity(controls.activity.getBaseContext(), 0, + new Intent(controls.activity.getIntent()), + controls.activity.getIntent().getFlags()); + AlarmManager manager = (AlarmManager) controls.activity.getSystemService(Context.ALARM_SERVICE); + manager.set(AlarmManager.RTC, System.currentTimeMillis() + _delay, intent); + System.exit(2); + } + + public String UriEncode(String _message) { + return Uri.encode(_message); + } + + //http://www.viralandroid.com/2015/12/how-to-use-font-awesome-icon-in-android-application.html +//http://fontawesome.io/cheatsheet/ + public String ParseHtmlFontAwesome(String _htmlString) { + String iconHeart = _htmlString; //""; + String valHexStr = iconHeart.replace("&#x", "").replace(";", ""); + long valLong = Long.parseLong(valHexStr, 16); + //button.setText(getString((char)valLong+""); + return (char) valLong + ""; + } + +//https://developer.android.com/reference/android/provider/Settings.System + + public int GetSettingsSystemInt(String _strKey) { + try { + return android.provider.Settings.System.getInt(controls.activity.getContentResolver(), _strKey); + } catch (android.provider.Settings.SettingNotFoundException e) { + return -1; + } + } + + //https://developer.android.com/reference/android/provider/Settings.System + public String GetSettingsSystemString(String _strKey) { + String r = android.provider.Settings.System.getString(controls.activity.getContentResolver(), _strKey); + if (r == null) r = ""; + return r; + } + + public float GetSettingsSystemFloat(String _strKey) { + try { + return android.provider.Settings.System.getFloat(controls.activity.getContentResolver(), _strKey); + } catch (android.provider.Settings.SettingNotFoundException e) { + return -1; + } + } + + public long GetSettingsSystemLong(String _strKey) { + try { + return android.provider.Settings.System.getLong(controls.activity.getContentResolver(), _strKey); + } catch (android.provider.Settings.SettingNotFoundException e) { + return -1; + } + } + + public boolean PutSettingsSystemInt(String _strKey, int _value) { + return android.provider.Settings.System.putInt(controls.activity.getContentResolver(), _strKey, _value); + } + + public boolean PutSettingsSystemLong(String _strKey, long _value) { + return android.provider.Settings.System.putLong(controls.activity.getContentResolver(), _strKey, _value); + } + + public boolean PutSettingsSystemFloat(String _strKey, float _value) { + return android.provider.Settings.System.putFloat(controls.activity.getContentResolver(), _strKey, _value); + } + + public boolean PutSettingsSystemString(String _strKey, String _strValue) { + return android.provider.Settings.System.putString(controls.activity.getContentResolver(), _strKey, _strValue); + } + + public boolean IsRuntimePermissionNeed() { + return Build.VERSION.SDK_INT >= 23; //Build.VERSION_CODES.M + } + + public boolean IsRuntimePermissionGranted(String _androidPermission) { //"android.permission.CAMERA" + return jCommons.IsRuntimePermissionGranted(controls, _androidPermission); + } + + public void RequestRuntimePermission(String _androidPermission, int _requestCode) { //"android.permission.CAMERA" + jCommons.RequestRuntimePermission(controls, _androidPermission, _requestCode); + } + + public void RequestRuntimePermission(String[] _androidPermissions, int _requestCode) { //"android.permission.CAMERA" + jCommons.RequestRuntimePermission(controls, _androidPermissions, _requestCode); + } + + //by TR3E + public int GetScreenWidth( ){ + int w = controls.appLayout.getWidth(); + + if( w <= 0 ) + w = controls.screenWidth; + + return w; + } + + //by TR3E + public int GetScreenHeight( ){ + int h = controls.appLayout.getHeight(); + + if( h <= 0 ) + h = controls.screenHeight; + + return h; + } + + //by TR3E + public String GetSystemVersionString() { + return android.os.Build.VERSION.RELEASE; + } + + public ByteBuffer GetJByteBuffer(int _width, int _height) { + ByteBuffer graphicBuffer = ByteBuffer.allocateDirect(_width * _height * 4); + return graphicBuffer; + } + + public ByteBuffer GetByteBufferFromImage(Bitmap _bitmap) { + if (_bitmap == null) return null; + int w = _bitmap.getWidth(); + int h = _bitmap.getHeight(); + ByteBuffer graphicBuffer = ByteBuffer.allocateDirect(w * h * 4); + _bitmap.copyPixelsToBuffer(graphicBuffer); + graphicBuffer.rewind(); //reset position + return graphicBuffer; + } + + private String getRealPathFromURI(Uri contentUri) { + String path = ""; + Cursor cursor = null; + try { + String[] proj = {MediaStore.Images.Media.DATA}; + cursor = controls.activity.getContentResolver().query(contentUri, proj, null, null, null); + cursor.moveToFirst(); + int column_index = cursor.getColumnIndex(proj[0]); + path = cursor.getString(column_index); + } finally { + if (cursor != null) { + cursor.close(); + } + } + return path; + } + + private String getRealPathFromURI_API19(Uri uri){ + String filePath = ""; + String wholeID =""; + + //[ifdef_api19up] + if(Build.VERSION.SDK_INT >= 19) + wholeID = DocumentsContract.getDocumentId(uri); + //[endif_api19up] + + if (wholeID.equals("")) return ""; + + String id = wholeID.split(":")[1]; + String[] column = { MediaStore.Images.Media.DATA }; + // where id is equal to + String sel = MediaStore.Images.Media._ID + "=?"; + Cursor cursor = controls.activity.getContentResolver().query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, + column, sel, new String[]{ id }, null); + int columnIndex = cursor.getColumnIndex(column[0]); + if (cursor.moveToFirst()) { + filePath = cursor.getString(columnIndex); + } + cursor.close(); + return filePath; + } + + public String GetRealPathFromURI(Uri _Uri) { + String path = ""; + + if (Build.VERSION.SDK_INT < 19) + path = getRealPathFromURI(_Uri); + else + path = getRealPathFromURI_API19(_Uri); + + return path; + } + +} +//**class entrypoint**//please, do not remove/change this line! + +//Main Java/Pascal Interface Class +public class Controls { +// +public Activity activity; // Activity +public RelativeLayout appLayout; // Base Layout +public int screenStyle=0; // Screen Style [Dev:0 , Portrait: 1, Landscape : 2] +public int systemVersion; + +public int screenWidth = 0; +public int screenHeight = 0; + +public boolean formChangeSize = false; // OnRotate if change size or show form with rotate [by TR3E] +public boolean formNeedLayout = false; // Automatic updatelayout [by TR3E] + +private int javaNewId = 100000; // To assign java id from 100001 onwards [by TR3E] + +public boolean isGDXGame = false; //prepare to LAMW GDXGame +public Object GDXGame = null; //prepare to LAMW GDXGame + +//Sets the density at which an asset image should be loaded. +//This is done so that the same image looks the same on different devices with different densities. +private int densityForAssets = 0; // (0 Not set) + +//Jave -> Pascal Function ( Pascal Side = Event ) +public native void pAppOnCreate(Context context, RelativeLayout layout, Intent intent); +public native int pAppOnScreenStyle(); +public native void pAppOnNewIntent(Intent intent); +public native void pAppOnDestroy(); +public native void pAppOnPause(); +public native void pAppOnRestart(); +public native void pAppOnResume(); +public native void pAppOnStart(); +public native void pAppOnStop(); +public native void pAppOnBackPressed(); +public native int pAppOnRotate(int rotate); +public native void pAppOnUpdateLayout(); +public native void pAppOnConfigurationChanged(); +public native void pAppOnActivityResult(int requestCode, int resultCode, Intent data); +public native void pAppOnCreateOptionsMenu(Menu menu); +public native void pAppOnClickOptionMenuItem(MenuItem menuItem, int itemID, String itemCaption, boolean checked); +public native boolean pAppOnPrepareOptionsMenu(Menu menu, int menuSize); +public native boolean pAppOnPrepareOptionsMenuItem(Menu menu, MenuItem menuItem, int itemIndex); +public native void pAppOnCreateContextMenu(ContextMenu menu); +public native void pAppOnClickContextMenuItem(MenuItem menuItem, int itemID, String itemCaption, boolean checked); +public native void pOnDraw(long pasobj); +public native void pOnTouch(long pasobj, int act, int cnt, float x1, float y1, float x2, float y2); +public native void pOnClickGeneric(long pasobj, int value); +public native boolean pAppOnSpecialKeyDown(char keyChar, int keyCode, String keyCodeString); +public native void pOnDown(long pasobj, int value); +public native void pOnClick(long pasobj, int value); +public native void pOnLongClick(long pasobj, int value); +public native void pOnDoubleClick(long pasobj, int value); +public native void pOnChange(long pasobj, String txt, int count); +public native void pOnChanged(long pasobj, String txt, int count); +public native void pOnEnter(long pasobj); +public native void pOnBackPressed(long pasobj); +public native void pOnClose(long pasobj); +public native void pAppOnViewClick(View view, int id); +public native void pAppOnListItemClick(AdapterView adapter, View view, int position, int id); +public native void pOnFlingGestureDetected(long pasobj, int direction); +public native void pOnPinchZoomGestureDetected(long pasobj, float scaleFactor, int state); +public native void pOnLostFocus(long pasobj, String text); +public native void pOnBeforeDispatchDraw(long pasobj, Canvas canvas, int tag); +public native void pOnAfterDispatchDraw(long pasobj, Canvas canvas, int tag); +public native void pOnLayouting(long pasobj, boolean changed); +public native void pAppOnRequestPermissionResult(int requestCode, String permission, int grantResult); +// ------------------------------------------------------------------------------------------- +//Load Pascal Library - Please, do not edit the static content commented in the template file +// ------------------------------------------------------------------------------------------- +static { +try{System.loadLibrary("controls");} catch (UnsatisfiedLinkError e) {Log.e("JNI_Loading_libcontrols", "exception", e);} +} +// ------------------------------------------------------------------------- +// Activity Event +// ------------------------------------------------------------------------- +public int jAppOnScreenStyle() { return(pAppOnScreenStyle()); } + +public void jAppOnCreate(Context context,RelativeLayout layout, Intent intent) //android.os.Bundle; + { pAppOnCreate(context,layout,intent); } + +public void jAppOnNewIntent(Intent intent) { pAppOnNewIntent(intent); } +public void jAppOnDestroy() { pAppOnDestroy(); } +public void jAppOnPause() { pAppOnPause(); } +public void jAppOnRestart() { pAppOnRestart(); } +public void jAppOnResume() { pAppOnResume(); } +public void jAppOnStart() { pAppOnStart(); } +public void jAppOnStop() { pAppOnStop(); } +public void jAppOnBackPressed() { pAppOnBackPressed(); } +public int jAppOnRotate(int rotate) { return(pAppOnRotate(rotate)); } +public void jAppOnUpdateLayout() { pAppOnUpdateLayout(); } + +//rotate=1 --> device on vertical/default position ; 2 --> device on horizontal position +public void jAppOnConfigurationChanged() { pAppOnConfigurationChanged(); } + +public void jAppOnActivityResult(int requestCode, int resultCode, Intent data) + { pAppOnActivityResult(requestCode,resultCode,data); } + +public void jAppOnCreateOptionsMenu(Menu m) {pAppOnCreateOptionsMenu(m);} +public void jAppOnClickOptionMenuItem(MenuItem item,int itemID, String itemCaption, boolean checked){pAppOnClickOptionMenuItem(item,itemID,itemCaption,checked);} + +public boolean jAppOnPrepareOptionsMenu(Menu m, int size) { + boolean r = pAppOnPrepareOptionsMenu(m, size); + return r; +} + +public boolean jAppOnPrepareOptionsItem(Menu m, MenuItem item, int index) { + boolean r = pAppOnPrepareOptionsMenuItem(m, item, index); + return r; +} + +public void jAppOnCreateContextMenu(ContextMenu m) {pAppOnCreateContextMenu(m);} +public void jAppOnClickContextMenuItem(MenuItem item,int itemID, String itemCaption, boolean checked) {pAppOnClickContextMenuItem(item,itemID,itemCaption,checked);} +public void jAppOnViewClick(View view, int id){ pAppOnViewClick(view,id);} +public void jAppOnListItemClick(AdapterView<?> adapter, View view, int position, int id){ pAppOnListItemClick(adapter, view,position,id);} +//public void jAppOnHomePressed() { pAppOnHomePressed(); } +public boolean jAppOnKeyDown(char keyChar , int keyCode, String keyCodeString) {return pAppOnSpecialKeyDown(keyChar, keyCode, keyCodeString);}; + +public void jAppOnRequestPermissionResult(int requestCode, String permission, int grantResult) { + pAppOnRequestPermissionResult(requestCode, permission ,grantResult); +} + +// For internal id of componente 100000 or higher + +public int getJavaNewId(){ + javaNewId = javaNewId + 1; + return javaNewId; +} + +public int GetJavaLastId(){ + return javaNewId; +} + +// We assign the density for the correct scaling of assets images + +public void SetDensityAssets( int _density ){ + densityForAssets = _density; +} + +public int GetDensityAssets( ){ + return densityForAssets; +} + +// For reuse and avoid repeating errors + +public int GetDrawableResourceId(String _resName) { + try { + Class<?> res = R.drawable.class; + Field field = res.getField(_resName); //"drawableName" + + if( field != null ){ + int drawableId = field.getInt(null); + return drawableId; + } else + return 0; + } + catch (Exception e) { + //Log.e("GetDrawableResourceId", "Failure to get drawable id.", e); + return 0; + } +} + +public Drawable GetDrawableResourceById(int _resID) { + + if( _resID == 0 ) return null; + + Drawable res = null; + + if (android.os.Build.VERSION.SDK_INT < 21 ) { + res = activity.getResources().getDrawable(_resID); + } + + //[ifdef_api21up] + if(android.os.Build.VERSION.SDK_INT >= 21) + res = activity.getResources().getDrawable(_resID, null); + //[endif_api21up] + + return res; +} + +//// ------------------------------------------------------------------------- +// System, Class +// ------------------------------------------------------------------------- +public void systemGC() { + System.gc(); +} + + +public void ShowAlert(String _title, String _message, String _btnText) { + + AlertDialog dialog = null; + AlertDialog.Builder builder = new AlertDialog.Builder(this.activity); + builder.setMessage (_message) + .setCancelable (false) + .setNeutralButton(_btnText, null); + + dialog = builder.create(); + dialog.setTitle(_title); + dialog.show(); +} + + +public void systemSetOrientation(int orientation) { + this.activity.setRequestedOrientation(orientation); +} + +public int getAPILevel() { + return android.os.Build.VERSION.SDK_INT; +} + +//by jmpessoa +public int systemGetOrientation() { + return (this.activity.getResources().getConfiguration().orientation); +} + +public void classSetNull (Class<?> object) { + object = null; +} + +public void classChkNull (Class<?> object) { + if (object == null) { Log.i("JAVA","checkNull-Null"); }; + if (object != null) { Log.i("JAVA","checkNull-Not Null"); }; +} + +public Context GetContext() { + return this.activity; +} + +//by TR3E Software +public int getContextTop(){ + ViewGroup view = ((ViewGroup) this.activity.findViewById(android.R.id.content)); + + if( view != null) + return view.getTop(); + else + return 0; + +} + +//by TR3E Software +public int getStatusBarHeight() { + int resourceId = this.activity.getResources().getIdentifier("status_bar_height", "dimen", "android"); + + if ( resourceId > 0 ) + return this.activity.getResources().getDimensionPixelSize(resourceId); + else + return 0; +} + +//by thierrydijoux +public String getQuantityStringByName(String _resName, int _quantity) { + int id = this.activity.getResources().getIdentifier(_resName, "plurals", this.activity.getPackageName()); + String value = id == 0 ? "" : (String) this.activity.getResources().getQuantityString(id, _quantity, _quantity); + return value; +} + +//by thierrydijoux +public String getStringResourceByName(String _resName) { + int id = this.activity.getResources().getIdentifier(_resName, "string", this.activity.getPackageName()); + String value = id == 0 ? "" : (String) this.activity.getResources().getText(id); + return value; +} +// ------------------------------------------------------------------------- +// App Related +// ------------------------------------------------------------------------- +// +public void appFinish() { + activity.finish(); + System.exit(0); //<< ------- fix by jmpessoa +} + +public void appRecreate() { + activity.recreate(); +} + +public void appKillProcess() { + this.activity.finish(); +} +// ------------------------------------------------------------------------- +// Asset Related +// ------------------------------------------------------------------------- +// src : codedata.txt +// tgt : /data/data/com.kredix.control/data/codedata.txt +public boolean assetSaveToFile(String src, String tgt) { + InputStream is = null; + FileOutputStream fos = null; + String path = '/' + tgt.substring(1,tgt.lastIndexOf("/")); + File outDir = new File(path); + outDir.mkdirs(); + try { + is = this.activity.getAssets().open(src); + int size = is.available(); + byte[] buffer = new byte[size]; + File outfile = new File(tgt); + fos = new FileOutputStream(outfile); + for (int c = is.read(buffer); c != -1; c = is.read(buffer)){ + fos.write(buffer, 0, c); + } + is.close(); + fos.close(); + return(true); } + catch (IOException e) { + e.printStackTrace(); + return(false); } +} + +// ------------------------------------------------------------------------- +// View Related - Generic! --> AndroidWidget.pas +// ------------------------------------------------------------------------- + +public void view_SetVisible(View view, int state) { + view.setVisibility(state); +} + +public void view_SetBackGroundColor(View view, int color) { + view.setBackgroundColor(color); +} + +public void view_Invalidate(View view) { + view.invalidate(); +} + +// ------------------------------------------------------------------------- +// Form Related +// ------------------------------------------------------------------------- +// +public java.lang.Object jForm_Create(long pasobj ) { + return (java.lang.Object)( new jForm(this,pasobj)); +} + +// ------------------------------------------------------------------------- +// System Info +// ------------------------------------------------------------------------- +// Result : Width(16bit) : Height (16bit) +public int getScreenWH(android.content.Context context) { + return ( (screenWidth << 16)| screenHeight ); +} + +// LORDMAN - 2013-07-28 +public int getStrLength(String Txt) { //fix by jmpessoa + int len = 0; + if(Txt != null) { + len = Txt.length(); + } + return ( len ); +} + +/*LORDMAN - 2013-07-30 +public String getStrDateTime() { + SimpleDateFormat formatter = new SimpleDateFormat ( "yyyy-MM-dd HH:mm:ss", Locale.KOREA ); + return( formatter.format ( new Date () ) ); +} +*/ +//---------------------------------------------- +//Controls Version Info +//------------------------------------------- +//GetControlsVersionFeatures ... //Controls.java version-revision info! [0.6-04] +public String getStrDateTime() { //hacked by jmpessoa!! sorry, was for a good cause! please, use the jForm_GetDateTime!! + String listVersionInfo = + "7$0=GetControlsVersionInfo;" + //added ... etc.. + "7$0=getLocale;"; //added ... etc.. + return listVersionInfo; +} + +//Fatih: Path = '' = Asset Root Folder +//Path Example: gunlukler/2015/02/28/001 +public String[] getAssetContentList(String Path) throws IOException { + ArrayList<String> Folders = new ArrayList<String>(); + + Resources r = this.activity.getResources(); + AssetManager am = r.getAssets(); + String fileList[] = am.list(Path); + if (fileList != null) + { + for (int i = 0; i < fileList.length; i++) + { + Folders.add(fileList[i]); + } + } + String sFolders[] = Folders.toArray(new String[Folders.size()]); + return sFolders; +} + +//Fatih: gets system storage driver list +public String[] getDriverList() { + ArrayList<String> Drivers = new ArrayList<String>(); + + String sDriver; + sDriver = System.getenv("EXTERNAL_STORAGE"); + if(sDriver != null) + { + File fDriver = new File(sDriver); + + if (fDriver.exists() && fDriver.canWrite()) { + Drivers.add(fDriver.getAbsolutePath()); + } + } + + sDriver = System.getenv("SECONDARY_STORAGE"); + if(sDriver != null) + { + File fDriver = new File(sDriver); + + if (fDriver.exists() && fDriver.canWrite()) { + Drivers.add(fDriver.getAbsolutePath()); + } + } + + String sDrivers[] = Drivers.toArray(new String[Drivers.size()]); + return sDrivers; +} + +//Fatih: get folders list +//Path Example: /storage/emulated/legacy/ +public String[] getFolderList(String Path) { + ArrayList<String> Folders = new ArrayList<String>(); + + File f = new File(Path); + File[] files = f.listFiles(); + for (File fFile : files) { + if (fFile.isDirectory()) { + Folders.add(fFile.getName()); + } + } + String sFolders[] = Folders.toArray(new String[Folders.size()]); + return sFolders; +} + +//Fatih: get files list +//Path Example: /storage/emulated/legacy/ +public String[] getFileList(String Path) { + ArrayList<String> Folders = new ArrayList<String>(); + + File f = new File(Path); + File[] files = f.listFiles(); + for (File fFile : files) { + if (fFile.isFile()) { + Folders.add(fFile.getName()); + } + } + String sFolders[] = Folders.toArray(new String[Folders.size()]); + return sFolders; +} +//by jmpessoa: Class controls version info +public String GetControlsVersionInfo() { + return "7$0"; //version$revision [0.6$5] +} +public long getTick() { + return ( System.currentTimeMillis() ); +} +// ------------------------------------------------------------------------- +// Android path +// ------------------------------------------------------------------------- +// Result : /data/app/com.kredix-1.apk +public String getPathApp (android.content.Context context,String pkgName) { + String PathApp = ""; + try { + PathApp = context.getPackageManager().getApplicationInfo( pkgName, 0 ).sourceDir; + } + catch ( NameNotFoundException e ) {} + return ( PathApp ); +} + +// Result : /data/data/com/kredix/files +public String getPathDat (android.content.Context context) { + //String version = Build.VERSION.RELEASE; + String PathDat = context.getFilesDir().getAbsolutePath(); + return ( PathDat ); +} + +// Result : /storage/emulated/0 +public String getPathExt() { + File FileExt = Environment.getExternalStorageDirectory(); + return ( FileExt.getPath() ); +} + +// Result : /storage/emulated/0/DCIM +public String getPathDCIM() { + File FileDCIM = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM); + return ( FileDCIM.getPath() ); +} + +//by jmpessoa +public String getPathDataBase(android.content.Context context) { + String destPath = context.getFilesDir().getAbsolutePath(); + destPath = destPath.substring(0, destPath.lastIndexOf("/")) + "/databases"; + return destPath; +} + +// ------------------------------------------------------------------------- +// Android Locale +// ------------------------------------------------------------------------- +// thierrydijoux - get locale info +public String getLocale(int localeType) { + Context context = this.activity; + String value = ""; + switch (localeType) { + case 0: value = context.getResources().getConfiguration().locale.getCountry(); + break; + case 1: value = context.getResources().getConfiguration().locale.getDisplayCountry(); + break; + case 2: value = context.getResources().getConfiguration().locale.getDisplayLanguage(); + break; + case 3: value = context.getResources().getConfiguration().locale.getDisplayName(); + break; + case 4: value = context.getResources().getConfiguration().locale.getDisplayVariant(); + break; + case 5: value = context.getResources().getConfiguration().locale.getISO3Country(); + break; + case 6: value = context.getResources().getConfiguration().locale.getISO3Language(); + break; + case 7: value = context.getResources().getConfiguration().locale.getVariant(); + break; + } + + return value; +} +// ------------------------------------------------------------------------- +// Android Device +// ------------------------------------------------------------------------- +// Result: Phone Number - LORDMAN +public String getDevPhoneNumber() { + String f = ""; + + TelephonyManager telephony = (TelephonyManager) activity.getSystemService(Context.TELEPHONY_SERVICE); + if (telephony!=null) { + try { + f = telephony.getLine1Number(); + } catch (SecurityException ex) { + Log.e("getDevPhoneNumber", ex.getMessage()); + } + } + return f; +} + +// Result: Device ID - LORDMAN +// Remarks : Nexus7 (no moblie device) -> Crash : fixed code - Simon +public String getDevDeviceID() { + String f = ""; + TelephonyManager telephony = (TelephonyManager) activity.getSystemService(Context.TELEPHONY_SERVICE); + if (telephony!=null) { + try { + f = telephony.getDeviceId(); + } catch (SecurityException ex) { + Log.e("getDevDeviceID", ex.getMessage()); + } + } + return f; +} +// ------------------------------------------------------------------------- +// Bitmap +// ------------------------------------------------------------------------- +// Get Image Width,Height without Decoding +public int Image_getWH (String filename ) { + BitmapFactory.Options options = new BitmapFactory.Options(); + options.inJustDecodeBounds = true; + BitmapFactory.decodeFile(filename, options); + return ( (options.outWidth << 16) | (options.outHeight) ); +} + +// +public Bitmap Image_resample(String infile,int size) { + int iw,ih,im; // input image w,h, max + int scale; // + int ow,oh; // output image w,h + + // get input image w,h + BitmapFactory.Options options = new BitmapFactory.Options(); + options.inJustDecodeBounds = true; + BitmapFactory.decodeFile(infile, options); + iw = options.outWidth; + ih = options.outHeight; + // + im = Math.max(iw,ih); + scale = 1; + if (size <= (im/32)) { scale = 32; } + if (((im/32) < size) && (size <= (im/16))) { scale = 16; } + if (((im/16) < size) && (size <= (im/ 8))) { scale = 8; } + if (((im/ 8) < size) && (size <= (im/ 4))) { scale = 4; } + if (((im/ 4) < size) && (size <= (im/ 2))) { scale = 2; } + // + options.inJustDecodeBounds = false; + options.inSampleSize = scale; + Bitmap src = BitmapFactory.decodeFile(infile, options); + // + if (im == iw) { ow = size; + oh = Math.round((float)ow*((float)ih/(float)iw)); } + else { oh = size; + ow = Math.round((float)oh*((float)iw/(float)ih)); } + // + return( Bitmap.createScaledBitmap(src, ow,oh, true) ); +} + +public void Image_save(Bitmap bmp, String filename) { + try { FileOutputStream out = new FileOutputStream(filename); + bmp.compress(Bitmap.CompressFormat.PNG, 100, out); } + catch (Exception e) + { e.printStackTrace(); } +} + +// ------------------------------------------------------------------------- +// Toast +// ------------------------------------------------------------------------- +// +public void jToast( String str ) { + Toast.makeText(activity, str, Toast.LENGTH_SHORT).show(); +} + +//by jmpessoa +//you need a real android device (not emulator!) +//http://www.androidaspect.com/2013/09/how-to-send-email-from-android.html +public void jSend_Email( + String to, + String cc, + String bcc, + String subject, + String message) +{ + try { + Intent email = new Intent(Intent.ACTION_SEND); + email.putExtra(Intent.EXTRA_EMAIL, to); + email.putExtra(Intent.EXTRA_CC, cc); + email.putExtra(Intent.EXTRA_BCC, bcc); + email.putExtra(Intent.EXTRA_SUBJECT, subject); + email.putExtra(Intent.EXTRA_TEXT, message); + // Use email client only + email.setType("message/rfc822"); + this.activity.startActivity(Intent.createChooser(email, "Choose an email client")); + //rst = 1; //ok + }catch (Exception e) { + //Log.i("Java","Send Email Error"); + e.printStackTrace(); + } +} + +//http://codetheory.in/android-sms/ +//http://www.developerfeed.com/java/tutorial/sending-sms-using-android +//http://www.techrepublic.com/blog/software-engineer/how-to-send-a-text-message-from-within-your-android-app/ + + public int jSend_SMS(String phoneNumber, String msg, boolean multipartMessage) { + SmsManager sms = SmsManager.getDefault(); + try { + //SmsManager.getDefault().sendTextMessage(phoneNumber, null, msg, null, null); + if (multipartMessage) { + ArrayList<String> messages = sms.divideMessage(msg); + sms.sendMultipartTextMessage(phoneNumber, null, messages, null, null); + } else { + List<String> messages = sms.divideMessage(msg); + for (String message : messages) { + sms.sendTextMessage(phoneNumber, null, message, null, null); + } + } + //Log.i("Send_SMS",phoneNumber+": "+ msg); + return 1; //ok + } catch (Exception e) { + //Log.i("Send_SMS Fail",e.toString()); + return 0; //fail + } +} + //improved by CC + //http://forum.lazarus-ide.org/index.php/topic,44775.msg315109/topicseen.html + public int jSend_SMS(String phoneNumber, String msg, String packageDeliveredAction, boolean multipartMessage) { + String SMS_DELIVERED = packageDeliveredAction; + PendingIntent deliveredPendingIntent = PendingIntent.getBroadcast(this.GetContext(), 0, new Intent(SMS_DELIVERED), 0); + SmsManager sms = SmsManager.getDefault(); + int partsCount = 1; + try { + if (multipartMessage) + { + ArrayList<String> messages = sms.divideMessage(msg); + partsCount = messages.size(); + ArrayList<PendingIntent> deliveredPendingIntents = new ArrayList<PendingIntent>(); + for (int i = 0; i < messages.size(); i++) + { + deliveredPendingIntents.add(i, deliveredPendingIntent); + } + sms.sendMultipartTextMessage(phoneNumber, null, messages, deliveredPendingIntents, null ); + } + else + { + List<String> messages = sms.divideMessage(msg); + partsCount = messages.size(); + for (String message : messages) + { + sms.sendTextMessage(phoneNumber, null, message, deliveredPendingIntent, null ); + } + } + return partsCount; + } catch (Exception e) { + return 0; //fail + } + } + +public String jRead_SMS(Intent intent, String addressBodyDelimiter) { + //---get the SMS message passed in--- + SmsMessage[] msgs = null; + String str = ""; + if (intent.getAction().equals("android.provider.Telephony.SMS_RECEIVED")) { + Bundle bundle = intent.getExtras(); + if (bundle != null) + { + //---retrieve the SMS message received--- + Object[] pdus = (Object[]) bundle.get("pdus"); + msgs = new SmsMessage[pdus.length]; + for (int i=0; i<msgs.length; i++){ + msgs[i] = SmsMessage.createFromPdu((byte[])pdus[i]); + str += msgs[i].getOriginatingAddress(); + str += addressBodyDelimiter; + str += msgs[i].getMessageBody().toString(); + str += " "; + } + } + } + return str; +} + +//by jmpessoa +//http://eagle.phys.utk.edu/guidry/android/readContacts.html +@SuppressLint("DefaultLocale") +public String jContact_getMobileNumberByDisplayName(String contactName){ + + String matchNumber = ""; + String username; + + username = contactName; + + username = username.toLowerCase(); + + Cursor phones = this.activity.getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,null,null, null); + + while (phones.moveToNext()) + { + String name=phones.getString(phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME)); + String phoneNumber = phones.getString(phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)); + String phoneType = phones.getString(phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.TYPE)); + + name = name.toLowerCase(); + + if(name.equals(username)) { + if ( phoneType.equals("2")) { //mobile + matchNumber = phoneNumber; + break; + } + } + } + phones.close(); + return matchNumber; +} + +//by jmpessoa +//http://eagle.phys.utk.edu/guidry/android/readContacts.html +public String jContact_getDisplayNameList(char delimiter){ + String nameList = ""; + Cursor phones = this.activity.getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,null,null, null); + while (phones.moveToNext()) + { + String name=phones.getString(phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME)); + String phoneType = phones.getString(phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.TYPE)); + if ( phoneType.equals("2")) { //mobile + nameList = nameList + delimiter + name; + } + } + phones.close(); + return nameList; +} +// ------------------------------------------------------------------------- +// Bitmap +// ------------------------------------------------------------------------- +public int[] getBmpArray(String file) { + Bitmap bmp = BitmapFactory.decodeFile(file); + int length = bmp.getWidth()*bmp.getHeight(); + int[] pixels = new int[length+2]; + bmp.getPixels(pixels, 0, bmp.getWidth(), 0, 0, bmp.getWidth(), bmp.getHeight()); + pixels[length+0] = bmp.getWidth (); + pixels[length+1] = bmp.getHeight(); + return ( pixels ); +} + +private String getRealPathFromURI(Uri contentURI) { + String result; + Cursor cursor = this.GetContext().getContentResolver().query(contentURI, null, + null, null, null); + if (cursor == null) { // Source is Dropbox or other similar local file path + result = contentURI.getPath(); + } else { + cursor.moveToFirst(); + try { + int idx = cursor + .getColumnIndex(MediaStore.Images.ImageColumns.DATA); + result = cursor.getString(idx); + } catch (Exception e) { + result = ""; + } + cursor.close(); + } + return result; +} + +// ------------------------------------------------------------------------- +// Camera +// ------------------------------------------------------------------------- + /* + * NOTE: The DCIM folder on the microSD card in your Android device is where Android stores the photos and videos + * you take with the device's built-in camera. When you open the Android Gallery app, + * you are browsing the files saved in the DCIM folder.... + */ +private void galleryAddPic(File image_uri) { + if (Build.VERSION.SDK_INT < 19) { + this.activity.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(image_uri))); + } + else + { + MediaScannerConnection.scanFile( + this.activity, + new String[] {image_uri.getAbsolutePath()}, + new String[] {"image/jpg"}, + new MediaScannerConnection.OnScanCompletedListener() { + @Override + public void onScanCompleted(String path, Uri uri) { + Log.e("Camera","File " + path + " was scanned successfully: " + uri); + } + }); + } +} + +public String jCamera_takePhoto(String path, String filename, int requestCode) { + Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); + String image_path; + Uri image_uri; + + image_path = (path+File.separator+filename); + + File newfile = new File(path, File.separator+filename); + File dirAsFile = newfile.getParentFile(); + if (!dirAsFile.exists()) { + dirAsFile.mkdirs(); + } + + try { + newfile.createNewFile(); + } + catch (IOException e) { + Log.e("File creation error",newfile.getPath()); + } + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { + + Uri outputFileUri = FileProvider.getUriForFile(this.GetContext(), this.GetContext().getApplicationContext().getPackageName() + ".provider", newfile); + intent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri); + intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); + image_uri = outputFileUri; + } + else + { + Uri mImageCaptureUri = Uri.fromFile(newfile); + intent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, mImageCaptureUri); + intent.putExtra("return-data", true); + image_uri = mImageCaptureUri; + } + + if (intent.resolveActivity(this.GetContext().getPackageManager()) != null) { + this.activity.startActivityForResult(intent, requestCode); + } + + galleryAddPic(newfile); + return newfile.toString(); +} +public String jCamera_takePhoto(String path, String filename) { + return jCamera_takePhoto(path, filename, 12345); +} + +public void takePhoto(String filename) { + Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); + Uri mImageCaptureUri = Uri.fromFile(new File("", filename)); + intent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, mImageCaptureUri); + intent.putExtra("return-data", true); + activity.startActivityForResult(intent, 12345); + } + + +//------------------------------------------------------------------------------------------------------- +//SMART LAMW DESIGNER +//------------------------------------------------------------------------------------------------------- + +public java.lang.Object jButton_Create(long pasobj ) { + return (java.lang.Object)( new jButton(this.activity,this,pasobj)); +} + +public java.lang.Object jCheckBox_Create(long pasobj ) { + return (java.lang.Object)( new jCheckBox(this.activity,this,pasobj)); +} + +public java.lang.Object jEditText_Create(long pasobj ) { + return (java.lang.Object)( new jEditText(this.activity,this,pasobj)); +} + +public java.lang.Object jExpandableListView_jCreate(long _Self) { + return (java.lang.Object)(new jExpandableListView(this,_Self)); +} +public native void pOnExpandableListViewChildClick(long pasobj, int groupPosition, String groupHeader, int childItemPosition, String childItemCaption); +public native void pOnExpandableListViewGroupExpand(long pasobj, int groupPosition, String groupHeader); +public native void pOnExpandableListViewGroupCollapse(long pasobj, int groupPosition, String groupHeader); + +public java.lang.Object jHttpClient_jCreate(long _Self) { + return (java.lang.Object)(new jHttpClient(this,_Self)); +} +public native void pOnHttpClientContentResult(long pasobj, String content); +public native void pOnHttpClientCodeResult(long pasobj, int code); +public native void pOnHttpClientUploadProgress(long pasobj, long progress); +public native void pOnHttpClientUploadFinished(long pasobj, int connectionStatusCode, String connectionStatusMessage, String fullFileName); + +public java.lang.Object jPanel_Create(long pasobj ) { + return (java.lang.Object)(new jPanel(this.activity,this,pasobj)); +} + +public java.lang.Object jPreferences_jCreate(long _Self, boolean _IsShared) { + return (java.lang.Object)(new jPreferences(this,_Self,_IsShared)); +} + +public java.lang.Object jsBottomNavigationView_jCreate(long _Self) { + return (java.lang.Object)(new jsBottomNavigationView(this,_Self)); +} +public native void pOnClickBottomNavigationViewItem(long pasobj, int itemId, String itemCaption); + +public java.lang.Object jsDrawerLayout_jCreate(long _Self) { + return (java.lang.Object)(new jsDrawerLayout(this,_Self)); +} + +public java.lang.Object jsFloatingButton_jCreate(long _Self) { + return (java.lang.Object)(new jsFloatingButton(this,_Self)); +} + +public java.lang.Object jsNavigationView_jCreate(long _Self) { + return (java.lang.Object)(new jsNavigationView(this,_Self)); +} +public native void pOnClickNavigationViewItem(long pasobj, int itemId, String itemCaption); + +public java.lang.Object jsToolbar_jCreate(long _Self, boolean _asActionBar) { + return (java.lang.Object)(new jsToolbar(this,_Self,_asActionBar)); +} + +public java.lang.Object jSwitchButton_jCreate(long _Self) { + return (java.lang.Object)(new jSwitchButton(this,_Self)); +} +public native void pOnChangeSwitchButton(long pasobj, boolean state); + +public java.lang.Object jTextView_Create(long pasobj) { + return (java.lang.Object)( new jTextView(this.activity,this,pasobj)); +} + +} diff --git a/SmartFritz/src/org/muctec/smartfritz/jButton.java b/SmartFritz/src/org/muctec/smartfritz/jButton.java new file mode 100644 index 0000000000000000000000000000000000000000..f09f67986aae717239db2842034076c51216ec2d --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jButton.java @@ -0,0 +1,422 @@ +package org.muctec.smartfritz; + +import java.lang.reflect.Field; + +import android.graphics.Bitmap; +import android.graphics.Canvas; +import android.graphics.Color; +import android.graphics.ColorMatrixColorFilter; +import android.graphics.LightingColorFilter; +import android.graphics.Typeface; +import android.graphics.PorterDuff.Mode; +import android.graphics.drawable.BitmapDrawable; +import android.graphics.drawable.ColorDrawable; +import android.graphics.drawable.Drawable; +import android.graphics.drawable.PaintDrawable; +import android.os.Build; +import android.os.Handler; +import android.util.TypedValue; +import android.view.Gravity; +import android.view.View; +import android.view.ViewGroup; +import android.widget.Button; + +public class jButton extends Button { + + private Controls controls = null; // Control Class for Event + private jCommons LAMWCommon; + + private OnClickListener onClickListener; // event + + boolean mChangeFontSizeByComplexUnitPixel = false; + float mTextSize = 0; + int mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; + boolean mIsRounded = false; + + int mBackgroundColor = Color.TRANSPARENT; + int mSavedBackgroundColor; + + int mRadius = 20; + + boolean mEnable = true; + + //Constructor + public jButton(android.content.Context context, Controls ctrls,long pasobj ) { + super(context); + controls = ctrls; + LAMWCommon = new jCommons(this,context,pasobj); + + onClickListener = new OnClickListener() { + public void onClick(View view) { + + int color = GetBackgroundColor(); + + if ( color != Color.TRANSPARENT) { + + mSavedBackgroundColor = color; + + if (mIsRounded == true) { + SetRoundCorner(Color.LTGRAY); + } else { + SetBackgroundColor(Color.LTGRAY); + } + + final Handler handler = new Handler(); + handler.postDelayed(new Runnable() { + @Override + public void run() { + // Do something after: 1s = 1000ms + if (mIsRounded == true) { + SetRoundCorner(mSavedBackgroundColor); + } else { + SetBackgroundColor(mSavedBackgroundColor); + } + } + }, 150); + + } + + if (mEnable) { + controls.pOnClick(LAMWCommon.getPasObj(),Const.Click_Default); + } + + } + }; + setOnClickListener(onClickListener); + } + + //Free object except Self, Pascal Code Free the class. + public void Free() { + setOnKeyListener(null); + setText(""); + LAMWCommon.free(); + } + + public long GetPasObj() { + return LAMWCommon.getPasObj(); + } + + public void SetViewParent(ViewGroup _viewgroup ) { + LAMWCommon.setParent(_viewgroup); + } + + public ViewGroup GetParent() { + return LAMWCommon.getParent(); + } + + public void RemoveFromViewParent() { + LAMWCommon.removeFromViewParent(); + } + + public void SetLeftTopRightBottomWidthHeight(int left, int top, int right, int bottom, int w, int h) { + LAMWCommon.setLeftTopRightBottomWidthHeight(left,top,right,bottom,w,h); + } + + public void SetLParamWidth(int w) { + LAMWCommon.setLParamWidth(w); + } + + public void SetLParamHeight(int h) { + LAMWCommon.setLParamHeight(h); + } + + public int GetLParamHeight() { + return LAMWCommon.getLParamHeight(); + } + + public int GetLParamWidth() { + return LAMWCommon.getLParamWidth(); + } + + public void SetLGravity(int _g) { + LAMWCommon.setLGravity(_g); + } + + public void SetLWeight(float _w) { + LAMWCommon.setLWeight(_w); + } + + public void AddLParamsAnchorRule(int rule) { + LAMWCommon.addLParamsAnchorRule(rule); + } + + public void AddLParamsParentRule(int rule) { + LAMWCommon.addLParamsParentRule(rule); + } + + public void SetLayoutAll(int idAnchor) { + LAMWCommon.setLayoutAll(idAnchor); + } + + public void ClearLayoutAll() { //TODO Pascal + LAMWCommon.clearLayoutAll(); + } + + public View GetView() { + return this; + } + + /* + * If i set android:focusable="true" then button is highlighted and focused, + * but then at the same time, + * i need to click twice on the button to perform the actual click event. + */ + public void SetFocusable(boolean enabled ) { + this.setClickable (enabled); + this.setEnabled (enabled); + this.setFocusable (enabled); + this.setFocusableInTouchMode (enabled); + } + + public void SetTextSize(float size) { + mTextSize = size; + String t = this.getText().toString(); + this.setTextSize(mTextSizeTypedValue, mTextSize); + this.setText(t); + } + + public void SetChangeFontSizeByComplexUnitPixel(boolean _value) { + mChangeFontSizeByComplexUnitPixel = _value; + mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; + if (_value) { + mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_PX; + } + String t = this.getText().toString(); + setTextSize(mTextSizeTypedValue, mTextSize); + this.setText(t); + } + + public void SetFontSizeUnit(int _unit) { + switch (_unit) { + case 0: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; break; + case 1: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_PX; break; + case 2: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_DIP; break; + case 3: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_MM; break; + case 4: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_PT; break; + case 5: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; break; + } + String t = this.getText().toString(); + this.setTextSize(mTextSizeTypedValue, mTextSize); + this.setText(t); + } + + public void PerformClick() { + this.performClick(); + } + + public void PerformLongClick() { + this.performLongClick(); + } + + public void SetBackgroundByResIdentifier(String _imgResIdentifier) { // ..res/drawable ex. "ic_launcher" + this.setBackgroundResource( controls.GetDrawableResourceId(_imgResIdentifier) ); + } + + public void SetBackgroundByImage(Bitmap _image) { + if(_image == null) return; + + Drawable d = new BitmapDrawable(controls.activity.getResources(), _image); + + if( d == null ) return; + + //[ifdef_api16up] + if(Build.VERSION.SDK_INT >= 16) + this.setBackground(d); + //[endif_api16up] + } + + @Override + protected void dispatchDraw(Canvas canvas) { + //DO YOUR DRAWING ON UNDER THIS VIEWS CHILDREN + controls.pOnBeforeDispatchDraw(LAMWCommon.getPasObj(), canvas, 1); //event handle by pascal side + super.dispatchDraw(canvas); + //DO YOUR DRAWING ON TOP OF THIS VIEWS CHILDREN + controls.pOnAfterDispatchDraw(LAMWCommon.getPasObj(), canvas, 1); //event handle by pascal side + + if (!mEnable) this.setEnabled(false); + } + + //http://www.android--tutorials.com/2016/03/android-set-button-drawableleft.html + public void SetCompoundDrawables(Bitmap _image, int _side) { + Drawable d = new BitmapDrawable(controls.activity.getResources(), _image); + + // by TR3E + if( d == null ){ + this.setCompoundDrawables(null, null, null, null); + return; + } + + int h = d.getIntrinsicHeight(); + int w = d.getIntrinsicWidth(); + d.setBounds( 0, 0, w, h ); + + switch(_side) { //(Drawable left, Drawable top, Drawable right, Drawable bottom) + case 0: this.setCompoundDrawables(d, null, null, null); break; //left + case 1: this.setCompoundDrawables(null, null, d, null); break; //right + case 2: this.setCompoundDrawables(null, d, null, null); break; //above + case 3: this.setCompoundDrawables(null, null, null, d); + } + } + + public void SetCompoundDrawables(String _imageResIdentifier, int _side) { + + Drawable d = controls.GetDrawableResourceById(controls.GetDrawableResourceId(_imageResIdentifier)); + + // by TR3E + if( d == null ){ + this.setCompoundDrawables(null, null, null, null); + return; + } + + int h = d.getIntrinsicHeight(); + int w = d.getIntrinsicWidth(); + d.setBounds( 0, 0, w, h ); + + switch(_side) { + case 0: this.setCompoundDrawables(d, null, null, null); break; //left + case 1: this.setCompoundDrawables(null, null, d, null); break; //right + case 2: this.setCompoundDrawables(null, d, null, null); break; //above + case 3: this.setCompoundDrawables(null, null, null, d); + } + + } + + public void SetRoundCorner() { + if (this != null) { + PaintDrawable shape = new PaintDrawable(); + shape.setCornerRadius(mRadius); + int color = Color.TRANSPARENT; + + Drawable background = this.getBackground(); + if (background instanceof ColorDrawable) { + color = ((ColorDrawable)this.getBackground()).getColor(); + mBackgroundColor = color; + shape.setColorFilter(color, Mode.SRC_ATOP); + //[ifdef_api16up] + if(Build.VERSION.SDK_INT >= 16) { + this.setBackground((Drawable)shape); + mIsRounded = true; + } + //[endif_api16up] + } + + } + } + + public void SetRoundCorner(int _backgroundcolor) { + if (this != null) { + mBackgroundColor = _backgroundcolor; + PaintDrawable shape = new PaintDrawable(); + shape.setCornerRadius(mRadius); + shape.setColorFilter(_backgroundcolor, Mode.SRC_ATOP); + //[ifdef_api16up] + if(Build.VERSION.SDK_INT >= 16) { + this.setBackground((Drawable)shape); + mIsRounded = true; + } + //[endif_api16up] + } + } + + public void SetRadiusRoundCorner(int _radius) { + mRadius = _radius; + } + + public int GetBackgroundColor() { + + int c = Color.TRANSPARENT; + Drawable background = this.getBackground(); + if (background instanceof ColorDrawable) { + c = ((ColorDrawable)this.getBackground()).getColor(); + } else { + if (mIsRounded = true) c = mBackgroundColor; + } + + return c; + } + + public void SetBackgroundColor(int _color) { + if (this != null) { + //mBackgroundColor = _color; + this.setBackgroundColor(_color); + //this.setAlpha(0.5f); + } + } + + //ref. http://www.41post.com/5094/programming/android-change-color-of-the-standard-button-inside-activity#more-5094 + public void SetBackgroundColor(int _color, int _mode) { //0xFFBBAA00 + //Changing the background color of the Button using PorterDuff Mode - Multiply + this.getBackground().setColorFilter(_color, android.graphics.PorterDuff.Mode.MULTIPLY); + //Set the color of the text displayed inside the button + //this.setTextColor(0xFF0000FF); + //Render this Button again + //this.setAlpha(0.5f); + this.invalidate(); + } + + + public void SetBackgroundColor(int _color, int _lightingMultColor, int _lightingAddColor) { + //Changing the background color of the Button using a LightingColorFilter + this.getBackground().setColorFilter(new LightingColorFilter(_lightingMultColor, _lightingAddColor)); //0xFFBBAA00, 0x00000000 + //Set the color of the text displayed inside the button + //bt_exButton.setTextColor(0xFF0000FF); + //Render this Button again + this.invalidate(); + } + + public void SetBackgroundColorByMatrixColorFilter(int _multColor) { + //Set the color that the button background will be multiplied with + int bgColor = _multColor; //0xFFBBAA00; + /*Separate each hexadecimal value pair from the bgColor integer and store + * each one of them on a separated variable.*/ + int a = (bgColor >> 24) & 0xFF; + int r = (bgColor >> 16) & 0xFF; + int g = (bgColor >> 8) & 0xFF; + int b = (bgColor >> 0) & 0xFF; + /*Create a new ColorMatrixColorFilter passing each individual component + of the ColorMatrix this filter uses as a float array.*/ + ColorMatrixColorFilter cmFilter = + new ColorMatrixColorFilter( + new float[]{r/255f,0,0,0,0, + 0,g/255f,0,0,0, + 0,0,b/255f,0,0, + 0,0,0,a/255f,0}); + //Set the cmFilter as the color filter + this.getBackground().setColorFilter(cmFilter); + //Set the color of the text displayed inside the button + //bt_exButton.setTextColor(0xFF0000FF); + //Render this Button again + this.invalidate(); + } + + public void SetFontFromAssets(String _fontName) { // "fonts/font1.ttf" or "font1.ttf" + Typeface customfont = Typeface.createFromAsset( controls.activity.getAssets(), _fontName); + this.setTypeface(customfont); + } + + public void SetEnabled(boolean _value) { + mEnable = _value; + this.setEnabled(_value); + } + + /* Pascal: + TFrameGravity = (fgNone, + fgTopLeft, fgTopCenter, fgTopRight, + fgBottomLeft, fgBottomCenter, fgBottomRight, + fgCenter, + fgCenterVerticalLeft, fgCenterVerticalRight + ); + */ + public void SetFrameGravity(int _value) { + LAMWCommon.setLGravity(_value); + } + + public void SetAllCaps(boolean allCaps) + { + this.setAllCaps(allCaps); + } + + public void SetFocus() { + this.requestFocus(); + } +} diff --git a/SmartFritz/src/org/muctec/smartfritz/jCheckBox.java b/SmartFritz/src/org/muctec/smartfritz/jCheckBox.java new file mode 100644 index 0000000000000000000000000000000000000000..765873c6d8d321a9bcfbb436c0a05889ddfffb43 --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jCheckBox.java @@ -0,0 +1,184 @@ +package org.muctec.smartfritz; + +import java.lang.reflect.Field; +import android.graphics.Bitmap; +import android.graphics.Typeface; +import android.graphics.drawable.BitmapDrawable; +import android.graphics.drawable.Drawable; +import android.util.TypedValue; +import android.view.View; +import android.widget.CheckBox; +import android.view.Gravity; + +public class jCheckBox extends CheckBox { + //Java-Pascal Interface + private long PasObj = 0; // Pascal Obj + private Controls controls = null; // Control Class for Event + private jCommons LAMWCommon; + // + private OnClickListener onClickListener; // event + + float mTextSize = 0; //default + int mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; //default + + //Constructor + public jCheckBox(android.content.Context context, + Controls ctrls,long pasobj ) { + super(context); + //Connect Pascal I/F + PasObj = pasobj; + controls = ctrls; + LAMWCommon = new jCommons(this,context,pasobj); + + //Init Event + onClickListener = new OnClickListener() { + public void onClick(View view) { + controls.pOnClick(PasObj,Const.Click_Default); + } + }; + setOnClickListener(onClickListener); + } + + public void setLeftTopRightBottomWidthHeight(int left, int top, int right, int bottom, int w, int h) { + String tag = ""+left+"|"+top+"|"+right+"|"+bottom; + this.setTag(tag); //nedd by jsRecyclerView.java + LAMWCommon.setLeftTopRightBottomWidthHeight(left,top,right,bottom,w,h); + } + + + public void setParent( android.view.ViewGroup _viewgroup ) { + LAMWCommon.setParent(_viewgroup); + } + + //Free object except Self, Pascal Code Free the class. + public void Free() { + this.setOnKeyListener(null); + this.setText(""); + LAMWCommon.free(); + } + + public void setLParamWidth(int w) { + LAMWCommon.setLParamWidth(w); + } + + public void setLParamHeight(int h) { + LAMWCommon.setLParamHeight(h); + } + + public void SetLGravity(int _g) { + LAMWCommon.setLGravity(_g); + } + + public void setLWeight(float _w) { + LAMWCommon.setLWeight(_w); + } + + public void addLParamsAnchorRule(int rule) { + LAMWCommon.addLParamsAnchorRule(rule); + } + + public void addLParamsParentRule(int rule) { + LAMWCommon.addLParamsParentRule(rule); + } + + + public void setLayoutAll(int idAnchor) { + LAMWCommon.setLayoutAll(idAnchor); + } + + public void ClearLayoutAll() { //TODO Pascal + LAMWCommon.clearLayoutAll(); + } + + public void setTextColor2(int value) { + this.setTextColor(value); + } + + public boolean isChecked2() { + return this.isChecked(); + } + + public void setChecked2(boolean value) { + this.setChecked(value); + } + + + public void SetText(String txt) { + this.setText(txt); + } + + public String GetText() { + return this.getText().toString(); + } + + public void SetTextSize(float size) { + mTextSize = size; + String t = this.getText().toString(); + this.setTextSize(mTextSizeTypedValue, mTextSize); + this.setText(t); + } + + //TTextSizeTyped =(tsDefault, tsUnitPixels, tsUnitDIP, tsUnitMillimeters, tsUnitPoints, tsUnitScaledPixel); + public void SetFontSizeUnit(int _unit) { + switch (_unit) { + case 0: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; break; //default + case 1: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_PX; break; + case 2: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_DIP; break; + case 3: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_MM; break; + case 4: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_PT; break; + case 5: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; break; + } + String t = this.getText().toString(); + this.setTextSize(mTextSizeTypedValue, mTextSize); + this.setText(t); + } + + public void SetCompoundDrawables(Bitmap _image, int _side) { + Drawable d = new BitmapDrawable(controls.activity.getResources(), _image); + + // by TR3E + if( d == null ){ + this.setCompoundDrawables(null, null, null, null); + return; + } + + int h = d.getIntrinsicHeight(); + int w = d.getIntrinsicWidth(); + d.setBounds( 0, 0, w, h ); + + switch(_side) { + case 0: this.setCompoundDrawables(d, null, null, null); break; //left + case 1: this.setCompoundDrawables(null, null, d, null); break; //right + case 2: this.setCompoundDrawables(null, d, null, null); break; //above + case 3: this.setCompoundDrawables(null, null, null, d); + } + } + + public void SetCompoundDrawables(String _imageResIdentifier,int _side) { + + Drawable d = controls.GetDrawableResourceById(controls.GetDrawableResourceId(_imageResIdentifier)); + + // by TR3E + if( d == null ){ + this.setCompoundDrawables(null, null, null, null); + return; + } + + int h = d.getIntrinsicHeight(); + int w = d.getIntrinsicWidth(); + d.setBounds( 0, 0, w, h ); + + switch(_side) { + case 0: this.setCompoundDrawables(d, null, null, null); break; //left + case 1: this.setCompoundDrawables(null, null, d, null); break; //right + case 2: this.setCompoundDrawables(null, d, null, null); break; //above + case 3: this.setCompoundDrawables(null, null, null, d); + } + } + + public void SetFontFromAssets(String _fontName) { // "font/font.ttf" + Typeface customfont = Typeface.createFromAsset( controls.activity.getAssets(), _fontName); + this.setTypeface(customfont); + } + +} diff --git a/SmartFritz/src/org/muctec/smartfritz/jCommons.java b/SmartFritz/src/org/muctec/smartfritz/jCommons.java new file mode 100644 index 0000000000000000000000000000000000000000..02deafce779de6df6a93e1b4653631ec6f5d50d1 --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jCommons.java @@ -0,0 +1,679 @@ +package org.muctec.smartfritz; + +import android.content.pm.PackageManager; +import android.graphics.drawable.Drawable; +import android.support.v4.app.ActivityCompat; +import android.support.v4.content.FileProvider; +import android.support.v4.content.ContextCompat; +import android.support.v7.app.ActionBar; +import android.support.v7.app.AppCompatActivity; +import android.support.v7.widget.Toolbar; +import android.util.Log; +import android.view.View; +import android.view.ViewGroup; +import android.view.ViewGroup.MarginLayoutParams; +import android.view.View.MeasureSpec; +import android.widget.RelativeLayout; +import android.widget.FrameLayout; +import android.widget.LinearLayout; +import android.content.Context; +//import android.content.Context; +//import android.graphics.drawable.Drawable; +import android.os.Build; +import android.view.Gravity; +import android.support.design.widget.CoordinatorLayout; //a framelayout like +import android.support.v4.content.res.ResourcesCompat; +//import android.support.v4.content.res.ResourcesCompat; +import android.support.v4.widget.DrawerLayout; //extends ViewGroup +import android.support.design.widget.AppBarLayout; //extends LinearLayout +import android.support.design.widget.CollapsingToolbarLayout; //extends framelayout +import android.support.v4.widget.NestedScrollView; //extends framelayout +import android.support.design.widget.TabLayout; //framelayout +//import android.util.Log; + +public class jCommons { + + //owner of this instance + private View aOwnerView = null; + + //Java-Pascal Interface + private long PasObj = 0; // Pascal Obj + + private ViewGroup parent = null; // parent view + private ViewGroup.MarginLayoutParams lparams = null; // layout XYWH + + private int lparamsAnchorRule[] = new int[30]; + private int countAnchorRule = 0; + private int lparamsParentRule[] = new int[30]; + private int countParentRule = 0; + private int lparamH = android.view.ViewGroup.LayoutParams.MATCH_PARENT; + private int lparamW = android.view.ViewGroup.LayoutParams.MATCH_PARENT; + private int marginLeft = 5; + private int marginTop = 5; + private int marginRight = 5; + private int marginBottom = 5; + //[ifdef_api14up] + private int lgravity = Gravity.TOP | Gravity.START; + + //[endif_api14up] + /* //[endif_api14up] + private int lgravity = Gravity.TOP | Gravity.LEFT; + //[ifdef_api14up] */ + private float lweight = 1.0f; + private boolean mRemovedFromParent = false; + private int algravity; + private int algravityAnchorId; + + private android.content.Context context; + + public jCommons(View _view, android.content.Context _context, long _pasobj) { + aOwnerView = _view; // set owner + PasObj = _pasobj; //Connect Pascal I/F + + lgravity = Gravity.NO_GRAVITY; + algravity = Gravity.NO_GRAVITY; + algravityAnchorId = -1; + + context = _context; + + if (aOwnerView != null) { + ViewGroup.LayoutParams lp = aOwnerView.getLayoutParams(); + if (lp instanceof MarginLayoutParams) { + lparams = (MarginLayoutParams)lp; + lparams.setMargins(marginLeft,marginTop,marginRight,marginBottom); // L,T,R,B + } + } + + if (lparams == null) { + lparams = new ViewGroup.MarginLayoutParams(lparamW, lparamH); // W,H + lparams.setMargins(marginLeft,marginTop,marginRight,marginBottom); // L,T,R,B + } + + } + + public static MarginLayoutParams newLayoutParams(ViewGroup aparent, ViewGroup.MarginLayoutParams baseparams) { + + if (aparent instanceof NestedScrollView) { + return new NestedScrollView.LayoutParams(baseparams); + } else if (aparent instanceof CollapsingToolbarLayout) { + return new CollapsingToolbarLayout.LayoutParams(baseparams); + } else if (aparent instanceof FrameLayout) { + return new FrameLayout.LayoutParams(baseparams); + } else if (aparent instanceof TabLayout) { + return new TabLayout.LayoutParams(baseparams); + } else if (aparent instanceof CoordinatorLayout) { + return new CoordinatorLayout.LayoutParams(baseparams); + } else if (aparent instanceof DrawerLayout) { + return new DrawerLayout.LayoutParams(baseparams); + } else if (aparent instanceof RelativeLayout) { + return new RelativeLayout.LayoutParams(baseparams); + } else if (aparent instanceof ViewGroup) { + return new RelativeLayout.LayoutParams(baseparams); + } else if (aparent instanceof LinearLayout) { + return new LinearLayout.LayoutParams(baseparams); + } else if (aparent instanceof AppBarLayout) { + return new AppBarLayout.LayoutParams(baseparams); + } else if (aparent == null) { + throw new NullPointerException("Parent is null"); + } else { + throw new IllegalArgumentException("LAMW/jCommons: Parent is UNKNOW!: [ " + + aparent.getClass().getName() + " ]"); + } + } + + public long getPasObj() { + return PasObj; + } + + public void setParent( android.view.ViewGroup _viewgroup) { + if ( (parent != null) && (aOwnerView != null) ) { parent.removeView(aOwnerView); } + parent = _viewgroup; + if ( (parent != null) && (aOwnerView != null) ) { + parent.addView(aOwnerView, newLayoutParams(parent,(ViewGroup.MarginLayoutParams)lparams)); + lparams = (ViewGroup.MarginLayoutParams)aOwnerView.getLayoutParams(); + aOwnerView.setVisibility(android.view.View.VISIBLE); + } + mRemovedFromParent = false; + } + + public void AddView(View _view) { + ViewGroup parent = (ViewGroup) _view.getParent(); + ViewGroup.MarginLayoutParams vParam = null; // layout XYWH + vParam = new ViewGroup.MarginLayoutParams(android.view.ViewGroup.LayoutParams.MATCH_PARENT, android.view.ViewGroup.LayoutParams.MATCH_PARENT); // W,H + if (parent != null) parent.removeView(_view); + ((ViewGroup) aOwnerView).addView(_view, newLayoutParams((ViewGroup) _view,(ViewGroup.MarginLayoutParams)vParam)); + } + + public ViewGroup getParent() { + return parent; + } + + public void removeFromViewParent() { + if (!mRemovedFromParent) { + if (aOwnerView != null) { + aOwnerView.setVisibility(android.view.View.INVISIBLE); + if (parent != null) parent.removeView(aOwnerView); + } + mRemovedFromParent = true; + } + } + + + public void setVisibilityGone() { + if (aOwnerView != null) { + aOwnerView.setVisibility(android.view.View.GONE); + } + } + + public void setMarginLeftTopRightBottom(int _left, int _top,int _right, int _bottom) { + marginLeft = _left; + marginTop = _top; + marginRight = _right; + marginBottom = _bottom; + lparams.setMargins(marginLeft,marginTop,marginRight,marginBottom); + if (aOwnerView != null) + aOwnerView.setLayoutParams(lparams); + } + + public void setLeftTopRightBottomWidthHeight(int _left, int _top, int _right, int _bottom, int _w, int _h) { + marginLeft = _left; + marginTop = _top; + marginRight = _right; + marginBottom = _bottom; + lparamH = _h; + lparamW = _w; + } + + public void setLParamWidth(int _w) { + lparamW = _w; + lparams.width = lparamW; + } + + public void setLParamHeight(int _h) { + lparamH = _h; + lparams.height = lparamH; + } + + public int getLParamHeight() { + int r = lparamH; + + if (r == android.view.ViewGroup.LayoutParams.WRAP_CONTENT) { + int widthPixels = context.getResources().getDisplayMetrics().widthPixels; + + int widthMeasureSpec = View.MeasureSpec.makeMeasureSpec(widthPixels, View.MeasureSpec.AT_MOST); + int heightMeasureSpec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED); + aOwnerView.measure(widthMeasureSpec, heightMeasureSpec); + + r = aOwnerView.getMeasuredHeight(); + } + + //Fix the "match_parent" error with an "anchor" and + // within the component a "half_parent" is set + if (r == android.view.ViewGroup.LayoutParams.MATCH_PARENT) { + if( aOwnerView.getHeight() > 0 ) r = aOwnerView.getHeight(); + } + + return r; + } + + public int getLParamWidth() { + int r = lparamW; + + if (r == android.view.ViewGroup.LayoutParams.WRAP_CONTENT) { + int widthPixels = context.getResources().getDisplayMetrics().widthPixels; + + int widthMeasureSpec = View.MeasureSpec.makeMeasureSpec(widthPixels, View.MeasureSpec.AT_MOST); + int heightMeasureSpec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED); + aOwnerView.measure(widthMeasureSpec, heightMeasureSpec); + + r = aOwnerView.getMeasuredWidth(); + } + + //Fix the "match_parent" error with an "anchor" and + // within the component a "half_parent" is set + if (r == android.view.ViewGroup.LayoutParams.MATCH_PARENT) { + if( aOwnerView.getWidth() > 0 ) r = aOwnerView.getWidth(); + } + + return r; + } + + public void setLGravity(int _g) { + int LEFT; + int RIGHT; + //[ifdef_api14up] + LEFT = Gravity.START; + RIGHT = Gravity.END; + //[endif_api14up] + /* //[endif_api14up] + LEFT = Gravity.LEFT; + RIGHT = Gravity.RIGHT; + //[ifdef_api14up] */ + switch(_g) { + case 0: lgravity = Gravity.NO_GRAVITY; break; + case 1: lgravity = LEFT | Gravity.TOP; break; + case 2: lgravity = Gravity.CENTER_HORIZONTAL | Gravity.TOP; break; + case 3: lgravity = RIGHT | Gravity.TOP; break; + + case 4: lgravity = LEFT | Gravity.BOTTOM; break; + case 5: lgravity = Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM; break; + case 6: lgravity = RIGHT | Gravity.BOTTOM; break; + + case 7: lgravity = Gravity.CENTER; break; + + case 8: lgravity = LEFT | Gravity.CENTER_VERTICAL; break; + case 9: lgravity = RIGHT | Gravity.CENTER_VERTICAL; break; + + case 10: lgravity = LEFT; break; + case 11: lgravity = RIGHT;break; + + case 12: lgravity = Gravity.TOP; break; + case 13: lgravity = Gravity.BOTTOM;break; + + } + } + + public void setAnchorLGravity(int _g, int _anchorId) { + int LEFT; + int RIGHT; + //[ifdef_api14up] + LEFT = Gravity.START; + RIGHT = Gravity.END; + //[endif_api14up] + /* //[endif_api14up] + LEFT = Gravity.LEFT; + RIGHT = Gravity.RIGHT; + //[ifdef_api14up] */ + + algravityAnchorId = _anchorId; + + switch(_g) { + case 0: algravity = Gravity.NO_GRAVITY; break; + case 1: algravity = LEFT | Gravity.TOP; break; + case 2: algravity = Gravity.CENTER_HORIZONTAL | Gravity.TOP; break; + case 3: algravity = RIGHT | Gravity.TOP; break; + + case 4: algravity = LEFT | Gravity.BOTTOM; break; + case 5: algravity = Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM; break; + case 6: algravity = RIGHT | Gravity.BOTTOM; break; + + case 7: algravity = Gravity.CENTER; break; + + case 8: algravity = LEFT | Gravity.CENTER_VERTICAL; break; + case 9: algravity = RIGHT | Gravity.CENTER_VERTICAL; break; + + case 10: algravity = LEFT; break; + case 11: algravity = RIGHT;break; + + case 12: algravity = Gravity.TOP; break; + case 13: algravity = Gravity.BOTTOM;break; + + } + + if (lparams instanceof CoordinatorLayout.LayoutParams) { + ((CoordinatorLayout.LayoutParams)lparams).gravity = lgravity; + if (algravityAnchorId >= 0) { + ((CoordinatorLayout.LayoutParams)lparams).anchorGravity = algravity; + ((CoordinatorLayout.LayoutParams)lparams).setAnchorId(algravityAnchorId); + } + } + } + + public void setLWeight(float _w) { + lweight = _w; + } + + public void addLParamsAnchorRule(int _rule) { + lparamsAnchorRule[countAnchorRule] = _rule; + countAnchorRule = countAnchorRule + 1; + } + + public void addLParamsParentRule(int _rule) { + lparamsParentRule[countParentRule] = _rule; + countParentRule = countParentRule + 1; + } + + public void setLayoutAll(int _idAnchor) { + lparams.width = lparamW; + lparams.height = lparamH; + lparams.setMargins(marginLeft,marginTop,marginRight,marginBottom); + + if (lparams instanceof RelativeLayout.LayoutParams) { + if (_idAnchor > 0) { + for (int i = 0; i < countAnchorRule; i++) { + ((RelativeLayout.LayoutParams)lparams).addRule(lparamsAnchorRule[i], _idAnchor); + } + } + for (int j = 0; j < countParentRule; j++) { + ((RelativeLayout.LayoutParams)lparams).addRule(lparamsParentRule[j]); + } + } + + + if (lparams instanceof CoordinatorLayout.LayoutParams) { + ((CoordinatorLayout.LayoutParams)lparams).gravity = lgravity; + + /* + if (algravityAnchorId >= 0) { + ((CoordinatorLayout.LayoutParams)lparams).anchorGravity = algravity; + ((CoordinatorLayout.LayoutParams)lparams).setAnchorId(algravityAnchorId); + } + */ + + } + if (lparams instanceof DrawerLayout.LayoutParams) { + ((DrawerLayout.LayoutParams)lparams).gravity = lgravity; + } + + if (lparams instanceof CollapsingToolbarLayout.LayoutParams) { + ((CollapsingToolbarLayout.LayoutParams)lparams).gravity = lgravity; + } + + if (lparams instanceof NestedScrollView.LayoutParams) { + ((NestedScrollView.LayoutParams)lparams).gravity = lgravity; + } + + if (lparams instanceof FrameLayout.LayoutParams) { + ((FrameLayout.LayoutParams)lparams).gravity = lgravity; + } + + + if (lparams instanceof TabLayout.LayoutParams) { + ((TabLayout.LayoutParams)lparams).gravity = lgravity; + } + + if (lparams instanceof LinearLayout.LayoutParams) { //weight + ((LinearLayout.LayoutParams)lparams).weight = lweight; //lweight = 1 <-- the trick!! + ((LinearLayout.LayoutParams)lparams).gravity = lgravity; //lweight; + } + + if (lparams instanceof AppBarLayout.LayoutParams) { + ((AppBarLayout.LayoutParams)lparams).weight = lweight; + } + + if (aOwnerView != null) { aOwnerView.setLayoutParams(lparams); } + } + + public void clearLayoutAll() { + if (lparams instanceof RelativeLayout.LayoutParams) { + for (int i = 0; i < countAnchorRule; i++) { + if(Build.VERSION.SDK_INT < 17) + ((android.widget.RelativeLayout.LayoutParams) lparams).addRule(lparamsAnchorRule[i], 0); +//[ifdef_api17up] + if(Build.VERSION.SDK_INT >= 17) + ((android.widget.RelativeLayout.LayoutParams) lparams).removeRule(lparamsAnchorRule[i]); //need API >= 17! +//[endif_api17up] + } + for (int j = 0; j < countParentRule; j++) { + if(Build.VERSION.SDK_INT < 17) + ((android.widget.RelativeLayout.LayoutParams) lparams).addRule(lparamsParentRule[j], 0); +//[ifdef_api17up] + if(Build.VERSION.SDK_INT >= 17) + ((android.widget.RelativeLayout.LayoutParams) lparams).removeRule(lparamsParentRule[j]); //need API >= 17! +//[endif_api17up] + } + } + countAnchorRule = 0; + countParentRule = 0; + } + + public void free() { + if ( (parent != null) && (aOwnerView != null)) { parent.removeView(aOwnerView); } + lparams = null; + } + + public void MatchParent() { + lparamW = android.view.ViewGroup.LayoutParams.MATCH_PARENT; + lparamH = android.view.ViewGroup.LayoutParams.MATCH_PARENT; + lparams.width = lparamW; + lparams.height = lparamH; + + if (aOwnerView != null) + aOwnerView.setLayoutParams(lparams); + } + + public void WrapParent() { + lparamW = android.view.ViewGroup.LayoutParams.WRAP_CONTENT; + lparamH = android.view.ViewGroup.LayoutParams.WRAP_CONTENT; + lparams.width = lparamW; + lparams.height = lparamH; + + if (aOwnerView != null) + aOwnerView.setLayoutParams(lparams); + } + + public void CenterInParent() { + //resetLParamsRules(); need ??? + if (lparams instanceof RelativeLayout.LayoutParams) { + ((RelativeLayout.LayoutParams)lparams).addRule(android.widget.RelativeLayout.CENTER_IN_PARENT); //android.widget.RelativeLayout.CENTER_VERTICAL = 15 + aOwnerView.setLayoutParams(lparams); //added ::need ?? + countParentRule = countParentRule + 1; + } + } + + public void setCollapseMode(int _mode) { //called on JNIPrompt + ViewGroup.LayoutParams params; + + if (lparams == null) params = aOwnerView.getLayoutParams(); + else params = lparams; + + CollapsingToolbarLayout.LayoutParams newParams; + if (params instanceof CollapsingToolbarLayout.LayoutParams) { + newParams = (CollapsingToolbarLayout.LayoutParams)lparams; + } else { + newParams = new CollapsingToolbarLayout.LayoutParams(params); //bug??? + } + int collapsingMode = 0; + switch(_mode) { + case 0: collapsingMode = CollapsingToolbarLayout.LayoutParams.COLLAPSE_MODE_OFF;break; + case 1: collapsingMode = CollapsingToolbarLayout.LayoutParams.COLLAPSE_MODE_PIN; break; + case 2: collapsingMode = CollapsingToolbarLayout.LayoutParams.COLLAPSE_MODE_PARALLAX; break;//default - imageView + } + //CollapsingToolbarLayout.LayoutParams.COLLAPSE_MODE_PARALLAX + newParams.setCollapseMode(collapsingMode); //COLLAPSE_MODE_OFF + aOwnerView.setLayoutParams(newParams); + aOwnerView.requestLayout(); + } + + + public void setFitsSystemWindows(boolean _value) { + if (Build.VERSION.SDK_INT >= 21) { + //[ifdef_api21up] + aOwnerView.setFitsSystemWindows(true); + //[endif_api21up] + } + } + + + public void setScrollFlag(int _collapsingScrollFlag) { //called in OnJNIPrompt + int scrflag = -1; + ViewGroup.LayoutParams params; + if (lparams == null) params = aOwnerView.getLayoutParams(); + else params = lparams; + //In order to clear flags params.setScrollFlags(0) + AppBarLayout.LayoutParams newParams = null; + if (params instanceof AppBarLayout.LayoutParams) { + newParams = (AppBarLayout.LayoutParams)params; + } else { + newParams = new AppBarLayout.LayoutParams(params); //BUG ??? + } + + switch(_collapsingScrollFlag) { + case 0: scrflag = AppBarLayout.LayoutParams.SCROLL_FLAG_EXIT_UNTIL_COLLAPSED; break; + case 1: scrflag = AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS_COLLAPSED; break; + case 2: scrflag = AppBarLayout.LayoutParams.SCROLL_FLAG_ENTER_ALWAYS; break; //default + case 3: scrflag = AppBarLayout.LayoutParams.SCROLL_FLAG_SNAP; break; + case 4: scrflag = -1; + } + + if (scrflag >= 0) { + newParams.setScrollFlags(AppBarLayout.LayoutParams.SCROLL_FLAG_SCROLL | scrflag); + aOwnerView.setLayoutParams(newParams); + aOwnerView.requestLayout(); + } + } + + /* + public Drawable GetDrawableResourceById(Context context, int _resID) { + return ResourcesCompat.getDrawable(context.getResources(),_resID , null); + } + */ + + public int getColorFromResources(Context c, int colorResId) { + return ResourcesCompat.getColor(c.getResources(), colorResId, null); //without theme + } + + public int getColorPrimaryId() { + return R.color.primary; + } + + public int getColorPrimaryDarkId() { + return R.color.primary_dark; + } + + public int getColorPrimaryLightId() { + return R.color.primary_light; + } + + + public int getColorAccentId() { + return R.color.accent; + } + + public static void RequestRuntimePermission(Controls controls, String androidPermission, int requestCode) { //"android.permission.CAMERA" + //[ifdef_api23up] + if (Build.VERSION.SDK_INT >= 23) { + ActivityCompat.requestPermissions(controls.activity, new String[]{androidPermission}, requestCode); + } //[endif_api23up] + } + + + public static void RequestRuntimePermission(Controls controls, String[] androidPermissions, int requestCode) { + //[ifdef_api23up] + if (Build.VERSION.SDK_INT >= 23) { + controls.activity.requestPermissions(androidPermissions, requestCode); + } //[endif_api23up] + } + + + public static boolean IsRuntimePermissionGranted(Controls controls, String _androidPermission) { //"android.permission.CAMERA" + boolean r = true; + int IsGranted = PackageManager.PERMISSION_GRANTED; //0 PERMISSION_DENIED = -1 + //[ifdef_api23up] + if (Build.VERSION.SDK_INT >= 23) { + IsGranted = ContextCompat.checkSelfPermission(controls.activity, _androidPermission); + } //[endif_api23up] + if (IsGranted != PackageManager.PERMISSION_GRANTED) r = false; + + return r; + } + + public static boolean HasActionBar(Controls controls) { + if (controls.activity instanceof AppCompatActivity) + { + android.support.v7.app.ActionBar actionBar = ((AppCompatActivity) controls.activity).getSupportActionBar(); + if (actionBar != null) return true; + else return false; + } else return false; + } + + public static void SetActionBarSubTitle(Controls controls, String subtitle) { + if (controls.activity instanceof AppCompatActivity) + { + android.support.v7.app.ActionBar actionBar = ((AppCompatActivity) controls.activity).getSupportActionBar(); + if (actionBar != null) + ((AppCompatActivity) controls.activity).getSupportActionBar().setSubtitle(subtitle); + } + } + + public static void SetActionBarTitle(Controls controls, String title) { + if (controls.activity instanceof AppCompatActivity) + { + android.support.v7.app.ActionBar actionBar = ((AppCompatActivity) controls.activity).getSupportActionBar(); + if (actionBar != null) + ((AppCompatActivity) controls.activity).getSupportActionBar().setTitle(title); + } + } + + public static void ActionBarHide(Controls controls) { + if (controls.activity instanceof AppCompatActivity) + { + android.support.v7.app.ActionBar actionBar = ((AppCompatActivity) controls.activity).getSupportActionBar(); + if (actionBar != null) + ((AppCompatActivity) controls.activity).getSupportActionBar().hide(); + } + } + + public static void ActionBarShow(Controls controls) { + if (controls.activity instanceof AppCompatActivity) + { + android.support.v7.app.ActionBar actionBar = ((AppCompatActivity) controls.activity).getSupportActionBar(); + if (actionBar != null) + ((AppCompatActivity) controls.activity).getSupportActionBar().show(); + } + } + + public static void ActionBarShowTitle(Controls controls, boolean value) { + if (controls.activity instanceof AppCompatActivity) + { + android.support.v7.app.ActionBar actionBar = ((AppCompatActivity) controls.activity).getSupportActionBar(); + if (actionBar != null) + ((AppCompatActivity) controls.activity).getSupportActionBar().setDisplayShowTitleEnabled(value); + } + } + + public static void ActionBarShowLogo(Controls controls, boolean value) { + if (controls.activity instanceof AppCompatActivity) + { + android.support.v7.app.ActionBar actionBar = ((AppCompatActivity) controls.activity).getSupportActionBar(); + if (actionBar != null) + ((AppCompatActivity) controls.activity).getSupportActionBar().setDisplayUseLogoEnabled(value); + } + } + + public static void ActionBarDisplayHomeAsUpEnabled(Controls controls, boolean value) { + if (controls.activity instanceof AppCompatActivity) + { + android.support.v7.app.ActionBar actionBar = ((AppCompatActivity) controls.activity).getSupportActionBar(); + if (actionBar != null) + ((AppCompatActivity) controls.activity).getSupportActionBar().setDisplayHomeAsUpEnabled(value); + } + } + + public static void ActionBarSetIcon(Controls controls, Drawable icon) { + if (controls.activity instanceof AppCompatActivity) + { + android.support.v7.app.ActionBar actionBar = ((AppCompatActivity) controls.activity).getSupportActionBar(); + if (actionBar != null) + ((AppCompatActivity) controls.activity).getSupportActionBar().setIcon(icon); + } + + } + + public static void ActionBarSetTabNavigationMode(Controls controls) { + //not AppCompat .. + } + + public static void ActionBarRemoveAllTabs(Controls controls) { + //not AppCompat .. + } + + public static int ActionGetBarBarHeight(Controls controls) { + return 0; //not AppCompat .. + } + + public static boolean ActionBarIsShowing(Controls controls) { + if (controls.activity instanceof AppCompatActivity) + { + android.support.v7.app.ActionBar actionBar = ((AppCompatActivity) controls.activity).getSupportActionBar(); + if (actionBar != null) + return actionBar.isShowing(); + else return false; + } else return false; + } + + public static boolean IsAppCompatProject(Controls controls) { + if (controls.activity instanceof AppCompatActivity) return true; + else return false; + } +} diff --git a/SmartFritz/src/org/muctec/smartfritz/jEditText.java b/SmartFritz/src/org/muctec/smartfritz/jEditText.java new file mode 100644 index 0000000000000000000000000000000000000000..b4df6ee7f858c8fcadb24a9c42192dd136e1e249 --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jEditText.java @@ -0,0 +1,695 @@ +package org.muctec.smartfritz; + +import java.io.BufferedReader; + +import java.io.File; +import java.io.FileReader; +import java.io.FileWriter; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.OutputStreamWriter; +import java.lang.reflect.Field; + +import android.content.ClipData; +import android.content.ClipboardManager; +import android.content.Context; +import android.graphics.Bitmap; +import android.graphics.Canvas; +import android.graphics.Typeface; +import android.graphics.drawable.BitmapDrawable; +import android.graphics.drawable.Drawable; +import android.os.Build; +import android.text.Editable; +import android.text.InputFilter; +import android.text.InputType; +import android.text.TextWatcher; +import android.text.method.ScrollingMovementMethod; +import android.util.Log; +import android.util.TypedValue; +import android.view.KeyEvent; +import android.view.View; +import android.view.ViewGroup; +import android.view.inputmethod.EditorInfo; +import android.view.inputmethod.InputMethodManager; +import android.widget.EditText; +import android.widget.Scroller; +import android.view.Gravity; +import android.widget.TextView; + +//Reviewed by TR3E on 08/20/2019 + +public class jEditText extends EditText { + //Pascal Interface + //private long PasObj = 0; // Pascal Obj + private Controls controls = null; // Control Class for Event + private jCommons LAMWCommon; + // + private OnKeyListener onKeyListener; // thanks to @renabor + private TextWatcher textwatcher; // OnChange + + private OnClickListener onClickListener; // event + + String bufStr; + private boolean canDispatchChangeEvent = false; + private boolean canDispatchChangedEvent = false; + private boolean mFlagSuggestion = false; + private boolean mFlagCapSentence = false; + private boolean mFlagCaptureBackPressed = false; // by tr3e + + private ClipboardManager mClipBoard = null; + private ClipData mClipData = null; + + private float mTextSize = 0; //default + private int mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; //default + + private boolean mCloseSoftInputOnEnter = true; + + //Constructor + public jEditText(android.content.Context context, + Controls ctrls,long pasobj ) { + super(context); + canDispatchChangeEvent = false; + canDispatchChangedEvent = false; + + controls = ctrls; + LAMWCommon = new jCommons(this,context,pasobj); + + mClipBoard = (ClipboardManager) controls.activity.getSystemService(Context.CLIPBOARD_SERVICE); + + setOnFocusChangeListener(new OnFocusChangeListener() { + public void onFocusChange(View v, boolean hasFocus) { + final int p = v.getId(); + final EditText Caption = (EditText)v; + if (!hasFocus){ + if (p >= 0) { + controls.pOnLostFocus(LAMWCommon.getPasObj(), Caption.getText().toString()); + } + } + } + }); + + //Event + onClickListener = new OnClickListener() { + public void onClick(View view) { + //if (enabled) { + controls.pOnClick(LAMWCommon.getPasObj(),Const.Click_Default); + //} + }; + }; + setOnClickListener(onClickListener); + + // Fixed "Go / Next / Done / Ok" command capture [by TR3E] + setOnEditorActionListener(new TextView.OnEditorActionListener() { + @Override + public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { + if (actionId != 0) { + final EditText caption = (EditText)v; + + if (mCloseSoftInputOnEnter) { + InputMethodManager imm = (InputMethodManager) controls.activity.getSystemService(Context.INPUT_METHOD_SERVICE); + imm.hideSoftInputFromWindow(v.getWindowToken(), 0); + } + + if (!caption.getText().toString().equals("")){ //try fix program logic... + controls.pOnEnter(LAMWCommon.getPasObj()); + } + + return true; + } else { + return false; + } + } + }); + + onKeyListener = new OnKeyListener() { + public boolean onKey(View v, int keyCode, KeyEvent event) { //Called when a hardware key is dispatched to a view + + final EditText caption = (EditText)v; + + // by tr3e fix back_key close app + if( mFlagCaptureBackPressed && (event.getAction() == KeyEvent.ACTION_DOWN) && + (KeyEvent.KEYCODE_BACK == keyCode) ) + { + InputMethodManager imm = (InputMethodManager) controls.activity.getSystemService(Context.INPUT_METHOD_SERVICE); + imm.hideSoftInputFromWindow(v.getWindowToken(), 0); + controls.pOnBackPressed(LAMWCommon.getPasObj()); + return true; + } + + if( (event.getAction() == KeyEvent.ACTION_UP) && (keyCode == KeyEvent.KEYCODE_ENTER)){ + if (mCloseSoftInputOnEnter) { + InputMethodManager imm = (InputMethodManager) controls.activity.getSystemService(Context.INPUT_METHOD_SERVICE); + imm.hideSoftInputFromWindow(v.getWindowToken(), 0); + } + if (! caption.getText().toString().equals("")){ //try fix program logic... + controls.pOnEnter(LAMWCommon.getPasObj()); + } + return mCloseSoftInputOnEnter; + } + + return false; + } + }; + + setOnKeyListener(onKeyListener); + + //Event + textwatcher = new TextWatcher() { + @Override + public void beforeTextChanged(CharSequence s, int start, int count, int after) { + if (canDispatchChangeEvent) { + controls.pOnChange(LAMWCommon.getPasObj(), s.toString(), (s.toString()).length()); + } + } + @Override + public void onTextChanged(CharSequence s, int start, int before, int count) { + if (canDispatchChangedEvent) { + controls.pOnChanged(LAMWCommon.getPasObj(),s.toString(), (s.toString()).length()); + } + } + @Override + public void afterTextChanged(Editable s) { + // + } + }; + + addTextChangedListener(textwatcher); + } + + //Free object except Self, Pascal Code Free the class. + public void Free() { + removeTextChangedListener(textwatcher); + textwatcher = null; + setOnKeyListener(null); + LAMWCommon.free(); + } + + public long GetPasObj() { + return LAMWCommon.getPasObj(); + } + + public void SetViewParent(ViewGroup _viewgroup ) { + LAMWCommon.setParent(_viewgroup); + } + + public ViewGroup GetParent() { + return LAMWCommon.getParent(); + } + + public void RemoveFromViewParent() { + LAMWCommon.removeFromViewParent(); + } + + public void SetLeftTopRightBottomWidthHeight(int left, int top, int right, int bottom, int w, int h) { + LAMWCommon.setLeftTopRightBottomWidthHeight(left,top,right,bottom,w,h); + } + + public void SetLParamWidth(int w) { + LAMWCommon.setLParamWidth(w); + } + + public void SetLParamHeight(int h) { + LAMWCommon.setLParamHeight(h); + } + + public int GetLParamHeight() { + return LAMWCommon.getLParamHeight(); + } + + public int GetLParamWidth() { + return LAMWCommon.getLParamWidth(); + } + + public void SetLGravity(int _g) { + LAMWCommon.setLGravity(_g); + } + + public void SetLWeight(float _w) { + LAMWCommon.setLWeight(_w); + } + + public void AddLParamsAnchorRule(int rule) { + LAMWCommon.addLParamsAnchorRule(rule); + } + + public void AddLParamsParentRule(int rule) { + LAMWCommon.addLParamsParentRule(rule); + } + + public void SetLayoutAll(int idAnchor) { + LAMWCommon.setLayoutAll(idAnchor); + } + + public void ClearLayoutAll() { + LAMWCommon.clearLayoutAll(); + } + + public View GetView() { + return this; + } + //CURRENCY + public void SetInputTypeEx(String str) { + bufStr = new String(str.toString()); + if(str.equals("NUMBER")) { + this.setInputType(android.text.InputType.TYPE_CLASS_NUMBER); + } + else if(str.equals("CURRENCY")) { //thanks to @renabor + this.setInputType(InputType.TYPE_CLASS_NUMBER|InputType.TYPE_NUMBER_FLAG_DECIMAL|InputType.TYPE_NUMBER_FLAG_SIGNED); + } + else if (str.equals("CAPCHARACTERS")) { + this.setInputType(android.text.InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS); + } + else if (str.equals("TEXT")) { + this.setInputType(android.text.InputType.TYPE_CLASS_TEXT); + } + else if (str.equals("PHONE")) {this.setInputType(android.text.InputType.TYPE_CLASS_PHONE); } + else if (str.equals("PASSNUMBER")) {this.setInputType(android.text.InputType.TYPE_CLASS_NUMBER); + this.setTransformationMethod(android.text.method.PasswordTransformationMethod.getInstance()); } + else if (str.equals("PASSTEXT")) {this.setInputType(android.text.InputType.TYPE_CLASS_TEXT|android.text.InputType.TYPE_TEXT_VARIATION_PASSWORD); + this.setTransformationMethod(android.text.method.PasswordTransformationMethod.getInstance()); } + + else if (str.equals("TEXTMULTILINE")){ + this.setInputType(android.text.InputType.TYPE_CLASS_TEXT|android.text.InputType.TYPE_TEXT_FLAG_MULTI_LINE); + } + else if (str.equals("NULL")){ + this.setInputType(InputType.TYPE_NULL); + } + else {this.setInputType(android.text.InputType.TYPE_CLASS_TEXT|InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);}; + + if (!mFlagSuggestion) { + this.setInputType(this.getInputType() | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS); + } + if (mFlagCapSentence) { + this.setInputType(this.getInputType() | InputType.TYPE_TEXT_FLAG_CAP_SENTENCES); + } + + } + + //LORDMAN 2013-08-13 + public void SetTextAlignment( int align ) { + switch ( align ) { + //[ifdef_api14up] + case 0 : { setGravity( Gravity.START ); }; break; + case 1 : { setGravity( Gravity.END ); }; break; + //[endif_api14up] + + /* //[endif_api14up] + case 0 : { setGravity( Gravity.LEFT ); }; break; + case 1 : { setGravity( Gravity.RIGHT ); }; break; + //[ifdef_api14up] */ + + case 2 : { setGravity( Gravity.CENTER_HORIZONTAL ); }; break; + + //[ifdef_api14up] + default : { setGravity( Gravity.START ); }; break; + //[endif_api14up] + + /* //[endif_api14up] + default : { setGravity( Gravity.LEFT ); }; break; + //[ifdef_api14up] */ + + } + } + + //by jmpessoa + public void setScrollerEx() { + this.setScroller(new Scroller(controls.activity)); + } + + public void SetFocus() { + this.requestFocus(); + } + + public void InputMethodShow() { + InputMethodManager imm = (InputMethodManager) controls.activity.getSystemService(Context.INPUT_METHOD_SERVICE); + //Repaired forever show the "softInput" by TR3E + this.requestFocus(); + imm.showSoftInput(this, InputMethodManager.SHOW_IMPLICIT); + } + + + public void InputMethodHide() { + InputMethodManager imm = (InputMethodManager) controls.activity.getSystemService(Context.INPUT_METHOD_SERVICE); + imm.hideSoftInputFromWindow(this.getWindowToken(), 0); + } + + public int[] getCursorPos() { + int[] vals = new int[2]; + vals[0] = this.getSelectionStart(); + vals[1] = this.getSelectionEnd(); + return vals; + } + + public void setCursorPos(int startPos, int endPos) { + if (endPos == 0) { endPos = startPos; }; + this.setSelection(startPos,endPos); + } + + //LORDMAN - 2013-07-26 + public void MaxLength(int mLength) { //not make the length of the text greater than the specified length + if (mLength >= 0) { + InputFilter[] FilterArray = new InputFilter[1]; + FilterArray[0] = new InputFilter.LengthFilter(mLength); + this.setFilters(FilterArray); + } + else { + this.setFilters(new InputFilter[] {}); //reset to default!!! + } + } + + //LORDMAN 2013-08-27 + public void SetEnabled(boolean enabled ) { + this.setClickable (enabled); + this.setEnabled (enabled); + this.setFocusable (enabled); + this.setFocusableInTouchMode (enabled); + } + + //LORDMAN 2013-08-27 + public void SetEditable(boolean enabled ) { + this.setClickable(enabled); + + if (enabled) {this.setEnabled(enabled); } + + this.setFocusable(enabled); + this.setFocusableInTouchMode (enabled); + } + + //by jmpessoa :: bug! why? + public void SetMovementMethod() { + this.setMovementMethod(new ScrollingMovementMethod());//ScrollingMovementMethod.getInstance() + } + //by jmpessoa + public String GetText() { + return this.getText().toString(); + } + + //by jmpessoa + public void AllCaps() { + InputFilter[] FilterArray = new InputFilter[1]; + FilterArray[0] = new InputFilter.AllCaps(); + this.setFilters(FilterArray); + } + + public void DispatchOnChangeEvent(boolean value) { + canDispatchChangeEvent = value; + } + + public void DispatchOnChangedEvent(boolean value) { + canDispatchChangedEvent = value; + } + + + public void SetInputType(int ipt){ + this.setInputType(0); + } + + public void Append(String _txt) { + this.append(_txt); + } + + public void AppendLn(String _txt) { + this.append(_txt+"\n"); + } + + public void AppendTab() { + this.append("\t"); + } + + public void SetImeOptions(int _imeOption) { + switch(_imeOption ) { + case 0: this.setImeOptions(EditorInfo.IME_FLAG_NO_FULLSCREEN); break; + case 1: this.setImeOptions(EditorInfo.IME_MASK_ACTION|EditorInfo.IME_ACTION_NONE); break; + case 2: this.setImeOptions(EditorInfo.IME_MASK_ACTION|EditorInfo.IME_ACTION_GO); break; + case 3: this.setImeOptions(EditorInfo.IME_MASK_ACTION|EditorInfo.IME_ACTION_SEARCH); break; + case 4: this.setImeOptions(EditorInfo.IME_MASK_ACTION|EditorInfo.IME_ACTION_SEND); break; + case 5: this.setImeOptions(EditorInfo.IME_MASK_ACTION|EditorInfo.IME_ACTION_NEXT); break; + case 6: this.setImeOptions(EditorInfo.IME_MASK_ACTION|EditorInfo.IME_ACTION_DONE); break; + case 7: this.setImeOptions(EditorInfo.IME_MASK_ACTION|EditorInfo.IME_ACTION_PREVIOUS ); break; + //case 8: this.setImeOptions(EditorInfo.IME_FLAG_FORCE_ASCII); break; //api >= 16 + } + } + + public void setFontAndTextTypeFace(int fontFace, int fontStyle) { + Typeface t = null; + switch (fontFace) { + case 0: t = Typeface.DEFAULT; break; + case 1: t = Typeface.SANS_SERIF; break; + case 2: t = Typeface.SERIF; break; + case 3: t = Typeface.MONOSPACE; break; + } + this.setTypeface(t, fontStyle); + } + + public void SetAcceptSuggestion(boolean _value) { + mFlagSuggestion = _value; + } + + public void SetCapSentence(boolean _value) { + mFlagCapSentence = _value; + } + + // by tr3e + public void SetCaptureBackPressed(boolean _value) { + mFlagCaptureBackPressed = _value; + } + + public void CopyToClipboard() { + mClipData = ClipData.newPlainText("text", this.getText().toString()); + mClipBoard.setPrimaryClip(mClipData); + } + + public void PasteFromClipboard() { + ClipData cdata = mClipBoard.getPrimaryClip(); + ClipData.Item item = cdata.getItemAt(0); + this.setText(item.getText().toString()); + } + + public void Clear() { + this.setText(""); + } + + public void SetTextSize(float size) { + mTextSize = size; + String t = this.getText().toString(); + this.setTextSize(mTextSizeTypedValue, mTextSize); + this.setText(t); + } + + //TTextSizeTyped =(tsDefault, tsUnitPixels, tsUnitDIP, tsUnitMillimeters, tsUnitPoints, tsUnitScaledPixel); + public void SetFontSizeUnit(int _unit) { + switch (_unit) { + case 0: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; break; //default + case 1: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_PX; break; + case 2: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_DIP; break; + case 3: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_MM; break; + case 4: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_PT; break; + case 5: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; break; + } + String t = this.getText().toString(); + this.setTextSize(mTextSizeTypedValue, mTextSize); + this.setText(t); + } + + //by TR3E + public void SetSelection(int _value){ + this.setSelection(_value); + } + + public void SetSelectAllOnFocus(boolean _value){ + this.setSelectAllOnFocus(_value); + } + + public void SelectAll() { + this.selectAll(); + } + + public void SetBackgroundByResIdentifier(String _imgResIdentifier) { // ..res/drawable ex. "ic_launcher" + this.setBackgroundResource(controls.GetDrawableResourceId(_imgResIdentifier)); + } + + public void SetBackgroundByImage(Bitmap _image) { + if( _image == null ) return; + + Drawable d = new BitmapDrawable(controls.activity.getResources(), _image); + + if( d == null ) return; +//[ifdef_api16up] + if(Build.VERSION.SDK_INT >= 16) + this.setBackground(d); +//[endif_api16up] + } + + @Override + protected void dispatchDraw(Canvas canvas) { + //DO YOUR DRAWING ON UNDER THIS VIEWS CHILDREN + controls.pOnBeforeDispatchDraw(LAMWCommon.getPasObj(), canvas, 1); //handle by pascal side + super.dispatchDraw(canvas); + //DO YOUR DRAWING ON TOP OF THIS VIEWS CHILDREN + controls.pOnAfterDispatchDraw(LAMWCommon.getPasObj(), canvas, 1); //handle by pascal side + } + + public void SetCompoundDrawables(Bitmap _image, int _side) { + Drawable d = new BitmapDrawable(controls.activity.getResources(), _image); + + // by TR3E + if( d == null ){ + this.setCompoundDrawables(null, null, null, null); + return; + } + + int h = d.getIntrinsicHeight(); + int w = d.getIntrinsicWidth(); + d.setBounds( 0, 0, w, h ); + + switch(_side) { + case 0: this.setCompoundDrawables(d, null, null, null); break; //left + case 1: this.setCompoundDrawables(null, null, d, null); break; //right + case 2: this.setCompoundDrawables(null, d, null, null); break; //above + case 3: this.setCompoundDrawables(null, null, null, d); + } + } + + public void SetCompoundDrawables(String _imageResIdentifier, int _side) { + + Drawable d = controls.GetDrawableResourceById(controls.GetDrawableResourceId(_imageResIdentifier)); + + // by TR3E + if( d == null ){ + this.setCompoundDrawables(null, null, null, null); + return; + } + + int h = d.getIntrinsicHeight(); + int w = d.getIntrinsicWidth(); + d.setBounds( 0, 0, w, h ); + + switch(_side) { + case 0: this.setCompoundDrawables(d, null, null, null); break; //left + case 1: this.setCompoundDrawables(null, null, d, null); break; //right + case 2: this.setCompoundDrawables(null, d, null, null); break; //above + case 3: this.setCompoundDrawables(null, null, null, d); + } + } + + // https://blog.stylingandroid.com/gradient-text/ + @Override + protected void onLayout( boolean changed, int left, int top, int right, int bottom ) { + super.onLayout( changed, left, top, right, bottom ); + controls.pOnLayouting(LAMWCommon.getPasObj(), changed); //event handle by pascal side + } + + /* https://mobikul.com/just-few-steps-to-make-your-app-rtl-supportable/ + * add android:supportsRtl="true" to the <application>element in manifest file. + */ + public void SetTextDirection(int _textDirection) { + //[ifdef_api17up] + if(Build.VERSION.SDK_INT >= 17) { + switch (_textDirection) { + case 0: this.setTextDirection(View.TEXT_DIRECTION_INHERIT); break; + case 1: this.setTextDirection(View.TEXT_DIRECTION_FIRST_STRONG); break; + case 2: this.setTextDirection(View.TEXT_DIRECTION_ANY_RTL); break; + case 3: this.setTextDirection(View.TEXT_DIRECTION_LTR); break; + case 4: this.setTextDirection(View.TEXT_DIRECTION_RTL); + + } + //Log.i("SetTextDirection", "SetTextDirection"); + } + //[endif_api17up] + } + + public void SetFontFromAssets(String _fontName) { // "font/font.ttf" + Typeface customfont = Typeface.createFromAsset( controls.activity.getAssets(), _fontName); + this.setTypeface(customfont); + } + + public void RequestFocus() { + this.requestFocus(); + } + + public void SetCloseSoftInputOnEnter(boolean _closeSoftInput) { + mCloseSoftInputOnEnter = _closeSoftInput; + } + + public void LoadFromFile(String _path, String _filename) { + + File file = new File(_path, _filename); + StringBuilder content = new StringBuilder(); + + try { + BufferedReader br = new BufferedReader(new FileReader(file)); + String line; + + while ((line = br.readLine()) != null) { + content.append(line); + content.append('\n'); + } + br.close(); + } + catch (IOException e) { + // + } + this.setText(content.toString()); + } + + + public void LoadFromFile(String _filename) { + + String retStr = ""; + + try { + InputStream inputStream = controls.activity.openFileInput(_filename); + + if ( inputStream != null ) { + InputStreamReader inputStreamReader = new InputStreamReader(inputStream); + BufferedReader bufferedReader = new BufferedReader(inputStreamReader); + String receiveString = ""; + StringBuilder stringBuilder = new StringBuilder(); + while ( (receiveString = bufferedReader.readLine()) != null ) { + stringBuilder.append(receiveString); + } + + inputStream.close(); + retStr = stringBuilder.toString(); + } + } + catch (IOException e) { + // Log.i("jTextFileManager", "LoadFromFile error: " + e.toString()); + } + this.setText(retStr); + } + + public void SaveToFile(String _path, String _filename){ + FileWriter fWriter; + try{ // Environment.getExternalStorageDirectory().getPath() + fWriter = new FileWriter(_path +"/"+ _filename); + fWriter.write(this.getText().toString()); + fWriter.flush(); + fWriter.close(); + }catch(Exception e){ + e.printStackTrace(); + } + } + + public void SaveToFile(String _filename) { + try { + OutputStreamWriter outputStreamWriter = new OutputStreamWriter(controls.activity.openFileOutput(_filename, Context.MODE_PRIVATE)); + //outputStreamWriter.write("_header"); + outputStreamWriter.write(this.getText().toString()); + //outputStreamWriter.write("_footer"); + outputStreamWriter.close(); + } + catch (IOException e) { + // Log.i("jTextFileManager", "SaveToFile failed: " + e.toString()); + } + } + + public void SetSoftInputShownOnFocus(boolean _show) { + //[ifdef_api21up] + if (Build.VERSION.SDK_INT >= 21) { + this.setShowSoftInputOnFocus(_show); + } //[endif_api21up] + } +} + diff --git a/SmartFritz/src/org/muctec/smartfritz/jExpandableListView.java b/SmartFritz/src/org/muctec/smartfritz/jExpandableListView.java new file mode 100644 index 0000000000000000000000000000000000000000..51d56d7477752d125c022fc2433a3c6054d3be60 --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jExpandableListView.java @@ -0,0 +1,819 @@ +package org.muctec.smartfritz; + + +import android.content.Context; +import android.view.Gravity; +import android.view.View; +import android.view.ViewGroup; +import android.widget.ExpandableListView; +import android.widget.ImageView; + +import java.util.HashMap; +import java.util.List; +import java.util.regex.Pattern; + +import android.graphics.Color; +import android.graphics.Typeface; +import android.util.TypedValue; +import android.widget.AbsListView; +import android.widget.BaseExpandableListAdapter; +import android.widget.TextView; +import android.widget.RelativeLayout.LayoutParams; + +import java.lang.reflect.Field; +import java.util.ArrayList; +import android.widget.LinearLayout; +import android.widget.RelativeLayout; + +class HeaderInfo { + String title; + int color; + int fontSize; + int fontSizeUnit; + int alignment; + int fontFace; + int textTypeface; + int iconResId; + int lastSelectedItem; + int highLightColor; +} + +class ChildInfo { + String title; + int color; + int fontSize; + int fontSizeUnit; + int alignment; + int fontFace; + int textTypeface; + int backgroundColor; + int iconResId; +} + +//ref. +//https://www.androidhive.info/2013/07/android-expandable-list-view-tutorial/ +//https://acadgild.com/blog/expandable-listview-example-android/ +//http://techlovejump.com/android-expandable-listview-tutorial/ + +class ExpandableListAdapter extends BaseExpandableListAdapter { + + private Controls controls = null; + private Context _context; + + private List<HeaderInfo> _listDataHeader; // header titles + + // child data in format of header info, child info + private HashMap<HeaderInfo, List<ChildInfo>> _listDataChild; + + public ExpandableListAdapter(Controls _ctrls, List<HeaderInfo> listDataHeader, + HashMap<HeaderInfo, List<ChildInfo>> listChildData) { + + controls = _ctrls; + this._context = _ctrls.activity; + this._listDataHeader = listDataHeader; + this._listDataChild = listChildData; + } + + @Override + public Object getChild(int groupPosition, int childPosititon) { + return this._listDataChild.get(this._listDataHeader.get(groupPosition)) + .get(childPosititon); + } + + @Override + public long getChildId(int groupPosition, int childPosition) { + return childPosition; + } + + @Override + public View getChildView(int groupPosition, final int childPosition, boolean isLastChild, + View convertView, ViewGroup parent) { + + final ChildInfo child = (ChildInfo) getChild(groupPosition, childPosition); + final String childText = child.title; + int color = child.color; + int fontSize = child.fontSize; + int fontSizeUnit = child.fontSizeUnit;; + int alignment = child.alignment; + int fontFace = child.fontFace; + int textTypeface = child.textTypeface; + int backgroundColor = child.backgroundColor; + int iconResId = child.iconResId; + + HeaderInfo header = (HeaderInfo)getGroup(groupPosition); + int selectedItem = header.lastSelectedItem; + int highLightColor = header.highLightColor; + + + LinearLayout listLayout = new LinearLayout(_context); + listLayout.setOrientation(LinearLayout.HORIZONTAL); + + AbsListView.LayoutParams lparam = new AbsListView.LayoutParams(AbsListView.LayoutParams.MATCH_PARENT, + AbsListView.LayoutParams.WRAP_CONTENT); //w, h + listLayout.setLayoutParams(lparam); + + LayoutParams txtParam; + txtParam = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); //w,h + + RelativeLayout itemLayout = new RelativeLayout(_context); + LayoutParams itemParam = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT); //w,h + itemLayout.setLayoutParams(itemParam); + + TextView textView = new TextView(_context); + + textView.setText(childText); + textView.setId(controls.getJavaNewId()); + + ImageView itemImage = null; + RelativeLayout.LayoutParams imgParam = null; + if (iconResId != 0) { + imgParam = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); //w,h + itemImage = new ImageView(_context); + itemImage.setId(controls.getJavaNewId()); + itemImage.setImageResource(iconResId); + itemImage.setFocusable(false); + itemImage.setFocusableInTouchMode(false); + imgParam.addRule(RelativeLayout.CENTER_VERTICAL); + } + + Typeface tf = Typeface.DEFAULT; + switch (fontFace) { + case 0: tf = Typeface.DEFAULT; break; + case 1: tf = Typeface.SANS_SERIF; break; + case 2: tf = Typeface.SERIF; break; + case 3: tf = Typeface.MONOSPACE; break; + } + textView.setTypeface(tf, textTypeface); + + if (color != 0) + textView.setTextColor(color); + + if (fontSize != 0) { + String t = textView.getText().toString(); + textView.setTextSize(fontSizeUnit, fontSize); + textView.setText(t); + textView.setTextSize(color); + } + + int textAlignment; + switch (alignment) { + //[ifdef_api14up] + case 0 : { textAlignment = Gravity.START ; }; break; + case 1 : { textAlignment = Gravity.END ; }; break; + //[endif_api14up] + + /* //[endif_api14up] + case 0 : { textAlignment = Gravity.LEFT ; }; break; + case 1 : { textAlignment = Gravity.RIGHT ; }; break; + //[ifdef_api14up] */ + + case 2 : { textAlignment = Gravity.CENTER_HORIZONTAL ; }; break; + + //[ifdef_api14up] + default : { textAlignment = Gravity.START ; }; break; + //[endif_api14up] + + /* //[endif_api14up] + default : { textAlignment = Gravity.LEFT ; }; break; + //[ifdef_api14up] */ + } + + if ( alignment == 0 ) { //child + if (imgParam == null) { + textView.setPadding(100, 40 /*padTop*/, 20, 40 /*padBottom*/); + txtParam.addRule(RelativeLayout.ALIGN_PARENT_LEFT); + } else { + itemImage.setPadding(100, 10, 20, 10); + imgParam.addRule(RelativeLayout.ALIGN_PARENT_LEFT); + textView.setPadding(10, 40 /*padTop*/, 20, 40 /*padBottom*/); + txtParam.addRule(RelativeLayout.RIGHT_OF, itemImage.getId()); + } + } + else if ( alignment == 1 ) { + if (imgParam == null) { + textView.setPadding(10, 40 /*padTop*/, 100, 40 /*padBottom*/); + txtParam.addRule(RelativeLayout.ALIGN_PARENT_RIGHT); + } else { + textView.setPadding(10, 40 /*padTop*/, 100, 40 /*padBottom*/); + txtParam.addRule(RelativeLayout.ALIGN_PARENT_RIGHT); + itemImage.setPadding(10, 10, 10, 10); + imgParam.addRule(RelativeLayout.LEFT_OF, textView.getId()); + } + + } + else if (alignment == 2) { + if (imgParam == null) { + textView.setPadding(10, 40 /*padTop*/, 20, 40 /*padBottom*/); + txtParam.addRule(RelativeLayout.CENTER_HORIZONTAL); + } + else { + textView.setPadding(10, 40 /*padTop*/, 20, 40 /*padBottom*/); + txtParam.addRule(RelativeLayout.CENTER_HORIZONTAL); + itemImage.setPadding(10, 10, 10, 10); + imgParam.addRule(RelativeLayout.LEFT_OF, textView.getId()); + } + } + + if (itemImage != null) { + itemLayout.addView(itemImage, imgParam); + } + + itemLayout.addView(textView, txtParam); + + if (backgroundColor != Color.TRANSPARENT) { + itemLayout.setBackgroundColor(backgroundColor); + itemLayout.setAlpha(0.75f); + } + + if (selectedItem == childPosition) { + if (highLightColor != Color.TRANSPARENT) { + itemLayout.setBackgroundColor(highLightColor); + } + } + + listLayout.addView(itemLayout); //child + + return listLayout; + } + + @Override + public int getChildrenCount(int groupPosition) { + return this._listDataChild.get(this._listDataHeader.get(groupPosition)).size(); + + } + + public void removeChild(int groupPosition, int _index) { + this._listDataChild.get(this._listDataHeader.get(groupPosition)).clear(); //remove(_index); + } + + @Override + public Object getGroup(int groupPosition) { + return this._listDataHeader.get(groupPosition); + } + + @Override + public int getGroupCount() { + return this._listDataHeader.size(); + } + + @Override + public long getGroupId(int groupPosition) { + return groupPosition; + } + + @Override + public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) { + + HeaderInfo header = (HeaderInfo)getGroup(groupPosition); + String headerTitle = header.title; + int color = header.color; + int fontSize = header.fontSize; + int fontSizeUnit = header.fontSizeUnit; + int alignment = header.alignment; + int fontFace = header.fontFace; + int textTypeface = header.textTypeface; + int iconResId = header.iconResId; + + LinearLayout listLayout = new LinearLayout(_context); + listLayout.setOrientation(LinearLayout.HORIZONTAL); + + AbsListView.LayoutParams lparam = new AbsListView.LayoutParams(AbsListView.LayoutParams.MATCH_PARENT, + AbsListView.LayoutParams.WRAP_CONTENT); //w, h + + listLayout.setLayoutParams(lparam); + + RelativeLayout itemLayout = new RelativeLayout(_context); + LayoutParams itemParam = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT); //w,h + itemLayout.setLayoutParams(itemParam); + + LayoutParams txtParam = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); //w,h //layText + TextView textView = new TextView(_context); + textView.setText(headerTitle); + textView.setId(controls.getJavaNewId()); + + ImageView itemImage = null; + RelativeLayout.LayoutParams imgParam = null; + if (iconResId != 0) { + imgParam = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); //w,h + itemImage = new ImageView(_context); + itemImage.setId(controls.getJavaNewId()); + itemImage.setImageResource(iconResId); + itemImage.setFocusable(false); + itemImage.setFocusableInTouchMode(false); + imgParam.addRule(RelativeLayout.CENTER_VERTICAL); + } + + Typeface tf = Typeface.DEFAULT; + switch (fontFace) { + case 0: tf = Typeface.DEFAULT; break; + case 1: tf = Typeface.SANS_SERIF; break; + case 2: tf = Typeface.SERIF; break; + case 3: tf = Typeface.MONOSPACE; break; + } + textView.setTypeface(tf, textTypeface); + + + if (color != 0) + textView.setTextColor(color); + + if (fontSize != 0) { + String t = textView.getText().toString(); + textView.setTextSize(fontSizeUnit, fontSize); + textView.setText(t); + textView.setTextSize(color); + } + + int textAlignment; //header + switch (alignment) { + //[ifdef_api14up] + case 0 : { textAlignment = Gravity.START ; }; break; + case 1 : { textAlignment = Gravity.END ; }; break; + //[endif_api14up] + + /* //[endif_api14up] + case 0 : { textAlignment = Gravity.LEFT ; }; break; + case 1 : { textAlignment = Gravity.RIGHT ; }; break; + //[ifdef_api14up] */ + + case 2 : { textAlignment = Gravity.CENTER_HORIZONTAL ; }; break; + + //[ifdef_api14up] + default : { textAlignment = Gravity.START ; }; break; + //[endif_api14up] + + /* //[endif_api14up] + default : { textAlignment = Gravity.LEFT ; }; break; + //[ifdef_api14up] */ + + } + + if ( alignment == 0 ) { //header + if (imgParam == null) { + textView.setPadding(100, 40 /*padTop*/, 20, 40 /*padBottom*/); + txtParam.addRule(RelativeLayout.ALIGN_PARENT_LEFT); + } else { + itemImage.setPadding(100, 10, 20, 10); + imgParam.addRule(RelativeLayout.ALIGN_PARENT_LEFT); + textView.setPadding(10, 40 /*padTop*/, 20, 40 /*padBottom*/); + txtParam.addRule(RelativeLayout.RIGHT_OF, itemImage.getId()); + } + } + else if ( alignment == 1 ) { + if (imgParam == null) { + textView.setPadding(10, 40 /*padTop*/, 100, 40 /*padBottom*/); + txtParam.addRule(RelativeLayout.ALIGN_PARENT_RIGHT); + } else { + textView.setPadding(10, 40 /*padTop*/, 100, 40 /*padBottom*/); + txtParam.addRule(RelativeLayout.ALIGN_PARENT_RIGHT); + itemImage.setPadding(10, 10, 10, 10); + imgParam.addRule(RelativeLayout.LEFT_OF, textView.getId()); + } + + } + else if (alignment == 2) { + if (imgParam == null) { + textView.setPadding(10, 40 /*padTop*/, 20, 40 /*padBottom*/); + txtParam.addRule(RelativeLayout.CENTER_HORIZONTAL); + } + else { + textView.setPadding(10, 40 /*padTop*/, 20, 40 /*padBottom*/); + txtParam.addRule(RelativeLayout.CENTER_HORIZONTAL); + itemImage.setPadding(10, 10, 10, 10); + imgParam.addRule(RelativeLayout.LEFT_OF, textView.getId()); + } + } + + if (itemImage != null) { + itemLayout.addView(itemImage, imgParam); + } + itemLayout.addView(textView, txtParam); + + listLayout.addView(itemLayout); + + return listLayout; + } + + @Override + public boolean hasStableIds() { + return false; + } + + @Override + public boolean isChildSelectable(int groupPosition, int childPosition) { + return true; + } +} + +/*Draft java code by "Lazarus Android Module Wizard" [10/16/2017 22:40:47]*/ +/*https://github.com/jmpessoa/lazandroidmodulewizard*/ +/*jVisualControl LAMW template*/ + +public class jExpandableListView extends ExpandableListView /*dummy*/ { //please, fix what GUI object will be extended! + + private long pascalObj = 0; // Pascal Object + private Controls controls = null; //Java/Pascal [events] Interface ... + private jCommons LAMWCommon; + private Context context = null; + + //private OnClickListener onClickListener; // click event + private Boolean enabled = true; // click-touch enabled! + + ExpandableListAdapter listAdapter; + + List<HeaderInfo> listDataHeader; + HashMap<HeaderInfo, List<ChildInfo>> listDataChild; + + String headerDelimiter = "$"; + String childInnerDelimiter = ";"; + + int headerTextColor = 0; + int childTextColor = 0; + boolean hasData = false; + + int headerFontSize = 0; + int childFontSize = 0; + + int mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; + int textAlignment; + int textAlignmentChild; + int fontFace; + int textTypeface; + int textTypefaceChild; + int backgroundColorChild = Color.TRANSPARENT; + int iconResId = 0; + int iconResIdChild = 0; + + boolean highLightSelectedItem = false; + int highLightColor = Color.TRANSPARENT; + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + public jExpandableListView(Controls _ctrls, long _Self) { //Add more others news "_xxx" params if needed! + + super(_ctrls.activity); + context = _ctrls.activity; + pascalObj = _Self; + controls = _ctrls; + LAMWCommon = new jCommons(this,context,pascalObj); + + // preparing list data + listDataHeader = new ArrayList<HeaderInfo>(); + listDataChild = new HashMap<HeaderInfo, List<ChildInfo>>(); + listAdapter = new ExpandableListAdapter(controls, listDataHeader, listDataChild); + + // setting list adapter + this.setAdapter(listAdapter); + + /* + onClickListener = new OnClickListener(){ + public void onClick(View view){ // *.* is a mask to future parse...; + if (enabled) { + controls.pOnClickGeneric(pascalObj, Const.Click_Default); //JNI event onClick! + } + }; + }; + setOnClickListener(onClickListener); + */ + + + // Listview on child click listener + this.setOnChildClickListener(new OnChildClickListener() { + + @Override + public boolean onChildClick(ExpandableListView parent, View v, + int groupPosition, int childPosition, long id) { + + if (highLightSelectedItem) { + + if ( ((HeaderInfo)listDataHeader.get(groupPosition)).lastSelectedItem != -1) { + DoHighlight(groupPosition, ((HeaderInfo)listDataHeader.get(groupPosition)).lastSelectedItem, Color.TRANSPARENT); + } + + DoHighlight(groupPosition, childPosition, highLightColor); // + } + + ((HeaderInfo)listDataHeader.get(groupPosition)).lastSelectedItem = (int) childPosition; + + controls.pOnExpandableListViewChildClick(pascalObj, + groupPosition, ((HeaderInfo)listDataHeader.get(groupPosition)).title, + childPosition, ((ChildInfo)listDataChild.get(listDataHeader.get(groupPosition)).get(childPosition)).title + ); + + return false; + } + }); + + // Listview Group expanded listener + this.setOnGroupExpandListener(new OnGroupExpandListener() { + + @Override + public void onGroupExpand(int groupPosition) { + controls.pOnExpandableListViewGroupExpand(pascalObj, groupPosition, ((HeaderInfo)listDataHeader.get(groupPosition)).title ); + } + }); + + // Listview Group collasped listener + this.setOnGroupCollapseListener(new OnGroupCollapseListener() { + @Override + public void onGroupCollapse(int groupPosition) { + controls.pOnExpandableListViewGroupCollapse(pascalObj, groupPosition, ((HeaderInfo)listDataHeader.get(groupPosition)).title ); + } + }); + + } //end constructor + + public void jFree() { + //free local objects... + setOnClickListener(null); + LAMWCommon.free(); + } + + private void DoHighlight(int groupPosition, int position, int _color) { + //((ChildInfo)listDataChild.get(listDataHeader.get(groupPosition)).get(position)).highLightColor = _color; + ((HeaderInfo)listDataHeader.get(groupPosition)).highLightColor = _color; + listAdapter.notifyDataSetChanged(); + } + + + public void SetViewParent(ViewGroup _viewgroup) { + LAMWCommon.setParent(_viewgroup); + } + + public ViewGroup GetParent() { + return LAMWCommon.getParent(); + } + + public void RemoveFromViewParent() { + LAMWCommon.removeFromViewParent(); + } + + public View GetView() { + return this; + } + + public void SetLParamWidth(int _w) { + LAMWCommon.setLParamWidth(_w); + } + + public void SetLParamHeight(int _h) { + LAMWCommon.setLParamHeight(_h); + } + + public int GetLParamWidth() { + return LAMWCommon.getLParamWidth(); + } + + public int GetLParamHeight() { + return LAMWCommon.getLParamHeight(); + } + + public void SetLGravity(int _g) { + LAMWCommon.setLGravity(_g); + } + + public void SetLWeight(float _w) { + LAMWCommon.setLWeight(_w); + } + + public void SetLeftTopRightBottomWidthHeight(int _left, int _top, int _right, int _bottom, int _w, int _h) { + LAMWCommon.setLeftTopRightBottomWidthHeight(_left,_top,_right,_bottom,_w,_h); + } + + public void AddLParamsAnchorRule(int _rule) { + LAMWCommon.addLParamsAnchorRule(_rule); + } + + public void AddLParamsParentRule(int _rule) { + LAMWCommon.addLParamsParentRule(_rule); + } + + public void SetLayoutAll(int _idAnchor) { + LAMWCommon.setLayoutAll(_idAnchor); + } + + public void ClearLayoutAll() { + LAMWCommon.clearLayoutAll(); + } + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + + public void SetItemHeaderDelimiter(String _itemHeaderDelimiter) { + headerDelimiter = _itemHeaderDelimiter; + } + + public void SetItemChildInnerDelimiter(String _itemChildInnerDelimiter) { + childInnerDelimiter = _itemChildInnerDelimiter; + } + + public void Add(String _header, String _delimitedChildItems) { + + HeaderInfo header = new HeaderInfo(); + + List<ChildInfo> itemList = new ArrayList<ChildInfo>(); + + String[] items = _delimitedChildItems.split(Pattern.quote(childInnerDelimiter)); + + for (int i = 0; i < items.length; i++) { + ChildInfo child = new ChildInfo(); + child.title = items[i]; + child.color = childTextColor; + child.fontSize = childFontSize; + child.fontSizeUnit = mTextSizeTypedValue; + child.alignment = textAlignmentChild; + child.fontFace = fontFace; + child.textTypeface = textTypefaceChild; + child.backgroundColor = backgroundColorChild; + child.iconResId = iconResIdChild; + //child.highLightColor = highLightColor; + itemList.add(child); + } + + header.title = _header; + header.color = headerTextColor; + header.fontSize = headerFontSize; + header.fontSizeUnit = mTextSizeTypedValue; + header.alignment = textAlignment; + header.fontFace = fontFace; + header.textTypeface = textTypeface; + header.iconResId = iconResId; + header.lastSelectedItem = -1; + header.highLightColor = highLightColor; + listDataHeader.add(header); + + int index = listDataHeader.size()-1; + + listDataChild.put( listDataHeader.get(index), itemList ); // Header, Child data + listAdapter.notifyDataSetChanged(); + } + + public void Clear() { + listDataHeader.clear(); + listAdapter.notifyDataSetChanged(); + } + + public void ClearChildren(int _groupPosition) { + listDataChild.get(listDataHeader.get(_groupPosition)).clear(); + listAdapter.notifyDataSetChanged(); + } + + public void ClearGroup(int _groupPosition) { + listDataHeader.remove(_groupPosition); + listAdapter.notifyDataSetChanged(); + } + + public void Add(String _delimitedItem, String _headerDelimiter, String _childInnerDelimiter) { + + List<ChildInfo> itemList = new ArrayList<ChildInfo>(); + + String[] data = _delimitedItem.split(Pattern.quote(_headerDelimiter)); + String _header = data[0]; + String[] items = data[1].split(Pattern.quote(_childInnerDelimiter)); + + for (int i = 0; i < items.length; i++) { + ChildInfo child = new ChildInfo(); + child.title = items[i]; + child.color = childTextColor; + child.fontSize = childFontSize; + child.fontSizeUnit = mTextSizeTypedValue; + child.alignment = textAlignmentChild; + child.fontFace = fontFace; + child.textTypeface = textTypefaceChild; + child.backgroundColor = backgroundColorChild; + child.iconResId = iconResIdChild; //GetDrawableResourceId("ic_bullet_blue"); + //child.highLightColor = highLightColor; + itemList.add(child); + } + + HeaderInfo header = new HeaderInfo(); + header.title = _header; + header.color = headerTextColor; + header.fontSize = headerFontSize; + header.fontSizeUnit = mTextSizeTypedValue; + header.alignment = textAlignment; + header.fontFace = fontFace; + header.textTypeface = textTypeface; + header.iconResId = iconResId; + header.lastSelectedItem = -1; + header.highLightColor = highLightColor; + + listDataHeader.add(header); + + int index = listDataHeader.size()-1; + listDataChild.put( listDataHeader.get(index), itemList ); // Header, Child data + + listAdapter.notifyDataSetChanged(); + } + + public void SetFontColor (int _color) { + headerTextColor = _color; + } + + + public void SetFontChildColor(int _color) { + childTextColor = _color; + } + + public void SetFontColorAll (int _color) { + headerTextColor = _color; + + if (listDataHeader.size() == 0) return; + + for (int i=0; i < listDataHeader.size(); i++) { + listDataHeader.get(i).color = headerTextColor; + } + + listAdapter.notifyDataSetChanged(); + } + + public void SetFontChildColorAll(int _color) { + childTextColor = _color; + + if (listDataChild.size() == 0) return; + + for (int i=0; i < listDataHeader.size(); i++) { + + int count = listDataChild.get( listDataHeader.get(i) ).size(); + + for (int j = 0; j < count; j++) { + ((ChildInfo)listDataChild.get(listDataHeader.get(i)).get(j)).color = childTextColor; + } + + } + listAdapter.notifyDataSetChanged(); + } + + //TTextSizeTypedValue =(tsDefault, tsPixels, tsDIP, tsMillimeters, tsPoints, tsScaledPixel); + public void SetFontSizeUnit(int _unit) { + switch (_unit) { + case 0: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; break; //default + case 1: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_PX; break; + case 2: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_DIP; break; + case 3: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_MM; break; + case 4: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_PT; break; + case 5: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; break; + } + } + + public void SetFontSize(int _fontSize) { + headerFontSize = _fontSize; + } + + public void SetFontChildSize(int _fontSize) { + childFontSize = _fontSize; + } + + public void SetTextAlign(int _align) { + textAlignment = _align; + } + + public void SetTextChildAlign(int _align) { + textAlignmentChild = _align; + } + + public void SetFontFace(int _fontFace) { + fontFace = _fontFace; + } + + public void SetTextTypeFace(int _typeface) { + textTypeface = _typeface; + } + + public void SetTextChildTypeFace(int _typeface) { + textTypefaceChild = _typeface; + } + + public void SetBackgroundChild(int _color) { + backgroundColorChild = _color; + } + + private int GetDrawableResourceId(String _resName) { + try { + Class<?> res = R.drawable.class; + Field field = res.getField(_resName); //"drawableName" ex. "ic_launcher" + int drawableId = field.getInt(null); + return drawableId; + } + catch (Exception e) { + return 0; + } + } + + public void SetImageItemIdentifier(String _imageResIdentifier) { + iconResId = GetDrawableResourceId(_imageResIdentifier); + } + + public void SetImageChildItemIdentifier(String _imageResIdentifier) { + iconResIdChild = GetDrawableResourceId(_imageResIdentifier); + } + + public void SetHighLightSelectedChildItemColor(int _color) { + highLightColor = _color; + if (_color != Color.TRANSPARENT) { + highLightSelectedItem = true; + } + else { + highLightSelectedItem = false; + } + } + +} + diff --git a/SmartFritz/src/org/muctec/smartfritz/jHttpClient.java b/SmartFritz/src/org/muctec/smartfritz/jHttpClient.java new file mode 100644 index 0000000000000000000000000000000000000000..ca04f4ee58bd6948eebf92afdf0482fd7fc93b64 --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jHttpClient.java @@ -0,0 +1,1364 @@ +package org.muctec.smartfritz; + +import java.io.BufferedReader; +import java.io.BufferedWriter; +import java.io.DataOutputStream; +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.OutputStream; +import java.io.OutputStreamWriter; +import java.io.PrintWriter; +import java.io.UnsupportedEncodingException; +import java.net.CookieHandler; +import java.net.CookieManager; +import java.net.CookiePolicy; +import java.net.CookieStore; +import java.net.HttpCookie; +import java.net.HttpURLConnection; +import java.net.URI; +import java.net.URL; +import java.net.URLEncoder; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Random; +import java.util.Scanner; +import java.util.Set; +import java.util.StringTokenizer; + +import android.content.Context; +import android.os.AsyncTask; +import android.os.PowerManager; +import android.util.Base64; +import android.util.Log; + +/*Draft java code by "Lazarus Android Module Wizard" [2/16/2015 20:17:59]*/ +/*https://github.com/jmpessoa/lazandroidmodulewizard*/ +/*jControl template*/ + +//ref. http://www.javacodegeeks.com/2013/06/android-http-client-get-post-download-upload-multipart-request.html +//ref http://lethargicpanda.tumblr.com/post/14784695735/oauth-login-on-your-android-app-the-github + +//by Simon, Choi +//https://blog.naver.com/simonsayz +class LConst { + public static final String LogHeader = "LAMW_jHttpClient"; //AndCtrls_Java + public static final int Http_Act_Text = 0; + public static final int Http_Act_Download = 1; + public static final int Http_Act_Upload = 2; + // + public static final int Http_State_Xfer = 0; + public static final int Http_State_Done = 1; + public static final int Http_State_Error = 2; + // + public static final String Http_Boundary = "---------------------------7df9330d90b18"; + +} + +public class jHttpClient /*extends ...*/ { + + private long pascalObj = 0; // Pascal Object + private Controls controls = null; // Control Class -> Java/Pascal Interface ... + private Context context = null; + + private String mUSERNAME = "USERNAME"; + private String mPASSWORD = "PASSWORD"; + private int mAuthenticationMode = 0; //0: none. 1: basic; 2= OAuth + + private String mHOSTNAME = null; + private int mPORT = -1; + + String httpCharSet = "UTF-8"; // default UTF-8 + + private HashMap<String, String> ValuesForPost; + private CookieManager cookieManager; + + private HttpURLConnection client3 = null; // renabor + + private CookieStore cookieStore; + + private String mUrlString = ""; + private int mResponseCode = HttpURLConnection.HTTP_NOT_FOUND; + + ArrayList<String> listHeaderName = new ArrayList<String>(); + ArrayList<String> listHeaderValue = new ArrayList<String>(); + + private int mConnectTimeout = 15000; + private int mReadTimeout = 15000; + + private String urlText; + private String localFileText; + private String formDataName = "lamwFormUpload"; + + int serverResponseCode; + String serverResponseMessage; + + String unvaluedName = "SOAPBODY"; + boolean encodeValue = true; + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + public jHttpClient(Controls _ctrls, long _Self) { //Add more others news "_xxx" params if needed! + //super(_ctrls.activity); + context = _ctrls.activity; + pascalObj = _Self; + controls = _ctrls; + + cookieManager = new CookieManager(null, CookiePolicy.ACCEPT_ALL); + + CookieHandler.setDefault(cookieManager); // <<------- CookieManager work automatically + + ValuesForPost = new HashMap<String, String>(); + + } + + //https://www.nczonline.net/blog/2009/05/05/http-cookies-explained/ + + public void jFree() { + //free local objects... + if (client3 != null) client3.disconnect(); + } + + //write others [public] methods code here...... + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + + public void GetAsync(String _stringUrl) { + mUrlString = _stringUrl; + new AsyncHttpClientGet().execute(_stringUrl); + } + + public void SetCharSet(String _charSet) { + httpCharSet = _charSet; + //Log.i("CharSet", _charSet); + } + + ////Pascal: Get + public String Get(String _urlString) { //throws Exception { + StringBuffer sb = new StringBuffer(); + mResponseCode = HttpURLConnection.HTTP_CREATED; + mUrlString = _urlString; + try { + URL url = new URL(_urlString); + client3 = (HttpURLConnection) url.openConnection(); + client3.setRequestMethod("GET"); + if (mAuthenticationMode == 1) { + String _credentials = mUSERNAME + ":" + mPASSWORD; + String _base64EncodedCredentials = Base64.encodeToString(_credentials.getBytes(), Base64.NO_WRAP); + client3.setRequestProperty("Authorization", "Basic " + _base64EncodedCredentials); + } + + int statusCode = client3.getResponseCode(); + mResponseCode = statusCode; + + if (statusCode == HttpURLConnection.HTTP_OK) { //OK + InputStream inputStream = client3.getInputStream(); + BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream)); + String inputLine; + while ((inputLine = reader.readLine()) != null) { + sb.append(inputLine); + } + inputStream.close(); + } else { + sb.append(String.valueOf(statusCode)); + + } + client3.disconnect(); + } catch (Exception e) { + return ""; + } + return sb.toString(); + } + + //by renabor + public void AddValueForPost2(String Name, String Value) { //Pascal: AddPostNameValueData + ValuesForPost.put(Name, Value); + } + + //by renabor + public void ClearPost2Values() { // Pascal: ClearPostNameValueData + ValuesForPost.clear(); + } + + //http://stackoverflow.com/questions/9767952/how-to-add-parameters-to-httpurlconnection-using-post + private String getPostDataString(HashMap<String, String> params) throws UnsupportedEncodingException { + StringBuilder result = new StringBuilder(); + boolean first = true; + for (Map.Entry<String, String> entry : params.entrySet()) { + + if (first) + first = false; + else + result.append("&"); + + /* + result.append(URLEncoder.encode(entry.getKey(), "UTF-8")); + result.append("="); + result.append(URLEncoder.encode(entry.getValue(), "UTF-8")); + */ + //https://forum.lazarus.freepascal.org/index.php?topic=38365.0 + if (entry.getKey().equals(unvaluedName) == true) { //"SOAP-ENV:Envelope" + + if (!encodeValue) + result.append(entry.getValue()); + else + result.append(URLEncoder.encode(entry.getValue(), "UTF-8")); + + } else { + result.append(URLEncoder.encode(entry.getKey(), "UTF-8")); + result.append("="); + + if (encodeValue) + result.append(URLEncoder.encode(entry.getValue(), "UTF-8")); + else + result.append(entry.getValue()); + + } + + } + + return result.toString(); + } + + //http://www.xyzws.com/javafaq/how-to-use-httpurlconnection-post-data-to-web-server/139 + //http://stackoverflow.com/questions/9767952/how-to-add-parameters-to-httpurlconnection-using-post + //http://www.mkyong.com/java/how-to-send-http-request-getpost-in-java/ + //http://javatechig.com/android/android-networking-tutorial + //http://www.rapidvaluesolutions.com/tech_blog/introduction-to-httpurlconnection-http-client-for-performing-efficient-network-operations/ + public String Post(String _urlString) { // Pascal: Post + + URL url; + String response = ""; + String Params; + mResponseCode = HttpURLConnection.HTTP_CREATED; + + mUrlString = _urlString; + + try { + url = new URL(_urlString); + + client3 = (HttpURLConnection) url.openConnection(); + client3.setReadTimeout(mReadTimeout); + client3.setConnectTimeout(mConnectTimeout); + client3.setRequestMethod("POST"); + + client3.setDoInput(true); + client3.setDoOutput(true); + + Params = getPostDataString(ValuesForPost); + client3.setFixedLengthStreamingMode(Params.getBytes().length); + //client3.setFixedLengthStreamingMode(Params.length()); + + if (mAuthenticationMode == 1) { + String _credentials = mUSERNAME + ":" + mPASSWORD; + String _base64EncodedCredentials = Base64.encodeToString(_credentials.getBytes(), Base64.NO_WRAP); + client3.setRequestProperty("Authorization", "Basic " + _base64EncodedCredentials); + } + + client3.setRequestProperty("Charset", "UTF-8"); + client3.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); + + OutputStream os = client3.getOutputStream(); + BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(os, "UTF-8")); + + writer.write(Params); + writer.flush(); + writer.close(); + os.close(); + + int responseCode = client3.getResponseCode(); + mResponseCode = responseCode; + + if (responseCode == HttpURLConnection.HTTP_OK /*HttpsURLConnection.HTTP_OK*/) { + String line; + BufferedReader br = new BufferedReader(new InputStreamReader(client3.getInputStream())); + while ((line = br.readLine()) != null) { + response += line; + } + } else { + response = String.valueOf(responseCode); + } + + } catch (Exception e) { + //Log.i("test", e.printStackTrace()); + Log.e("http", "POST", e); + return "Error..."; + } + + return response; + } + + public void SetAuthenticationUser(String _userName, String _password) { + mUSERNAME = _userName; + mPASSWORD = _password; + } + + public void SetAuthenticationHost(String _hostName, int _port) { + if (_hostName.equals("")) { + mHOSTNAME = null; + } else { + mHOSTNAME = _hostName; + } + mPORT = _port; + } + + public void SetAuthenticationMode(int _authenticationMode) { + mAuthenticationMode = _authenticationMode; //0: none. 1: basic; 2= OAuth + } + + /* + * AsyncTask has three generic types: + Params: An array of parameters you want to pass in to the class you create when you subclass AsyncTask. + Progress: If you override onProgressUpdate, this is the type that method returns. + Result: This is the type that doInBackground returns. + */ + + //ref. http://mobiledevtuts.com/android/android-http-with-asynctask-example/ + + public void PostNameValueDataAsync(String _stringUrl, String _name, String _value) { + mUrlString = _stringUrl; + ValuesForPost.clear(); + ValuesForPost.put(_name, _value); + new AsyncHttpClientPostNameValueData().execute(_stringUrl, "", ""); + } + + public void PostNameValueDataAsync(String _stringUrl, String _listNameValue) { + StringTokenizer st = new StringTokenizer(_listNameValue, "=&"); //name1=value1&name2=value2&name3=value3 ... + + ValuesForPost.clear(); + + mUrlString = _stringUrl; + + while (st.hasMoreTokens()) { + String key = st.nextToken(); + String val = st.nextToken(); + //Log.i("name ->", key); + //Log.i("value ->", val); + ValuesForPost.put(key, val); + } + new AsyncHttpClientPostNameValueData().execute(_stringUrl, "", ""); + //new AsyncHttpClientPostListNameValueData().execute(_stringUrl, _listNameValue); + } + + public void PostNameValueDataAsync(String _stringUrl) { + mUrlString = _stringUrl; + new AsyncHttpClientPostNameValueData().execute(_stringUrl, "", ""); + } + + //----------------------- + //Cookies + //----------------------- + /*http://stackoverflow.com/questions/16150089/how-to-handle-cookies-in-httpurlconnection-using-cookiemanager + * + *http://www.concretepage.com/java/example_cookiemanager_java + *https://czheng035.wordpress.com/2012/06/18/cookie-management-in-android-webview-development/ OTIMO! + * + *http://stackoverflow.com/questions/14860087/should-httpurlconnection-with-cookiemanager-automatically-handle-session-cookies + * + HttpCookie cookie = new HttpCookie("lang", "fr"); + cookie.setDomain("twitter.com"); + cookie.setPath("/"); + cookie.setVersion(0); + cookieManager.getCookieStore().add(new URI("http://twitter.com/"), cookie) + */ + + public HttpCookie AddCookie(String _name, String _value) { + HttpCookie cookie = new HttpCookie(_name, _value); + //cookie.setDomain("your domain");cookie.setPath("/"); + cookieStore = cookieManager.getCookieStore(); + //cookieStore.add(Uri, cookie); + cookieStore.add(null, cookie); //All URIs + return cookie; + } + + public HttpCookie AddCookie(String _url, String _name, String _value) { + HttpCookie cookie = new HttpCookie(_name, _value); + //cookie.setDomain("your domain");cookie.setPath("/"); + cookieStore = cookieManager.getCookieStore(); + URI Uri; + try { + Uri = new URI(_url); + cookieStore.add(Uri, cookie); + //cookieStore.add(null, cookie); //All URIs + } catch (Exception e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + return cookie; + } + + public String GetCookieValue(HttpCookie _cookie) { + return _cookie.getValue(); + } + + public String[] GetCookies(String _nameValueSeparator) { + + ArrayList<String> list = new ArrayList<String>(); + try { + cookieStore = cookieManager.getCookieStore(); + List<HttpCookie> cookies = cookieStore.getCookies(); //all URIs + if (!cookies.isEmpty()) { + for (HttpCookie cookie : cookies) { + list.add(cookie.getName() + _nameValueSeparator + cookie.getValue()); + } + } + + } catch (Exception e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + + return list.toArray(new String[list.size()]); + } + + public String[] GetCookies(String _urlString, String _nameValueSeparator) { //Cookies + + ArrayList<String> list = new ArrayList<String>(); + cookieStore = cookieManager.getCookieStore(); + URI uri; + try { + uri = new URI(_urlString); + List<HttpCookie> cookies = cookieStore.get(uri); + //List<HttpCookie> cookies = cookieStore.getCookies(); //All URIs + if (!cookies.isEmpty()) { + for (HttpCookie cookie : cookies) { + list.add(cookie.getName() + _nameValueSeparator + cookie.getValue()); + } + } + + } catch (Exception e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + return list.toArray(new String[list.size()]); + } + + public int GetCookiesCount() { + cookieStore = cookieManager.getCookieStore(); + return cookieStore.getCookies().size(); + } + + public HttpCookie GetCookieByIndex(int _index) { + cookieStore = cookieManager.getCookieStore(); + if (_index < cookieStore.getCookies().size()) + return cookieStore.getCookies().get(_index); + else return null; + } + + public String GetCookieAttributeValue(HttpCookie _cookie, String _attribute) { + String r = ""; + if (_attribute.equals("name")) r = _cookie.getName(); + else if (_attribute.equals("value")) r = _cookie.getValue(); + else if (_attribute.equals("domain")) r = _cookie.getDomain(); + else if (_attribute.equals("version")) + r = String.valueOf(_cookie.getVersion()); //getExpiryDate().toString() + else if (_attribute.equals("expirydate")) + r = "" + _cookie.getMaxAge();//DateFormat.format("yyyyMMdd kk:mm", _cookie.getExpiryDate()).toString(); + else if (_attribute.equals("path")) r = _cookie.getPath(); + else if (_attribute.equals("comment")) r = _cookie.getComment(); + else if (_attribute.equals("ports")) + r = String.valueOf(_cookie.getPortlist()); //.getPorts() + return r; + } + + public void ClearCookieStore() { + cookieStore = cookieManager.getCookieStore(); + cookieStore.removeAll(); + } + + //http://stackoverflow.com/questions/14860087/should-httpurlconnection-with-cookiemanager-automatically-handle-session-cookies + + //http://www.mkyong.com/java/how-to-automate-login-a-website-java-example/ + // + + public HttpURLConnection OpenConnection(String _urlString) { + //ArrayList<String> list = new ArrayList<String>(); + //Values must be set prior to calling the connect method: + client3 = null; + try { + mUrlString = _urlString; + URL url = new URL(_urlString); + client3 = (HttpURLConnection) url.openConnection(); + } catch (IOException e) { + //TODO Auto-generated catch block + e.printStackTrace(); + } + return client3; + + } + + + //Sets the general request property. If a property with the key already exists, overwrite its value with the new value. + public HttpURLConnection SetRequestProperty(HttpURLConnection _httpConnection, String _headerName, String _headerValue) { + //ArrayList<String> list = new ArrayList<String>(); + //Values must be set prior to calling the connect method: + // _HeaderValue = "userId=igbrown; sessionId=SID77689211949; isAuthenticated=true"; + if (_httpConnection != null) + _httpConnection.setRequestProperty(_headerName, _headerValue); + //Send the cookie to the server: + //To send the cookie, simply call connect() on the URLConnection for which we have added the cookie property: + //httpClient.connect(); + return _httpConnection; + } + + + //Adds a general request property specified by a key-value pair. + //This method will not overwrite existing values associated with the same key. + + public HttpURLConnection AddRequestProperty(HttpURLConnection _httpConnection, String _headerName, String _headerValue) { + //ArrayList<String> list = new ArrayList<String>(); + //Values must be set prior to calling the connect method: + // _HeaderValue = "userId=igbrown; sessionId=SID77689211949; isAuthenticated=true"; + if (_httpConnection != null) + _httpConnection.addRequestProperty(_headerName, _headerValue); + //Send the cookie to the server: + //To send the cookie, simply call connect() on the URLConnection for which we have added the cookie property: + //httpClient.connect(); + return _httpConnection; + } + + /* + public HttpURLConnection Connect(HttpURLConnection _httpConnection) { + try { + if (_httpConnection != null) + _httpConnection.connect(); + } catch (IOException e) { + // TODO Auto-generated catch block + _httpConnection = null; + Log.e("HttpURLConnection", "Connect", e); + //e.printStackTrace(); + } + return _httpConnection; + } + */ + + public HttpURLConnection GetDefaultConnection() { + return client3; + } + //http://www.hccp.org/java-net-cookie-how-to.html + + public String GetHeaderField(HttpURLConnection _httpConnection, String _headerName) { + //ArrayList<String> list = new ArrayList<String>(); + String headerName = null; + String _field = ""; + + if (_httpConnection == null) return ""; + + for (int i = 1; (headerName = _httpConnection.getHeaderFieldKey(i)) != null; i++) { + //Log.i("headers..", headerName); //Keep-Alive ... Server ... Set-Cookie ... etc.. + if (headerName.equals(_headerName)) { + _field = _httpConnection.getHeaderField(i); + //Loop through response headers looking for cookies: + //Since a server may set multiple cookies in a single request, we will need to loop through the response headers, looking for all headers named "Set-Cookie". + //Extract cookie name and value from cookie string: + //The string returned by the getHeaderField(int index) method is a series of name=value separated by semi-colons (;). The first name/value pairing is actual data string we are interested in (i.e. "sessionId=0949eeee22222rtg" or "userId=igbrown"), the subsequent name/value pairings are meta-information that we would use to manage the storage of the cookie (when it expires, etc.). + //This is basically it. We now have the cookie name (cookieName) and the cookie value (cookieValue). + + } + } + + return _field; + } + + //ref. http://blog.leocad.io/basic-http-authentication-on-android/ + //ref. http://simpleprogrammer.com/2011/05/25/oauth-and-rest-in-android-part-1/ + //ref. http://jan.horneck.info/blog/androidhttpclientwithbasicauthentication + + public String[] GetHeaderFields(HttpURLConnection _httpConnection) { + ArrayList<String> list = new ArrayList<String>(); + + if (_httpConnection == null) return null; + + try { + Map<String, List<String>> hdrs = _httpConnection.getHeaderFields(); + Set<String> hdrKeys = hdrs.keySet(); + for (String k : hdrKeys) { + if (k != null) + list.add(k + "=" + hdrs.get(k)); + } + } catch (Exception e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + + return list.toArray(new String[list.size()]); + } + + public void Disconnect(HttpURLConnection _httpConnection) { + _httpConnection.disconnect(); + } + + public String Get(HttpURLConnection _httpConnection) { + StringBuffer sb = new StringBuffer(); + try { + _httpConnection.setRequestMethod("GET"); + + if (mAuthenticationMode == 1) { + String _credentials = mUSERNAME + ":" + mPASSWORD; + String _base64EncodedCredentials = Base64.encodeToString(_credentials.getBytes(), Base64.NO_WRAP); + _httpConnection.setRequestProperty("Authorization", "Basic " + _base64EncodedCredentials); + } + + for (int i = 0; i < listHeaderName.size(); i++) { + _httpConnection.setRequestProperty(listHeaderName.get(i), listHeaderValue.get(i)); + } + + /* optional request header */ + //client3.setRequestProperty("Content-Type", "application/json"); + /* optional request header */ + //client3.setRequestProperty("Accept", "application/json"); + int status = _httpConnection.getResponseCode(); + mResponseCode = status; + + if (status == HttpURLConnection.HTTP_OK) { + InputStream inputStream = _httpConnection.getInputStream(); + BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream)); + String inputLine; + while ((inputLine = reader.readLine()) != null) { + sb.append(inputLine); + } + inputStream.close(); + } else { + sb.append(String.valueOf(status)); + } + + + } catch (Exception e) { + Log.e("HttpURLConnection", "Get", e); + return "Error"; + } + return sb.toString(); + } + + public String Post(HttpURLConnection _httpConnection) { + + String response = ""; + String Params = ""; + mResponseCode = HttpURLConnection.HTTP_CREATED; + + try { + _httpConnection.setRequestMethod("POST"); + _httpConnection.setDoInput(true); + _httpConnection.setDoOutput(true); + + Params = getPostDataString(ValuesForPost); + _httpConnection.setFixedLengthStreamingMode(Params.getBytes().length); + + if (mAuthenticationMode == 1) { + String _credentials = mUSERNAME + ":" + mPASSWORD; + String _base64EncodedCredentials = Base64.encodeToString(_credentials.getBytes(), Base64.NO_WRAP); + _httpConnection.setRequestProperty("Authorization", "Basic " + _base64EncodedCredentials); + } + + _httpConnection.setRequestProperty("Charset", "UTF-8"); + _httpConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); + + for (int i = 0; i < listHeaderName.size(); i++) { + _httpConnection.setRequestProperty(listHeaderName.get(i), listHeaderValue.get(i)); + } + + OutputStream os = _httpConnection.getOutputStream(); + BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(os, "UTF-8")); + + writer.write(Params); + writer.flush(); + writer.close(); + + os.close(); + + int responseCode = _httpConnection.getResponseCode(); + mResponseCode = responseCode; + + if (responseCode == HttpURLConnection.HTTP_OK /*HttpsURLConnection.HTTP_OK*/) { + String line; + BufferedReader br = new BufferedReader(new InputStreamReader(_httpConnection.getInputStream())); + while ((line = br.readLine()) != null) { + response += line; + } + } else { + response = String.valueOf(responseCode); + } + + + } catch (Exception e) { + Log.e("HttpURLConnection", "Post", e); + //e.printStackTrace(); + return "Error"; + + } + + return response; + } + + public int GetResponseCode() { + return mResponseCode; + } + + //thanks to Renabor + public boolean UrlExist(String _urlString) { + HttpURLConnection client; + int status = HttpURLConnection.HTTP_NOT_FOUND; + try { + URL url = new URL(_urlString); + mUrlString = _urlString; + client = (HttpURLConnection) url.openConnection(); + client.setRequestMethod("HEAD"); + client.setConnectTimeout(mConnectTimeout); + client.setReadTimeout(mReadTimeout); + + if (mAuthenticationMode == 1) { + String _credentials = mUSERNAME + ":" + mPASSWORD; + String _base64EncodedCredentials = Base64.encodeToString(_credentials.getBytes(), Base64.NO_WRAP); + client.setRequestProperty("Authorization", "Basic " + _base64EncodedCredentials); + } + + status = client.getResponseCode(); + mResponseCode = status; + + } catch (IOException e) { + //Log.e("Error. Url not found","try 1",e); + } finally { + if (status == HttpURLConnection.HTTP_OK) { + return true; + } + } + return false; + } + + /* + private Date StringToDate(String dateString) { + //String dateString = "03/26/2012 11:49:00 AM"; + SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy hh:mm:ss aa"); + Date convertedDate = new Date(); + try { + convertedDate = dateFormat.parse(dateString); + } catch (ParseException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + return convertedDate; + } + */ + + public void SetCookieAttributeValue(HttpCookie _cookie, String _attribute, String _value) { + + HttpCookie stdCookie = (HttpCookie) _cookie; + + if (_attribute.equals("value")) stdCookie.setValue(_value); + else if (_attribute.equals("domain")) stdCookie.setDomain(_value); + else if (_attribute.equals("version")) stdCookie.setVersion(Integer.parseInt(_value)); + + else if (_attribute.equals("expirydate")) { + stdCookie.setMaxAge(Long.parseLong(_value)); //setExpiryDate(StringToDate(_value)); + } else if (_attribute.equals("path")) stdCookie.setPath(_value); + else if (_attribute.equals("comment")) stdCookie.setComment(_value); + else if (_attribute.equals("ports")) stdCookie.setSecure(false); + + //stdCookie.setPorts(new int[] {80,8080}); + } + + public String GetCookieName(HttpCookie _cookie) { + return _cookie.getName(); + } + + public void SetCookieValue(HttpCookie _cookie, String _value) { + ((HttpCookie) _cookie).setValue(_value); + cookieStore = cookieManager.getCookieStore(); + cookieStore.add(null, _cookie); + } + + + public HttpCookie GetCookieByName(String _cookieName) { + HttpCookie ret = null; + cookieStore = cookieManager.getCookieStore(); + + List<HttpCookie> l = cookieStore.getCookies(); + for (HttpCookie c : l) { + if (c.getName().equals(_cookieName)) { + ret = c; + break; + } + } + return ret; + } + + + public boolean IsExpired(HttpCookie _cookie) { + return _cookie.hasExpired(); //isExpired(new Date()); //true if the cookie has expired. + } + + public boolean IsCookiePersistent(HttpCookie _cookie) { + return _cookie.getDiscard(); //isPersistent(); //true if the cookie is Discard + } + + //----------------------------------- + + /*Overwrites the first header with the same name. + * The new header will be appended to the end of the list, + * if no header with the given name can be found. + * httpget.setHeader("Cookie", "JSESSIONID=1"); //Here i am sending the Cookie session ID + */ + + public void AddClientHeader(String _name, String _value) { + listHeaderName.add(_name); + listHeaderValue.add(_value); + } + + public void ClearClientHeader(String _name, String _value) { + listHeaderName.clear(); + listHeaderValue.clear(); + } + + /* + *Set cookies in requests + CookieManager cookieManager = CookieManager.getInstance(); + String cookie = cookieManager.getCookie(urlConnection.getURL().toString()); + if (cookie != null) { + urlConnection.setRequestProperty("Cookie", cookie); + } + */ + + public String GetStateful(String _url) { + int status = HttpURLConnection.HTTP_NOT_FOUND; + StringBuffer sb = new StringBuffer(); + String strResult = ""; + mResponseCode = HttpURLConnection.HTTP_CREATED; + + try { + URL url = new URL(_url); + client3 = (HttpURLConnection) url.openConnection(); + client3.setRequestMethod("GET"); + + if (mAuthenticationMode == 1) { + String _credentials = mUSERNAME + ":" + mPASSWORD; + String _base64EncodedCredentials = Base64.encodeToString(_credentials.getBytes(), Base64.NO_WRAP); + client3.setRequestProperty("Authorization", "Basic " + _base64EncodedCredentials); + } + + for (int i = 0; i < listHeaderName.size(); i++) { + client3.setRequestProperty(listHeaderName.get(i), listHeaderValue.get(i)); + } + + /* optional request header */ + //client3.setRequestProperty("Content-Type", "application/json"); + /* optional request header */ + //client3.setRequestProperty("Accept", "application/json"); + + status = client3.getResponseCode(); + mResponseCode = status; + + if (status == HttpURLConnection.HTTP_OK) { + InputStream inputStream = client3.getInputStream(); + BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream)); + String inputLine; + while ((inputLine = reader.readLine()) != null) { + sb.append(inputLine); + } + inputStream.close(); + } else { + sb.append(String.valueOf(status)); + } + + client3.disconnect(); + + } catch (Exception e) { + return ""; + } + return sb.toString(); + } + + + public String PostStateful(String urlString) throws Exception { + StringBuffer sb = new StringBuffer(); + StringBuilder _postData = new StringBuilder(); + mResponseCode = HttpURLConnection.HTTP_CREATED; + + for (Map.Entry<String, String> param : ValuesForPost.entrySet()) { + if (_postData.length() != 0) _postData.append('&'); + try { + _postData.append(URLEncoder.encode(param.getKey(), "UTF-8")); + _postData.append('='); + _postData.append(URLEncoder.encode(param.getValue(), "UTF-8")); + } catch (UnsupportedEncodingException e) { + //Log.e("showmessage","PostStateful UnsupportedEncodingException",e); + } + } + + String postData = _postData.toString(); + try { + URL url = new URL(urlString); + client3 = (HttpURLConnection) url.openConnection(); + client3.setRequestMethod("POST"); + client3.setDoOutput(true); + + client3.setFixedLengthStreamingMode(postData.getBytes().length); // !!!!! + //client3.setFixedLengthStreamingMode(postData.length()); + + if (mAuthenticationMode == 1) { + String _credentials = mUSERNAME + ":" + mPASSWORD; + String _base64EncodedCredentials = Base64.encodeToString(_credentials.getBytes(), Base64.NO_WRAP); + client3.setRequestProperty("Authorization", "Basic " + _base64EncodedCredentials); + } + + client3.setRequestProperty("Charset", "UTF-8"); + client3.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); + + for (int i = 0; i < listHeaderName.size(); i++) { + client3.setRequestProperty(listHeaderName.get(i), listHeaderValue.get(i)); + } + + + PrintWriter out = new PrintWriter(client3.getOutputStream()); + out.print(postData); + out.close(); + + int statusCode = client3.getResponseCode(); + mResponseCode = statusCode; + + if (statusCode == HttpURLConnection.HTTP_OK) { //OK + + //String statusLine = client3.getResponseMessage(); + Scanner inStream = new Scanner(client3.getInputStream()); + //process the stream and store it in StringBuilder + while (inStream.hasNextLine()) + sb.append(inStream.nextLine()); // response+=(inStream.nextLine()); + + inStream.close(); + + } else { + sb.append(String.valueOf(statusCode)); + } + client3.disconnect(); + + } catch (Exception e) { + //Log.e("showmessage","PostStateful Error",e); + return ""; + } + ValuesForPost.clear(); + return sb.toString(); + } + + //thanks to @renabor + public String DeleteStateful(String _stringUrl, String _value) throws Exception { + int statusCode = 0; + StringBuilder sb = new StringBuilder(); + String statusLine; + mResponseCode = HttpURLConnection.HTTP_CREATED; + try { + URL url = new URL(_stringUrl + "/" + _value); + client3 = (HttpURLConnection) url.openConnection(); + // renabor + if (mAuthenticationMode == 1) { + String _credentials = mUSERNAME + ":" + mPASSWORD; + String _base64EncodedCredentials = Base64.encodeToString(_credentials.getBytes(), Base64.NO_WRAP); + client3.setRequestProperty("Authorization", "Basic " + _base64EncodedCredentials); + } + client3.setRequestMethod("DELETE"); + statusCode = client3.getResponseCode(); + mResponseCode = statusCode; + // statusLine = client3.getResponseMessage(); + if (statusCode == HttpURLConnection.HTTP_OK) { //OK + + Scanner inStream = new Scanner(client3.getInputStream()); + //process the stream and store it in StringBuilder + while (inStream.hasNextLine()) + sb.append(inStream.nextLine()); // response+=(inStream.nextLine()); + + inStream.close(); + + } else { + sb.append(String.valueOf(statusCode)); + // Log.i("showmessage http delete error ",String.valueOf(statusCode) +" "+ statusLine); + } + client3.disconnect(); + } catch (Exception e) { + //Log.e("showmessage","DeleteStateful Error",e); + return ""; + } + return sb.toString(); + } + + /* + * AsyncTask has three generic types: + Params: An array of parameters you want to pass in to the class you create when you subclass AsyncTask. + Progress: If you override onProgressUpdate, this is the type that method returns. + Result: This is the type that doInBackground returns. + */ + + class AsyncHttpClientPostNameValueData extends AsyncTask<String, Integer, String> { + + @Override + protected String doInBackground(String... stringUrl) { + URL url; + String response = ""; + String Params; + // Create a new HttpClient and Post Header + int statusCode = 0; + //AuthScope: + //host the host the credentials apply to. May be set to null if credenticals are applicable to any host. + //port the port the credentials apply to. May be set to negative value if credenticals are applicable to any port. + try { + url = new URL(stringUrl[0]); + + client3 = (HttpURLConnection) url.openConnection(); + mResponseCode = HttpURLConnection.HTTP_CREATED; + + if (mAuthenticationMode == 1) { + String _credentials = mUSERNAME + ":" + mPASSWORD; + String _base64EncodedCredentials = Base64.encodeToString(_credentials.getBytes(), Base64.NO_WRAP); + client3.setRequestProperty("Authorization", "Basic " + _base64EncodedCredentials); + } + + client3.setReadTimeout(mReadTimeout); + client3.setConnectTimeout(mConnectTimeout); + client3.setRequestMethod("POST"); + + client3.setDoInput(true); + client3.setDoOutput(true); + + Params = getPostDataString(ValuesForPost); + client3.setFixedLengthStreamingMode(Params.getBytes().length); //Params.length + + client3.setRequestProperty("Charset", "UTF-8"); + client3.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); + + for (int i = 0; i < listHeaderName.size(); i++) { + client3.setRequestProperty(listHeaderName.get(i), listHeaderValue.get(i)); + } + + OutputStream os = client3.getOutputStream(); + BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(os, "UTF-8")); + + writer.write(Params); + + writer.flush(); + writer.close(); + os.close(); + + int responseCode = client3.getResponseCode(); + mResponseCode = responseCode; + + this.publishProgress(responseCode); + + if (responseCode == HttpURLConnection.HTTP_OK /*HttpsURLConnection.HTTP_OK*/) { + String line; + BufferedReader br = new BufferedReader(new InputStreamReader(client3.getInputStream())); + while ((line = br.readLine()) != null) { + response += line; + } + } else { + response = String.valueOf(responseCode); + } + + } catch (Exception e) { + //e.printStackTrace(); + return ""; + } + + return response; + } + + @Override + protected void onPostExecute(String content) { + controls.pOnHttpClientContentResult(pascalObj, content); + } + + @Override + protected void onProgressUpdate(Integer... params) { + super.onProgressUpdate(params); + controls.pOnHttpClientCodeResult(pascalObj, params[0].intValue()); + } + } + + class AsyncHttpClientGet extends AsyncTask<String, Integer, String> { + + @Override + protected String doInBackground(String... stringUrl) { + int status = HttpURLConnection.HTTP_NOT_FOUND; + StringBuffer sb = new StringBuffer(); + try { + URL url = new URL(stringUrl[0]); + mResponseCode = HttpURLConnection.HTTP_CREATED; + client3 = (HttpURLConnection) url.openConnection(); + client3.setRequestMethod("GET"); + + if (mAuthenticationMode == 1) { + String _credentials = mUSERNAME + ":" + mPASSWORD; + String _base64EncodedCredentials = Base64.encodeToString(_credentials.getBytes(), Base64.NO_WRAP); + client3.setRequestProperty("Authorization", "Basic " + _base64EncodedCredentials); + } + + for (int i = 0; i < listHeaderName.size(); i++) { + client3.setRequestProperty(listHeaderName.get(i), listHeaderValue.get(i)); + } + + status = client3.getResponseCode(); + mResponseCode = status; + + this.publishProgress(status); + + if (status == HttpURLConnection.HTTP_OK) { //OK + InputStream inputStream = client3.getInputStream(); + BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream)); + String inputLine; + while ((inputLine = reader.readLine()) != null) { + sb.append(inputLine); + } + inputStream.close(); + } else { + sb.append(String.valueOf(status)); + } + client3.disconnect(); + + } catch (Exception e) { + return ""; + } + + return sb.toString(); + } + + @Override + protected void onPostExecute(String content) { + controls.pOnHttpClientContentResult(pascalObj, content); + } + + @Override + protected void onProgressUpdate(Integer... params) { + super.onProgressUpdate(params); + controls.pOnHttpClientCodeResult(pascalObj, params[0].intValue()); + } + + } + + // //thanks to Freris + public void SetResponseTimeout(int _timeoutMilliseconds) { + mReadTimeout = _timeoutMilliseconds; + } + + public void SetConnectionTimeout(int _timeoutMilliseconds) { + mConnectTimeout = _timeoutMilliseconds; + } + + public int GetResponseTimeout() { + return mReadTimeout; + } + + public int GetConnectionTimeout() { + return mConnectTimeout; + } + + + //--------------------------------------------------------------------------- + // Upload File by Simon, Choi (simonsayz@naver.com) + // https://blog.naver.com/simonsayz + + // http://www.cuelogic.com/blog/android-code-to-upload-download-large-files-to-server-2 + // Test Server Code + // -------------------------------------------------------------------------- + // <html> + // <head> + // <title>Upload Test + // + // + // <% + // Dim Upload, UpForm + // Set Upload = Server.CreateObject("TABSUpload4.Upload") + // Upload.Start "E:\web\LocalUser\app\www\maxpaper" + // Set UpForm = Upload.Form("lamwFormUpload") + // UpForm.Save "E:\web\LocalUser\app\www\maxpaper\file", False + // Response.Write "FileName:" & UpForm.FileName & "
      " + // Set Upload = Nothing + // %> + // + // + // + + private class UploadTask extends AsyncTask { + + private Context context; + private PowerManager.WakeLock mWakeLock; + private String rst = ""; + + public UploadTask(Context context) { + this.context = context; + } + + @Override + protected void onPreExecute() { + super.onPreExecute(); + PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE); + mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, getClass().getName()); + mWakeLock.acquire(); + } + + @Override + protected String doInBackground(String... sUrl) { + FileInputStream input = null; + DataOutputStream output = null; + HttpURLConnection conn = null; + rst = ""; + try { + URL url = new URL(sUrl[0]); + conn = (HttpURLConnection) url.openConnection(); + conn.setDoInput(true); + conn.setDoOutput(true); + conn.setUseCaches(false); + + conn.setRequestMethod("POST"); + conn.setRequestProperty("Connection", "Keep-Alive"); + conn.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + LConst.Http_Boundary); + // + output = new DataOutputStream(conn.getOutputStream()); + // + output.writeBytes("--" + LConst.Http_Boundary + "\r\n"); + + if (formDataName.equals("lamwFormUpload")) { + output.writeBytes("Content-Disposition: form-data; name=\"lamwFormUpload\"; " + + "filename=\"" + localFileText + "\"\r\n"); + } else { + output.writeBytes("Content-Disposition: form-data; name=\"" + formDataName + "\"; " + + "filename=\"" + localFileText + "\"\r\n"); + } + output.writeBytes("Content-Type: text/plain" + "\r\n\r\n"); + // + input = new FileInputStream(new File(localFileText)); + + int totalSize = input.available(); + int total = 0; + int totalSav = 0; + int curUpload = 0; + int maxBufferSize = 1 * 4096; + int bytesRead; + int bytesAvailable = input.available(); + int bufferSize = Math.min(bytesAvailable, maxBufferSize); + byte buffer[] = new byte[4096]; + + // Read File + bytesRead = input.read(buffer, 0, bufferSize); + try { + while (bytesRead > 0) { + try { + output.write(buffer, 0, bufferSize); + } catch (OutOfMemoryError e) { + return ("outOfMemory"); + } + bytesAvailable = input.available(); + + // current upload + curUpload = (totalSize - bytesAvailable); + if ((curUpload - totalSav) >= (100 / totalSize)) { + publishProgress((int) ((curUpload * 100 / totalSize))); + totalSav = total; + } + + bufferSize = Math.min(bytesAvailable, maxBufferSize); + bytesRead = input.read(buffer, 0, bufferSize); + } + } catch (Exception e) { + return ("error"); + } + // + output.writeBytes("\r\n"); + output.writeBytes("--" + LConst.Http_Boundary + "--" + "\r\n"); + + // Responses from the server (code and message) + serverResponseCode = conn.getResponseCode(); + //serverResponseMessage = conn.getResponseMessage(); + Log.d(LConst.LogHeader, "Server Connection Status Code " + " " + serverResponseCode); + Log.d(LConst.LogHeader, "Server Connection Status Message " + serverResponseMessage); + + input.close(); + output.flush(); + + InputStream is = conn.getInputStream(); + int ch; + StringBuffer b = new StringBuffer(); + while ((ch = is.read()) != -1) { + b.append((char) ch); + } + + String response = b.toString(); + Log.d(LConst.LogHeader, "Server Result: " + response); + serverResponseMessage = "[Connection Status: " + serverResponseMessage + "] Result: " + response; + + } catch (Exception e) { + return e.toString(); + } finally { + try { + if ((output != null) && (input != null)) { + rst = localFileText; + } + if (output != null) output.close(); + if (input != null) input.close(); + } catch (IOException ignored) { + } + if (conn != null) conn.disconnect(); + } + return null; + } + + @Override + protected void onProgressUpdate(Integer... progress) { + super.onProgressUpdate(progress); + // + controls.pOnHttpClientUploadProgress(pascalObj, progress[0].longValue()); + } + + @Override + protected void onPostExecute(String result) { + mWakeLock.release(); + controls.pOnHttpClientUploadFinished(pascalObj, serverResponseCode, serverResponseMessage, localFileText); + } + + } + + // Sample File /data/data/com.kredix/files/alex.jpg + public void UploadFile(String _url, String _fullFileName, String _uploadFormName) { + urlText = _url; + localFileText = _fullFileName; + formDataName = _uploadFormName; + // + final UploadTask uploadTask = new UploadTask(controls.activity); + uploadTask.execute(_url); + } + + public void UploadFile(String _url, String _fullFileName) { + urlText = _url; + localFileText = _fullFileName; + // + final UploadTask uploadTask = new UploadTask(controls.activity); + uploadTask.execute(_url); + } + + public void SetUploadFormName(String _uploadFormName) { + formDataName = _uploadFormName; + } + + public void SetUnvaluedNameData(String _unvaluedName) { + unvaluedName = _unvaluedName; + } + + public void SetEncodeValueData(boolean _value) { + encodeValue = _value; + } + + public void PostSOAPDataAsync(String _SOAPData, String _stringUrl) { + // create instance of Random class + Random rand = new Random(); + //Generate random integers in range 0 to 999 + int rand_int1 = rand.nextInt(1000); + int len = _SOAPData.length(); + String disregard = "SOAPBODY"+len+""+rand_int1 ; //disregard nameData 'SOAPBODY' + boolean saveEncodeState = encodeValue; + unvaluedName = disregard; + encodeValue =false; //not encode ValueData + AddValueForPost2(disregard,_SOAPData); + PostNameValueDataAsync(_stringUrl); //http://192.168.1.3/soap/IOSW + encodeValue = saveEncodeState; //not encode ValueData + unvaluedName = "SOAPBODY"; + } + +} + diff --git a/SmartFritz/src/org/muctec/smartfritz/jPanel.java b/SmartFritz/src/org/muctec/smartfritz/jPanel.java new file mode 100644 index 0000000000000000000000000000000000000000..f2ca640ab992c3e5021bff3417fd7f122337605b --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jPanel.java @@ -0,0 +1,477 @@ +package org.muctec.smartfritz; + +import android.graphics.Color; +import android.graphics.PorterDuff.Mode; +import android.graphics.drawable.ColorDrawable; +import android.graphics.drawable.Drawable; +import android.graphics.drawable.PaintDrawable; +import android.os.Build; +import android.util.Log; +import android.view.GestureDetector; +import android.view.MotionEvent; +import android.view.ScaleGestureDetector; +import android.view.ScaleGestureDetector.SimpleOnScaleGestureListener; +import android.view.View; +import android.view.ViewGroup; +import android.view.animation.AccelerateInterpolator; +import android.view.animation.AlphaAnimation; +import android.view.animation.Animation; +import android.view.animation.DecelerateInterpolator; +import android.view.animation.TranslateAnimation; +import android.widget.RelativeLayout; + +public class jPanel extends RelativeLayout { + //Java-Pascal Interface + private long PasObj = 0; // Pascal Obj + private Controls controls = null; // Control Class for Event + + private jCommons LAMWCommon; + + private GestureDetector gDetect; + private ScaleGestureDetector scaleGestureDetector; + + private float mScaleFactor = 1.0f; + private float MIN_ZOOM = 0.25f; + private float MAX_ZOOM = 4.0f; + + int mRadius = 20; + + private int animationDurationIn = 1500; + private int animationDurationOut = 1500; + private int animationMode = 0; //none, fade, LeftToRight, RightToLeft + + //Constructor + public jPanel(android.content.Context context, Controls ctrls,long pasobj ) { + super(context); + + PasObj = pasobj; + controls = ctrls; + + LAMWCommon = new jCommons(this,context, PasObj); + + gDetect = new GestureDetector(controls.activity, new GestureListener()); + + scaleGestureDetector = new ScaleGestureDetector(controls.activity, new simpleOnScaleGestureListener()); + } + + @Override + protected void onSizeChanged(int w, int h, int oldw, int oldh) { + super.onSizeChanged(w, h, oldw, oldh); + + // Change the size and update the layout + controls.formNeedLayout = true; + controls.appLayout.requestLayout(); + } + + public void setLeftTopRightBottomWidthHeight(int _left, int _top, int _right, int _bottom, int _w, int _h) { + String tag = ""+_left+"|"+_top+"|"+_right+"|"+_bottom; + this.setTag(tag); + LAMWCommon.setLeftTopRightBottomWidthHeight(_left,_top,_right,_bottom,_w,_h); + } + + public void setLParamWidth(int _w) { + LAMWCommon.setLParamWidth(_w); + } + + public void setLParamHeight(int _h) { + LAMWCommon.setLParamHeight(_h); + } + + public void setLGravity(int _g) { + LAMWCommon.setLGravity(_g); + } + + public void setLWeight(float _w) { + LAMWCommon.setLWeight(_w); + } + + public int getLParamHeight() { + return LAMWCommon.getLParamHeight(); + } + + public int getLParamWidth() { + return LAMWCommon.getLParamWidth(); + } + + public void resetLParamsRules() { //clearLayoutAll + LAMWCommon.clearLayoutAll(); + } + + public void addLParamsAnchorRule(int rule) { + LAMWCommon.addLParamsAnchorRule(rule); + } + + public void addLParamsParentRule(int rule) { + LAMWCommon.addLParamsParentRule(rule); + } + + public void setLayoutAll(int idAnchor) { + LAMWCommon.setLayoutAll(idAnchor); + } + + //GetView!-android.widget.RelativeLayout + public RelativeLayout getView() { + return this; + } + + public void SetViewParent( android.view.ViewGroup _viewgroup ) { + LAMWCommon.setParent(_viewgroup); + } + + public ViewGroup GetParent() { //TODO Pascal .. done! + return LAMWCommon.getParent(); + } + + // Free object except Self, Pascal Code Free the class. + public void Free() { + LAMWCommon.free(); + } + + public void RemoveFromViewParent() { + LAMWCommon.removeFromViewParent(); + } + + @Override + public boolean onTouchEvent(MotionEvent event) { + return super.onTouchEvent(event); + } + + @Override + public boolean dispatchTouchEvent(MotionEvent e) { + super.dispatchTouchEvent(e); + this.gDetect.onTouchEvent(e); + this.scaleGestureDetector.onTouchEvent(e); + return true; + } + + //ref1. http://code.tutsplus.com/tutorials/android-sdk-detecting-gestures--mobile-21161 + //ref2. http://stackoverflow.com/questions/9313607/simpleongesturelistener-never-goes-in-to-the-onfling-method + //ref3. http://x-tutorials.blogspot.com.br/2011/11/detect-pinch-zoom-using.html + private class GestureListener extends GestureDetector.SimpleOnGestureListener { + + private static final int SWIPE_MIN_DISTANCE = 60; + private static final int SWIPE_THRESHOLD_VELOCITY = 100; + + @Override + public boolean onDown(MotionEvent event) { + //Log.i("Down", "------------"); + controls.pOnDown(PasObj, Const.Click_Default); + return true; + } + + @Override + public boolean onSingleTapUp(MotionEvent e) { + //Log.i("Click", "------------"); + controls.pOnClick(PasObj, Const.Click_Default); + return true; + } + + @Override + public boolean onDoubleTap(MotionEvent e) { + //Log.i("DoubleTap", "------------"); + controls.pOnDoubleClick(PasObj, Const.Click_Default); + return true; + } + + @Override + public void onLongPress(MotionEvent e) { + //Log.i("LongPress", "------------"); + controls.pOnLongClick(PasObj, Const.Click_Default); + } + + @Override + public boolean onFling(MotionEvent event1, MotionEvent event2, float velocityX, float velocityY) { + + if(event1.getX() - event2.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) { + controls.pOnFlingGestureDetected(PasObj, 0); //onRightToLeft; + return true; + } else if (event2.getX() - event1.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) { + controls.pOnFlingGestureDetected(PasObj, 1);//onLeftToRight(); + return true; + } + if(event1.getY() - event2.getY() > SWIPE_MIN_DISTANCE && Math.abs(velocityY) > SWIPE_THRESHOLD_VELOCITY) { + controls.pOnFlingGestureDetected(PasObj, 2);//onBottomToTop(); + return false; + } else if (event2.getY() - event1.getY() > SWIPE_MIN_DISTANCE && Math.abs(velocityY) > SWIPE_THRESHOLD_VELOCITY) { + controls.pOnFlingGestureDetected(PasObj, 3); //onTopToBottom(); + return false; + } + return false; + } + } + + + //ref. http://vivin.net/2011/12/04/implementing-pinch-zoom-and-pandrag-in-an-android-view-on-the-canvas/ + private class simpleOnScaleGestureListener extends SimpleOnScaleGestureListener { + + @Override + public boolean onScale(ScaleGestureDetector detector) { + mScaleFactor *= detector.getScaleFactor(); + mScaleFactor = Math.max(MIN_ZOOM, Math.min(mScaleFactor, MAX_ZOOM)); + // Log.i("tag", "onScale = "+ mScaleFactor); + controls.pOnPinchZoomGestureDetected(PasObj, mScaleFactor, 1); //scalefactor->float + return true; + } + + @Override + public boolean onScaleBegin(ScaleGestureDetector detector) { + controls.pOnPinchZoomGestureDetected(PasObj, detector.getScaleFactor(), 0); //scalefactor->float + //Log.i("tag", "onScaleBegin"); + return true; + } + + @Override + public void onScaleEnd(ScaleGestureDetector detector) { + controls.pOnPinchZoomGestureDetected(PasObj, detector.getScaleFactor(), 2); //scalefactor->float + //Log.i("tag", "onScaleEnd"); + super.onScaleEnd(detector); + } + + } + + public void SetMinZoomFactor(float _minZoomFactor) { + MIN_ZOOM = _minZoomFactor; + } + + public void SetMaxZoomFactor(float _maxZoomFactor) { + MAX_ZOOM = _maxZoomFactor; + } + + public void CenterInParent() { + LAMWCommon.CenterInParent(); + } + + public void MatchParent() { + LAMWCommon.MatchParent(); + } + + public void WrapParent() { + LAMWCommon.WrapParent(); + } + + public void SetRoundCorner() { + if (this != null) { + PaintDrawable shape = new PaintDrawable(); + shape.setCornerRadius(mRadius); + int color = Color.TRANSPARENT; + Drawable background = this.getBackground(); + if (background instanceof ColorDrawable) { + color = ((ColorDrawable)this.getBackground()).getColor(); + shape.setColorFilter(color, Mode.SRC_ATOP); + //[ifdef_api16up] + if(Build.VERSION.SDK_INT >= 16) + this.setBackground((Drawable)shape); + //[endif_api16up] + } + } + } + + public void SetRadiusRoundCorner(int _radius) { + mRadius = _radius; + } + + //You can basically set it from anything between 0(fully transparent) to 255 (completely opaque) + public void SetBackgroundAlpha(int _alpha) { + this.getBackground().setAlpha(_alpha); //0-255 + } + + public void SetMarginLeftTopRightBottom(int _left, int _top, int _right, int _bottom) { + LAMWCommon.setMarginLeftTopRightBottom( _left, _top, _right,_bottom); + } + + public void AddView(View _view) { + LAMWCommon.AddView(_view); + } + + public void SetFitsSystemWindows(boolean _value) { + LAMWCommon.setFitsSystemWindows(_value); + } + + public void RemoveView(View _view) { + this.removeView(_view); + } + + public void RemoveAllViews() { + this.removeAllViews(); + } + + public int GetChildCount() { + return this.getChildCount(); + } + + public void BringChildToFront(View _view) { + this.bringChildToFront( _view); + if (Build.VERSION.SDK_INT < 19 ) { + this.requestLayout(); + this.invalidate(); + } + } + + /* + Change the view's z order in the tree, so it's on top of other sibling views. + Prior to KITKAT/4.4/Api 19 this method should be followed by calls to requestLayout() and invalidate() + on the view's parent to force the parent to redraw with the new child ordering. + */ + public void BringToFront() { + this.bringToFront(); + if (Build.VERSION.SDK_INT < 19 ) { + ViewGroup parent = LAMWCommon.getParent(); + if (parent!= null) { + parent.requestLayout(); + parent.invalidate(); + } + } + + //fadeOutAnimation(layout, 2000); + //fadeInAnimation(layout, 2000); + + if ( (animationDurationIn > 0) && (animationMode != 0) ) { + switch (animationMode) { + case 1: { + fadeInAnimation(this, animationDurationIn); + break; + } + case 2: { //RightToLeft + slidefromRightToLeft(this, animationDurationIn); + break; + } + case 3: { //RightToLeft + slidefromLeftToRight3(this, animationDurationIn); + break; + } + } + } + + if (animationMode == 0) + this.setVisibility(android.view.View.VISIBLE); + } + + public void SetVisibilityGone() { + LAMWCommon.setVisibilityGone(); + } + + + public void SetAnimationDurationIn(int _animationDurationIn) { + animationDurationIn = _animationDurationIn; + } + + public void SetAnimationDurationOut(int _animationDurationOut) { + animationDurationOut = _animationDurationOut; + } + + public void SetAnimationMode(int _animationMode) { + animationMode = _animationMode; + } + + /// https://www.codexpedia.com/android/android-fade-in-and-fade-out-animation-programatically/ + private void fadeInAnimation(final View view, int duration) { + Animation fadeIn = new AlphaAnimation(0, 1); + fadeIn.setInterpolator(new DecelerateInterpolator()); + fadeIn.setDuration(duration); + fadeIn.setAnimationListener(new Animation.AnimationListener() { + @Override + public void onAnimationStart(Animation animation) { + } + @Override + public void onAnimationEnd(Animation animation) { + view.setVisibility(View.VISIBLE); + } + @Override + public void onAnimationRepeat(Animation animation) { + } + }); + + view.startAnimation(fadeIn); + } + + private void fadeOutAnimation(final View view, int duration) { + Animation fadeOut = new AlphaAnimation(1, 0); + fadeOut.setInterpolator(new AccelerateInterpolator()); + fadeOut.setStartOffset(duration); + fadeOut.setDuration(duration); + fadeOut.setAnimationListener(new Animation.AnimationListener() { + @Override + public void onAnimationStart(Animation animation) { + } + @Override + public void onAnimationEnd(Animation animation) { + view.setVisibility(View.INVISIBLE); + } + @Override + public void onAnimationRepeat(Animation animation) { + } + }); + view.startAnimation(fadeOut); + } + + //https://stackoverflow.com/questions/20696801/how-to-make-a-right-to-left-animation-in-a-layout/20696822 + private void slidefromRightToLeft(View view, long duration) { + TranslateAnimation animate; + if (view.getHeight() == 0) { + //controls.appLayout.getHeight(); // parent layout + animate = new TranslateAnimation(controls.appLayout.getWidth(), + 0, 0, 0); //(xFrom,xTo, yFrom,yTo) + } else { + animate = new TranslateAnimation(view.getWidth(),0, 0, 0); // View for animation + } + animate.setDuration(duration); + animate.setFillAfter(true); + view.startAnimation(animate); + view.setVisibility(View.VISIBLE); // Change visibility VISIBLE or GONE + } + + private void slidefromLeftToRight(View view, long duration) { //try + + TranslateAnimation animate; //(0.0f, 0.0f, 1500.0f, 0.0f); + if (view.getHeight() == 0) { + //controls.appLayout.getHeight(); // parent layout + animate = new TranslateAnimation(0, + controls.appLayout.getWidth(), 0, 0); //(xFrom,xTo, yFrom,yTo) + } else { + animate = new TranslateAnimation(0,view.getWidth(), 0, 0); // View for animation + } + + animate.setDuration(duration); + animate.setFillAfter(true); + view.startAnimation(animate); + view.setVisibility(View.VISIBLE); // Change visibility VISIBLE or GONE + } + + + private void slidefromRightToLeft3(View view, long duration) { + TranslateAnimation animate; //(0.0f, 0.0f, 1500.0f, 0.0f); + if (view.getHeight() == 0) { + //controls.appLayout.getHeight(); // parent layout + animate = new TranslateAnimation(0, -controls.appLayout.getWidth(), + 0, 0); //(xFrom,xTo, yFrom,yTo) + } else { + animate = new TranslateAnimation(0,-controls.appLayout.getWidth(), + 0, 0); // View for animation + } + + animate.setDuration(duration); + animate.setFillAfter(true); + view.startAnimation(animate); + view.setVisibility(View.VISIBLE); // Change visibility VISIBLE or GONE + } + + private void slidefromLeftToRight3(View view, long duration) { //try + + TranslateAnimation animate; //(0.0f, 0.0f, 1500.0f, 0.0f); + if (view.getHeight() == 0) { + //controls.appLayout.getHeight(); // parent layout + animate = new TranslateAnimation(-controls.appLayout.getWidth(), + 0, 0, 0); //(xFrom,xTo, yFrom,yTo) + } else { + animate = new TranslateAnimation(-controls.appLayout.getWidth(),0, 0, 0); // View for animation + } + + animate.setDuration(duration); + animate.setFillAfter(true); + view.startAnimation(animate); + view.setVisibility(View.VISIBLE); // Change visibility VISIBLE or GONE + } + +} + + diff --git a/SmartFritz/src/org/muctec/smartfritz/jPreferences.java b/SmartFritz/src/org/muctec/smartfritz/jPreferences.java new file mode 100644 index 0000000000000000000000000000000000000000..0686eba078f5e64093a4843aa978381429a246ae --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jPreferences.java @@ -0,0 +1,107 @@ +package org.muctec.smartfritz; + +import android.content.Context; +import android.content.SharedPreferences; +import android.preference.PreferenceManager; + +/*Draft java code by "Lazarus Android Module Wizard" [8/13/2014 1:43:12]*/ +/*https://github.com/jmpessoa/lazandroidmodulewizard*/ +/*jControl template*/ + +//Reviewed by TR3E on 09/02/2019 + +public class jPreferences /*extends ...*/ { + + private long pascalObj = 0; // Pascal Object + private Controls controls = null; // Control Class -> Java/Pascal Interface ... + private Context context = null; + + private SharedPreferences mPreferences; + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + + public jPreferences(Controls _ctrls, long _Self, boolean _IsShared) { //Add more others news "_xxx" params if needed! + //super(_ctrls.activity); + context = _ctrls.activity; + pascalObj = _Self; + controls = _ctrls; + + if (_IsShared) { + mPreferences = PreferenceManager.getDefaultSharedPreferences(context); + } + else { + mPreferences = _ctrls.activity.getPreferences(Context.MODE_PRIVATE); + } + + } + + public void jFree() { + //free local objects... + mPreferences = null; + } + + //write others [public] methods code here...... + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + + public int GetIntData(String _key, int _defaultValue) { + + if( mPreferences != null ) + return mPreferences.getInt(_key, _defaultValue); + else + return _defaultValue; + + } + + public void SetIntData(String _key, int _value) { + if( mPreferences == null ) return; + + SharedPreferences.Editor edt = mPreferences.edit(); + + if( edt != null ){ + edt.putInt(_key, _value); + edt.commit(); + } + } + + public String GetStringData(String _key, String _defaultValue) { + + if( mPreferences != null ) + return mPreferences.getString(_key, _defaultValue); + else + return _defaultValue; + + } + + public void SetStringData(String _key, String _value) { + + if( mPreferences == null ) return; + + SharedPreferences.Editor edt = mPreferences.edit(); + + if( edt != null ){ + edt.putString(_key, _value); + edt.commit(); + } + } + + public boolean GetBoolData(String _key, boolean _defaultValue) { + + if( mPreferences != null ) + return mPreferences.getBoolean(_key, _defaultValue); + else + return _defaultValue; + } + + public void SetBoolData(String _key, boolean _value) { + + if( mPreferences == null ) return; + + SharedPreferences.Editor edt = mPreferences.edit(); + + if( edt != null ){ + edt.putBoolean(_key, _value); + edt.commit(); + } + } +} + diff --git a/SmartFritz/src/org/muctec/smartfritz/jSwitchButton.java b/SmartFritz/src/org/muctec/smartfritz/jSwitchButton.java new file mode 100644 index 0000000000000000000000000000000000000000..4d7b778ad4c11c51bfe45010892e01b2a611e211 --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jSwitchButton.java @@ -0,0 +1,145 @@ +package org.muctec.smartfritz; + +import java.lang.reflect.Field; +import android.content.Context; +import android.os.Build; +import android.util.Log; +import android.view.View; +import android.view.ViewGroup; +import android.widget.CompoundButton; +import android.widget.Switch; +import android.view.Gravity; + +/*Draft java code by "Lazarus Android Module Wizard" [1/8/2015 22:10:35]*/ +/*https://github.com/jmpessoa/lazandroidmodulewizard*/ +/*jVisualControl template*/ + +public class jSwitchButton extends Switch /*API 14*/ { //please, fix what GUI object will be extended! + + private long pascalObj = 0; // Pascal Object + private Controls controls = null; // Control Class for events + private jCommons LAMWCommon; + + private Context context = null; + private OnCheckedChangeListener onClickListener ; // click event + private Boolean enabled = false; // click-touch not enabled! + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + + public jSwitchButton(Controls _ctrls, long _Self) { //Add more others news "_xxx"p arams if needed! + super(_ctrls.activity); + context = _ctrls.activity; + pascalObj = _Self; + controls = _ctrls; + LAMWCommon = new jCommons(this,context,pascalObj); + + onClickListener = new OnCheckedChangeListener(){ + /*.*/public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { //please, do not remove /*.*/ mask for parse invisibility! + if (enabled) { + controls.pOnChangeSwitchButton(pascalObj, isChecked); //JNI event onClick! + } + }; + }; + setOnCheckedChangeListener(onClickListener); + } //end constructor + + public void jFree() { + setOnClickListener(null); + LAMWCommon.free(); + } + + public void SetViewParent(ViewGroup _viewgroup) { + LAMWCommon.setParent(_viewgroup); + } + + public void RemoveFromViewParent() { + LAMWCommon.removeFromViewParent(); + } + + public View GetView() { + return this; + } + + public void SetLParamWidth(int _w) { + LAMWCommon.setLParamWidth(_w); + } + + public void SetLParamHeight(int _h) { + LAMWCommon.setLParamHeight(_h); + } + + public void SetLGravity(int _g) { + LAMWCommon.setLGravity(_g); + } + + public void setLWeight(float _w) { + LAMWCommon.setLWeight(_w); + } + + public void SetLeftTopRightBottomWidthHeight(int _left, int _top, int _right, int _bottom, int _w, int _h) { + String tag = ""+_left+"|"+_top+"|"+_right+"|"+_bottom; + this.setTag(tag); //nedd by jsRecyclerView.java + LAMWCommon.setLeftTopRightBottomWidthHeight(_left,_top,_right,_bottom,_w,_h); + } + + public void AddLParamsAnchorRule(int _rule) { + LAMWCommon.addLParamsAnchorRule(_rule); + } + + public void AddLParamsParentRule(int _rule) { + LAMWCommon.addLParamsParentRule(_rule); + } + + public void SetLayoutAll(int _idAnchor) { + LAMWCommon.setLayoutAll(_idAnchor); + } + + public void ClearLayoutAll() { + LAMWCommon.clearLayoutAll(); + } + + //write others [public] methods code here...... + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + public void SetTextOff(String _caption) { + this.setTextOff(_caption); + } + + public void SetTextOn(String _caption) { + this.setTextOn(_caption); + } + + public void SetChecked(boolean _state) { + this.setChecked(_state); + } + + public void Toggle() { + this.toggle(); + } + + public boolean IsChecked(){ + return this.isChecked(); + } + + public void SetThumbIcon(String _thumbIconIdentifier) { //Api 16 + //[ifdef_api16up] + if (Build.VERSION.SDK_INT >= 16) { + this.setThumbResource(controls.GetDrawableResourceId(_thumbIconIdentifier)); + } + //[endif_api14up] + } + + public void DispatchOnToggleEvent(boolean _value) { + enabled = _value; + } + + /* + public void SetShowText(boolean _state) { //Api 21 + //[ifdef_api21up] + if (Build.VERSION.SDK_INT >= 21) { + this.setShowText(_state); + }//[endif_api21up] + } + */ + +} //end class + diff --git a/SmartFritz/src/org/muctec/smartfritz/jTextView.java b/SmartFritz/src/org/muctec/smartfritz/jTextView.java new file mode 100644 index 0000000000000000000000000000000000000000..846c9226d2785768f3b78f211a42ed00c097393f --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jTextView.java @@ -0,0 +1,501 @@ +package org.muctec.smartfritz; + +import java.lang.reflect.Field; + +import android.content.ClipData; +import android.content.ClipboardManager; +import android.content.Context; +import android.graphics.Bitmap; +import android.graphics.Canvas; +import android.graphics.Color; +import android.graphics.LinearGradient; +import android.graphics.Paint; +import android.graphics.Path; +import android.graphics.Point; +import android.graphics.Typeface; +import android.graphics.PorterDuff.Mode; +import android.graphics.RadialGradient; +import android.graphics.Shader; +import android.graphics.SweepGradient; +import android.graphics.drawable.BitmapDrawable; +import android.graphics.drawable.ColorDrawable; +import android.graphics.drawable.Drawable; +import android.graphics.drawable.PaintDrawable; +import android.os.Build; +import android.text.method.LinkMovementMethod; +import android.text.Html; +import android.text.TextUtils.TruncateAt; +//import android.text.util.Linkify; +import android.text.method.ScrollingMovementMethod; +import android.util.Log; +import android.util.TypedValue; +import android.view.View; +import android.view.ViewGroup; +import android.view.Gravity; +import android.widget.TextView; + +public class jTextView extends TextView { + //Java-Pascal Interface + private Controls controls = null; // Control Class for Event + private jCommons LAMWCommon; + + private OnClickListener onClickListener; + private OnLongClickListener onLongClickListener; + + private Boolean mEnabled = true; + + float mTextSize = 0; + int mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; + + private ClipboardManager mClipBoard = null; + private ClipData mClipData = null; + private int mRadius = 20; + + int mTextAlignment; + + public jTextView(android.content.Context context, + Controls ctrls,long pasobj ) { + super(context); + controls = ctrls; + LAMWCommon = new jCommons(this,context,pasobj); + + mClipBoard = (ClipboardManager) controls.activity.getSystemService(Context.CLIPBOARD_SERVICE); + + onClickListener = new OnClickListener() { + public void onClick(View view) { + if (mEnabled) { + controls.pOnClick(LAMWCommon.getPasObj(), Const.Click_Default); + } + }; + }; + + setOnClickListener(onClickListener); + + onLongClickListener = new OnLongClickListener() { + + @Override + public boolean onLongClick(View arg0) { + // TODO Auto-generated method stub + if (mEnabled) { + controls.pOnLongClick(LAMWCommon.getPasObj(), Const.Click_Default); + } + return false; //true if the callback consumed the long click, false otherwise. + } + + }; + setOnLongClickListener(onLongClickListener); + + } + + //Free object except Self, Pascal Code Free the class. + public void Free() { + this.setOnKeyListener(null); + this.setText(""); + LAMWCommon.free(); + } + + public long GetPasObj() { + return LAMWCommon.getPasObj(); + } + + public void SetViewParent(ViewGroup _viewgroup ) { + LAMWCommon.setParent(_viewgroup); + } + + public ViewGroup GetParent() { + return LAMWCommon.getParent(); + } + + public void RemoveFromViewParent() { + LAMWCommon.removeFromViewParent(); + } + + public void SetLeftTopRightBottomWidthHeight(int left, int top, int right, int bottom, int w, int h) { + String tag = ""+left+"|"+top+"|"+right+"|"+bottom; + this.setTag(tag); ////nedd by jsRecyclerView.java + LAMWCommon.setLeftTopRightBottomWidthHeight(left,top,right,bottom,w,h); + } + + public void SetLParamWidth(int w) { + LAMWCommon.setLParamWidth(w); + } + + public void SetLParamHeight(int h) { + LAMWCommon.setLParamHeight(h); + } + + public int GetLParamHeight() { + return LAMWCommon.getLParamHeight(); + } + + public int GetLParamWidth() { + return LAMWCommon.getLParamWidth(); + } + + public void SetLGravity(int _g) { + LAMWCommon.setLGravity(_g); + } + + public void SetLWeight(float _w) { + LAMWCommon.setLWeight(_w); + } + + public void AddLParamsAnchorRule(int rule) { + LAMWCommon.addLParamsAnchorRule(rule); + } + + public void AddLParamsParentRule(int rule) { + LAMWCommon.addLParamsParentRule(rule); + } + + public void SetLayoutAll(int idAnchor) { + LAMWCommon.setLayoutAll(idAnchor); + } + + public void ClearLayoutAll() { //TODO Pascal + LAMWCommon.clearLayoutAll(); + } + + public View GetView() { + return this; + } + + /* + //TTextAlignment = (alLeft, alCenter, alRight); //Pascal + public void SetTextAlignment(int _alignment) { + mTextAlignment = _alignment; + switch(mTextAlignment) { + case 0: this.setGravity(Gravity.LEFT); break; + case 1: this.setGravity(Gravity.CENTER_HORIZONTAL); break; + case 2: this.setGravity(Gravity.RIGHT); break; + } + } + + */ + + //LORDMAN 2013-08-13 + public void SetTextAlignment( int align ) { + switch ( align ) { + //[ifdef_api14up] + case 0 : { setGravity( Gravity.START ); }; break; + case 1 : { setGravity( Gravity.END ); }; break; + //[endif_api14up] + + /* //[endif_api14up] + case 0 : { setGravity( Gravity.LEFT ); }; break; + case 1 : { setGravity( Gravity.RIGHT ); }; break; + //[ifdef_api14up] */ + + case 2 : { setGravity( Gravity.CENTER_HORIZONTAL ); }; break; + + //[ifdef_api14up] + default : { setGravity( Gravity.START ); }; break; + //[endif_api14up] + + /* //[endif_api14up] + default : { setGravity( Gravity.LEFT ); }; break; + //[ifdef_api14up] */ + + } + } + public void CopyToClipboard() { + mClipData = ClipData.newPlainText("text", this.getText().toString()); + mClipBoard.setPrimaryClip(mClipData); + } + + public void PasteFromClipboard() { + ClipData cdata = mClipBoard.getPrimaryClip(); + ClipData.Item item = cdata.getItemAt(0); + this.setText(item.getText().toString()); + } + + public void SetEnabled( boolean value ) { + mEnabled = value; + this.setEnabled(value); + } + + public void SetTextTypeFace(int _typeface) { + this.setTypeface(null, _typeface); + } + + public void Append(String _txt) { + this.append( _txt); + } + + public void AppendLn(String _txt) { + this.append( _txt+ "\n"); + } + + public void AppendTab() { + this.append("\t"); + } + + public void SetFontAndTextTypeFace(int fontFace, int fontStyle) { + Typeface t = null; + switch (fontFace) { + case 0: t = Typeface.DEFAULT; break; + case 1: t = Typeface.SANS_SERIF; break; + case 2: t = Typeface.SERIF; break; + case 3: t = Typeface.MONOSPACE; break; + } + this.setTypeface(t, fontStyle); + } + + public void SetTextSize(float size) { + mTextSize = size; + String t = this.getText().toString(); + this.setTextSize(mTextSizeTypedValue, mTextSize); + this.setText(t); + } + + //TTextSizeTypedValue =(tsDefault, tsPixels, tsDIP, tsMillimeters, tsPoints, tsScaledPixel); + public void SetFontSizeUnit(int _unit) { + switch (_unit) { + case 0: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; break; //default + case 1: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_PX; break; + case 2: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_DIP; break; + case 3: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_MM; break; + case 4: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_PT; break; + case 5: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; break; + } + String t = this.getText().toString(); + this.setTextSize(mTextSizeTypedValue, mTextSize); + this.setText(t); + } + + @Override + protected void dispatchDraw(Canvas canvas) { + //DO YOUR DRAWING ON UNDER THIS VIEWS CHILDREN + controls.pOnBeforeDispatchDraw(LAMWCommon.getPasObj(), canvas, 1); //event handle by pascal side + super.dispatchDraw(canvas); + //DO YOUR DRAWING ON TOP OF THIS VIEWS CHILDREN + controls.pOnAfterDispatchDraw(LAMWCommon.getPasObj(), canvas, 1); //event handle by pascal side + + if (!mEnabled) this.setEnabled(false); + } + + public void SetCompoundDrawables(Bitmap _image, int _side) { + Drawable d = new BitmapDrawable(controls.activity.getResources(), _image); + + // by TR3E + if( d == null ){ + this.setCompoundDrawables(null, null, null, null); + return; + } + + int h = d.getIntrinsicHeight(); + int w = d.getIntrinsicWidth(); + d.setBounds( 0, 0, w, h ); + + switch(_side) { + case 0: this.setCompoundDrawables(d, null, null, null); break; //left + case 1: this.setCompoundDrawables(null, null, d, null); break; //right + case 2: this.setCompoundDrawables(null, d, null, null); break; //above + case 3: this.setCompoundDrawables(null, null, null, d); + } + } + + public void SetCompoundDrawables(String _imageResIdentifier, int _side) { + + Drawable d = controls.GetDrawableResourceById(controls.GetDrawableResourceId(_imageResIdentifier)); + + // by TR3E + if( d == null ){ + this.setCompoundDrawables(null, null, null, null); + return; + } + + int h = d.getIntrinsicHeight(); + int w = d.getIntrinsicWidth(); + d.setBounds( 0, 0, w, h ); + + switch(_side) { + case 0: this.setCompoundDrawables(d, null, null, null); break; //left + case 1: this.setCompoundDrawables(null, null, d, null); break; //right + case 2: this.setCompoundDrawables(null, d, null, null); break; //above + case 3: this.setCompoundDrawables(null, null, null, d); + } + } + + public void SetRoundCorner() { + if (this != null) { + PaintDrawable shape = new PaintDrawable(); + shape.setCornerRadius(mRadius); + int color = Color.TRANSPARENT; + Drawable background = this.getBackground(); + if (background instanceof ColorDrawable) { + color = ((ColorDrawable)this.getBackground()).getColor(); + shape.setColorFilter(color, Mode.SRC_ATOP); + //[ifdef_api16up] + if(Build.VERSION.SDK_INT >= 16) + this.setBackground((Drawable)shape); + //[endif_api16up] + } + } + } + + public void SetRadiusRoundCorner(int _radius) { + mRadius = _radius; + } + + // https://blog.stylingandroid.com/gradient-text/ + @Override + protected void onLayout( boolean changed, int left, int top, int right, int bottom ) { + super.onLayout( changed, left, top, right, bottom ); + controls.pOnLayouting(LAMWCommon.getPasObj(), changed); //event handle by pascal side + } + + //https://blog.stylingandroid.com/text-shadows/ + /* + Glowing Text + this.setShadowLayer(3f, 0, 0, Color.LTGRAY); + + Outline Glow Text + this.setShadowLayer(2f, 0, 0, Color.WRITE); + + Soft Shadow Text + this.setShadowLayer(1.5f, 3, 3, Color.LTGRAY); + + Soft Shadow Text (below) + this.setShadowLayer(1.5f, 3, -3, Color.LTGRAY); + + Engraved Shadow Text + this.setShadowLayer(0.6f, 1, 1, Color.WHITE); + */ + + public void SetShadowLayer(float _radius, float _dx, float _dy, int _color) { + this.setShadowLayer(_radius, _dx, _dy, _color); + } + + public void SetShaderLinearGradient(int _startColor, int _endColor) { + + float min = this.getHeight(); + if ( min > this.getWidth() ) min = this.getWidth(); + + Shader myShader= new LinearGradient( 0, 0, 0, min, _startColor, _endColor, Shader.TileMode.CLAMP ); + this.getPaint().setShader(myShader); + } + + //RadialGradient (float centerX, float centerY, float radius, int centerColor, int edgeColor, Shader.TileMode tileMode) + public void SetShaderRadialGradient(int _centerColor, int _edgeColor) { + + float r = this.getWidth()/3; + if (r < this.getHeight()/3) r = this.getHeight()/3; + + Shader myShader = new RadialGradient(this.getWidth()/2, this.getHeight()/2, r, _centerColor, _edgeColor, Shader.TileMode.CLAMP ); + this.getPaint().setShader(myShader); + } + + //SweepGradient (float cx, float cy, int color0, int color1) + public void SetShaderSweepGradient(int _color1, int _color2) { + + float min = this.getHeight(); + if (min > this.getWidth() ) min = this.getWidth(); + + Shader myShader = new SweepGradient(0, min/2, _color1, _color2); + this.getPaint().setShader(myShader); + } + + /* https://mobikul.com/just-few-steps-to-make-your-app-rtl-supportable/ + * add android:supportsRtl="true" to the element in manifest file. + */ + public void SetTextDirection(int _textDirection) { + //[ifdef_api17up] + if(Build.VERSION.SDK_INT >= 17) { //need target = 17 !!! + switch (_textDirection) { + case 0: this.setTextDirection(View.TEXT_DIRECTION_INHERIT); break; + case 1: this.setTextDirection(View.TEXT_DIRECTION_FIRST_STRONG); break; + case 2: this.setTextDirection(View.TEXT_DIRECTION_ANY_RTL); break; + case 3: this.setTextDirection(View.TEXT_DIRECTION_LTR); break; + case 4: this.setTextDirection(View.TEXT_DIRECTION_RTL); + + } + } + //[endif_api17up] + } + + + public void SetFontFromAssets(String _fontName) { // "fonts/font1.ttf" or "font1.ttf" + Typeface customfont = Typeface.createFromAsset( controls.activity.getAssets(), _fontName); + this.setTypeface(customfont); + } + + public void SetTextIsSelectable(boolean _value) { //Sets whether the content of this view is selectable by the user. + this.setTextIsSelectable(_value); + } + + /* + * if text is small then add space before and after text + txtEventName.setText("\t \t \t \t \t \t"+eventName+"\t \t \t \t \t \t"); + or + String summary = "" + + "Hello Droid" + ""; + webView.loadData(summary, "text/html", "utf-8"); + */ + public void SetScrollingText() { // marquee .... Changes the selection state of this view + this.setSingleLine(true); + this.setEllipsize(TruncateAt.MARQUEE); + this.setHorizontallyScrolling(true); + this.setLines(1); + this.setMarqueeRepeatLimit(-1); + this.setSelected(true); + //this.invalidate() + } + + //http://rajeshandroiddeveloper.blogspot.com.br/2013/07/how-to-implement-custom-font-to-text.html + public void SetTextAsLink(String _linkText) { + + //[ifdef_api24up] + if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N){ + this.setText(Html.fromHtml(_linkText, Html.FROM_HTML_MODE_LEGACY)); + }else //[endif_api24up] + this.setText(Html.fromHtml(_linkText)); + + this.setMovementMethod(LinkMovementMethod.getInstance()); + } + + public void SetTextAsLink(String _linkText, int _color) { //by TR3E + //[ifdef_api24up] + if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N){ + this.setText(Html.fromHtml(_linkText, Html.FROM_HTML_MODE_LEGACY)); + }else //[endif_api24up] + this.setText(Html.fromHtml(_linkText)); + + this.setMovementMethod(LinkMovementMethod.getInstance()); + this.setLinkTextColor(_color); + } + //You can basically set it from anything between 0(fully transparent) to 255 (completely opaque) + public void SetBackgroundAlpha(int _alpha) { + this.getBackground().setAlpha(_alpha); //0-255 + } + + public void MatchParent() { + LAMWCommon.MatchParent(); + + } + + public void WrapParent() { + LAMWCommon.WrapParent(); + } + + public void SetContentDescription(String _description) { + this.setContentDescription(_description); + } + + public void SetScrollingMovement() { //TODO Pascal + this.setMovementMethod(new ScrollingMovementMethod()); + } + + public void SetAllCaps(boolean _value) { + this.setAllCaps(_value); + } + + public void SetTextAsHtml(String _htmlText) { + //[ifdef_api24up] + if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N){ + this.setText(Html.fromHtml(_htmlText, Html.FROM_HTML_MODE_LEGACY)); + }else //[endif_api24up] + this.setText(Html.fromHtml(_htmlText)); //Html.fromHtml("5x2") + } + +} diff --git a/SmartFritz/src/org/muctec/smartfritz/jsBottomNavigationView.java b/SmartFritz/src/org/muctec/smartfritz/jsBottomNavigationView.java new file mode 100644 index 0000000000000000000000000000000000000000..4bfda7921ff698abbbb652d4c9cf23d100b9e4f1 --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jsBottomNavigationView.java @@ -0,0 +1,230 @@ +package org.muctec.smartfritz; + + +import android.content.Context; +import android.graphics.Color; +import android.os.Build; +import android.view.Menu; +import android.view.MenuItem; +import android.view.View; +import android.view.ViewGroup; +import android.support.design.widget.BottomNavigationView; +import android.text.SpannableString; +import android.text.style.ForegroundColorSpan; +import android.util.Log; + +/*Draft java code by "Lazarus Android Module Wizard" [1/13/2018 22:10:54]*/ +/*https://github.com/jmpessoa/lazandroidmodulewizard*/ +/*jVisualControl LAMW template*/ + +public class jsBottomNavigationView extends BottomNavigationView /*dummy*/ { //please, fix what GUI object will be extended! + + private long pascalObj = 0; // Pascal Object + private Controls controls = null; //Java/Pascal [events] Interface ... + private jCommons LAMWCommon; + private Context context = null; + + //private OnClickListener onClickListener; // click event + private Boolean enabled = true; // click-touch enabled! + private MenuItem mLastMenuItem = null; + + private int menuItemColor = R.color.primary_text; + private int selectedMenuItemColor = R.color.primary; + + int itemId; + String itemCaption; + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + public jsBottomNavigationView(Controls _ctrls, long _Self) { //Add more others news "_xxx" params if needed! + + super(_ctrls.activity); + context = _ctrls.activity; + pascalObj = _Self; + controls = _ctrls; + + LAMWCommon = new jCommons(this,context,pascalObj); + + this.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() { + @Override + public boolean onNavigationItemSelected(MenuItem menuItem) { + itemId = menuItem.getItemId(); + itemCaption = menuItem.getTitle().toString(); + + if (mLastMenuItem != null) { + // mLastMenuItem.setChecked(false); + if (menuItemColor == R.color.primary_text) + mLastMenuItem.setChecked(false); //highlighted item + else + SetItemTextColor(mLastMenuItem, menuItemColor); + } + + if (selectedMenuItemColor == R.color.primary) + menuItem.setChecked(true); //highlighted item + else + SetItemTextColor(menuItem, selectedMenuItemColor); + + mLastMenuItem = menuItem; + + controls.pOnClickBottomNavigationViewItem(pascalObj, itemId, itemCaption); + + // return true if you want the item to be displayed as the selected item + return true; + } + }); + + + } //end constructor + + public void jFree() { + //free local objects... + LAMWCommon.free(); + } + + public void SetViewParent(ViewGroup _viewgroup) { + LAMWCommon.setParent(_viewgroup); + } + + public ViewGroup GetParent() { + return LAMWCommon.getParent(); + } + + public void RemoveFromViewParent() { + LAMWCommon.removeFromViewParent(); + } + + public View GetView() { + return this; + } + + public void SetLParamWidth(int _w) { + LAMWCommon.setLParamWidth(_w); + } + + public void SetLParamHeight(int _h) { + LAMWCommon.setLParamHeight(_h); + } + + public int GetLParamWidth() { + return LAMWCommon.getLParamWidth(); + } + + public int GetLParamHeight() { + return LAMWCommon.getLParamHeight(); + } + + public void SetLGravity(int _g) { + LAMWCommon.setLGravity(_g); + } + + public void SetLWeight(float _w) { + LAMWCommon.setLWeight(_w); + } + + public void SetLeftTopRightBottomWidthHeight(int _left, int _top, int _right, int _bottom, int _w, int _h) { + LAMWCommon.setLeftTopRightBottomWidthHeight(_left,_top,_right,_bottom,_w,_h); + } + + public void AddLParamsAnchorRule(int _rule) { + LAMWCommon.addLParamsAnchorRule(_rule); + } + + public void AddLParamsParentRule(int _rule) { + LAMWCommon.addLParamsParentRule(_rule); + } + + public void SetLayoutAll(int _idAnchor) { + LAMWCommon.setLayoutAll(_idAnchor); + } + + public void ClearLayoutAll() { + LAMWCommon.clearLayoutAll(); + } + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + + public Menu GetMenu() { + //this.getMenu().add(Menu.NONE, 1, Menu.NONE, "Home").setIcon(R.drawable.ic_home_black_24dp); + return this.getMenu(); + } + + public MenuItem AddItem(Menu _menu, int _itemId, String _itemCaption) { + MenuItem item = _menu.add(0,_itemId,0 ,(CharSequence)_itemCaption); + SetItemTextColor(item, menuItemColor); + this.invalidate(); + return item; + } + + public void AddItem(Menu _menu, int _itemId, String _itemCaption, String _drawableIdentifier) { + // MenuItem item = _menu.add(_itemCaption); + MenuItem item = _menu.add(0,_itemId,0 ,(CharSequence)_itemCaption); + int id = context.getResources().getIdentifier(_drawableIdentifier, "drawable", context.getPackageName() ); + item.setIcon(id); // add icon with drawable resource + SetItemTextColor(item, menuItemColor); + this.invalidate(); + } + + public void AddItemIcon(MenuItem _menuItem, String _drawableIdentifier) { + int id = context.getResources().getIdentifier(_drawableIdentifier, "drawable", context.getPackageName() ); + _menuItem.setIcon(id); // add icon with drawable resource + //SetItemTextColor(_menuItem, menuItemColor); + this.invalidate(); + } + + //http://blog.xebia.com/android-design-support-navigationview/ + public void ClearMenu() { + this.getMenu().clear(); //clear old inflated items. + } + + + //ref. https://hanihashemi.com/2017/05/06/change-text-color-of-menuitem-in-navigation-drawer/ + public void SetItemTextColor(MenuItem _menuItem, int _color) { + SpannableString spanString = new SpannableString(_menuItem.getTitle().toString()); + spanString.setSpan(new ForegroundColorSpan(_color ), 0, spanString.length(), 0); + _menuItem.setTitle(spanString); + } + + public void SetAllItemsTextColor(int _color) { + for (int i = 0; i < this.getMenu().size(); i++) { + SetItemTextColor(this.getMenu().getItem(i), _color); + } + this.invalidate(); + menuItemColor = _color; + } + + public void ResetAllItemsTextColor() { + for (int i = 0; i < this.getMenu().size(); i++) { + SetItemTextColor(this.getMenu().getItem(i), menuItemColor); + } + this.invalidate(); + } + + public void SetItemTextColor(int _color) { + menuItemColor = _color; + } + + public void SetSelectedItemTextColor(int _color) { + selectedMenuItemColor = _color; + } + + public void SetFitsSystemWindows(boolean _value) { + LAMWCommon.setFitsSystemWindows(_value); + } + + + public void SetBackgroundToPrimaryColor() { + this.setBackgroundColor(LAMWCommon.getColorFromResources(context, R.color.primary)); + } + + public void BringToFront() { + this.bringToFront(); + if (Build.VERSION.SDK_INT < 19 ) { + ViewGroup parent = LAMWCommon.getParent(); + if (parent!= null) { + parent.requestLayout(); + parent.invalidate(); + } + } + this.setVisibility(android.view.View.VISIBLE); + } + +} diff --git a/SmartFritz/src/org/muctec/smartfritz/jsDrawerLayout.java b/SmartFritz/src/org/muctec/smartfritz/jsDrawerLayout.java new file mode 100644 index 0000000000000000000000000000000000000000..3fd8f896e9151de14ce7495c559899b6a96a8b25 --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jsDrawerLayout.java @@ -0,0 +1,169 @@ +package org.muctec.smartfritz; + +import android.support.v4.view.GravityCompat; +import android.support.v4.widget.DrawerLayout; +import android.support.v7.app.ActionBarDrawerToggle; +import android.support.v7.app.AppCompatActivity; +import android.support.v7.widget.Toolbar; +import android.content.Context; +import android.os.Build; +import android.os.Handler; +import android.view.Gravity; +import android.view.View; +import android.view.ViewGroup; + +/*Draft java code by "Lazarus Android Module Wizard" [12/16/2017 0:26:36]*/ +/*https://github.com/jmpessoa/lazandroidmodulewizard*/ +/*jVisualControl LAMW template*/ +public class jsDrawerLayout extends DrawerLayout /*dummy*/ { //please, fix what GUI object will be extended! + + private long pascalObj = 0; // Pascal Object + private Controls controls = null; //Java/Pascal [events] Interface ... + private jCommons LAMWCommon; + private Context context = null; + + //private OnClickListener onClickListener; // click event + private Boolean enabled = true; // click-touch enabled! + ActionBarDrawerToggle mDrawerToggle; + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + public jsDrawerLayout(Controls _ctrls, long _Self) { //Add more others news "_xxx" params if needed! + + super(_ctrls.activity); + context = _ctrls.activity; + pascalObj = _Self; + controls = _ctrls; + + LAMWCommon = new jCommons(this,context,pascalObj); + + if (Build.VERSION.SDK_INT >= 21) { + this.setFitsSystemWindows(true); + } + + } //end constructor + + public void jFree() { + //free local objects... + //setOnClickListener(null); + LAMWCommon.free(); + } + + @Override + protected void onSizeChanged(int w, int h, int oldw, int oldh) { + super.onSizeChanged(w, h, oldw, oldh); + + // Change the size and update the layout + controls.formNeedLayout = true; + controls.appLayout.requestLayout(); + } + + public void SetViewParent(ViewGroup _viewgroup) { + LAMWCommon.setParent(_viewgroup); + } + + public ViewGroup GetParent() { + return LAMWCommon.getParent(); + } + + public void RemoveFromViewParent() { + LAMWCommon.removeFromViewParent(); + } + + public View GetView() { + return this; + } + + public void SetLParamWidth(int _w) { + LAMWCommon.setLParamWidth(_w); + } + + public void SetLParamHeight(int _h) { + LAMWCommon.setLParamHeight(_h); + } + + public int GetLParamWidth() { + return LAMWCommon.getLParamWidth(); + } + + public int GetLParamHeight() { + return LAMWCommon.getLParamHeight(); + } + + public void SetLGravity(int _g) { + LAMWCommon.setLGravity(_g); + } + + public void SetLWeight(float _w) { + LAMWCommon.setLWeight(_w); + } + + public void SetLeftTopRightBottomWidthHeight(int _left, int _top, int _right, int _bottom, int _w, int _h) { + LAMWCommon.setLeftTopRightBottomWidthHeight(_left,_top,_right,_bottom,_w,_h); + } + + public void AddLParamsAnchorRule(int _rule) { + LAMWCommon.addLParamsAnchorRule(_rule); + } + + public void AddLParamsParentRule(int _rule) { + LAMWCommon.addLParamsParentRule(_rule); + } + + public void SetLayoutAll(int _idAnchor) { + LAMWCommon.setLayoutAll(_idAnchor); + } + + public void ClearLayoutAll() { + LAMWCommon.clearLayoutAll(); + } + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + + //http://abhiandroid.com/materialdesign/navigation-drawer + +// This method is used to close all the currently open drawer views +// by animating them out of view. We mainly use this method on click of any item of Navigation View +public void CloseDrawers() { + this.closeDrawers(); +} + +public void CloseDrawer() { + this.closeDrawer(Gravity.START, false); +} + + //This method is used to open the drawer view by animating it into view. We can open a Drawer by passing START gravity to this method + public void OpenDrawer() { + this.openDrawer(GravityCompat.START); + } + + //http://www.technotalkative.com/part-4-playing-with-navigationview/ + //http://blog.xebia.com/android-design-support-navigationview/ + //http://androidahead.com/2017/01/12/navigation-drawer/ + //Here we create the ActionBarDrawerToogle listener ... + public void SetupDrawerToggle(Toolbar _toolbar) { + mDrawerToggle = new ActionBarDrawerToggle(((AppCompatActivity) controls.activity), + this, _toolbar, + R.string.hello_world, //R.string.drawer_open + R.string.app_name) { //R.string.drawer_close + /*.*/public void onDrawerClosed(View view) { + super.onDrawerClosed(view); + //pascal handle event .... + } + /*.*/public void onDrawerOpened(View drawerView) { + super.onDrawerOpened(drawerView); + //pascal handle event .... + } + }; + + mDrawerToggle.setDrawerIndicatorEnabled(true); + // Add drawer toggle to the drawer layout listener. + this.addDrawerListener(mDrawerToggle); + mDrawerToggle.syncState(); + } + + public void SetFitsSystemWindows(boolean _value) { + LAMWCommon.setFitsSystemWindows(_value); + } + + +} diff --git a/SmartFritz/src/org/muctec/smartfritz/jsFloatingButton.java b/SmartFritz/src/org/muctec/smartfritz/jsFloatingButton.java new file mode 100644 index 0000000000000000000000000000000000000000..398821399c2a29fd2c022b10a62c607c4d5de8cd --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jsFloatingButton.java @@ -0,0 +1,209 @@ +package org.muctec.smartfritz; + +import android.content.Context; +import android.content.res.ColorStateList; +import android.os.Build; +import android.view.View; +import android.view.ViewGroup; +import android.support.design.widget.FloatingActionButton; +import android.support.design.widget.Snackbar; +import android.support.design.widget.CoordinatorLayout; + +/*Draft java code by "Lazarus Android Module Wizard" [12/2/2017 16:23:10]*/ +/*https://github.com/jmpessoa/lazandroidmodulewizard*/ +/*jVisualControl LAMW template*/ + +public class jsFloatingButton extends FloatingActionButton /*dummy*/ { //please, fix what GUI object will be extended! + + private long pascalObj = 0; // Pascal Object + private Controls controls = null; //Java/Pascal [events] Interface ... + private jCommons LAMWCommon; + private Context context = null; + + private OnClickListener onClickListener; // click event + private Boolean enabled = true; // click-touch enabled! + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + public jsFloatingButton(Controls _ctrls, long _Self) { //Add more others news "_xxx" params if needed! + + super(_ctrls.activity); + context = _ctrls.activity; + pascalObj = _Self; + controls = _ctrls; + + LAMWCommon = new jCommons(this,context,pascalObj); + + onClickListener = new OnClickListener(){ + /*.*/public void onClick(View view){ // *.* is a mask to future parse...; + if (enabled) { + controls.pOnClickGeneric(pascalObj, Const.Click_Default); //JNI event onClick! + } + }; + }; + setOnClickListener(onClickListener); + this.setCompatElevation(20); + } //end constructor + + public void jFree() { + //free local objects... + setOnClickListener(null); + LAMWCommon.free(); + } + + public void SetViewParent(ViewGroup _viewgroup) { + LAMWCommon.setParent(_viewgroup); + } + + public ViewGroup GetParent() { + return LAMWCommon.getParent(); + } + + public void RemoveFromViewParent() { + LAMWCommon.removeFromViewParent(); + } + + public View GetView() { + return this; + } + + public void SetLParamWidth(int _w) { + LAMWCommon.setLParamWidth(_w); + } + + public void SetLParamHeight(int _h) { + LAMWCommon.setLParamHeight(_h); + } + + public int GetLParamWidth() { + return LAMWCommon.getLParamWidth(); + } + + public int GetLParamHeight() { + return LAMWCommon.getLParamHeight(); + } + + public void SetLGravity(int _g) { + LAMWCommon.setLGravity(_g); //Gravity.TOP | Gravity.START + } + + public void SetLWeight(float _w) { + LAMWCommon.setLWeight(_w); + } + + public void SetLeftTopRightBottomWidthHeight(int _left, int _top, int _right, int _bottom, int _w, int _h) { + LAMWCommon.setLeftTopRightBottomWidthHeight(_left,_top,_right,_bottom,_w,_h); + } + + public void AddLParamsAnchorRule(int _rule) { + LAMWCommon.addLParamsAnchorRule(_rule); + } + + public void AddLParamsParentRule(int _rule) { + LAMWCommon.addLParamsParentRule(_rule); + } + + public void SetLayoutAll(int _idAnchor) { + LAMWCommon.setLayoutAll(_idAnchor); + } + + public void ClearLayoutAll() { + LAMWCommon.clearLayoutAll(); + } + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + + public void SetVisibility(int _value) { // + this.setVisibility(_value); //View.GONE=8 View.VISIBLE=0 View.INVISIBLE=4 + } + + public void SetCompatElevation(float _value){ + this.setCompatElevation(_value); + } + + public void SetImage(String _imageIdentifier) { + int imageId = controls.activity.getResources().getIdentifier(_imageIdentifier, "drawable", controls.activity.getPackageName()); + this.setImageResource(imageId); //this.SetImageResource("ic_launcher"); + } + + + public void SetSize(int _value) { + this.setSize(_value); //SIZE_MINI SIZE_AUTO SIZE_NORMAL + } + + /* + fab.setColor(Color.RED); + // NOTE invoke this method after setting new values! + fab.initBackground(); + */ + + /* + * As described in the documentation, + * by default it takes the color set in styles.xml attribute colorAccent. + */ + //this.setSupportButtonTintList(ContextCompat.getColorStateList(Activity.this, R.color.colorPrimary)); + public void SetBackgroundTintList(int _color) { //Pascal: SetColor/Background + this.setBackgroundTintList(ColorStateList.valueOf(_color)); //Color.YELLOW + //this.setRippleColor(Color.YELLOW); + } + + //pressed ... + public void SetPressedRippleColor(int _color) { + this.setRippleColor(_color); + //this.setRippleColor(Color.YELLOW); + } + + public void SetContentDescription(String _contentDescription) { + this.setContentDescription(_contentDescription); + } + + /* + public void ShowSnackbar(CoordinatorLayout _coordinatorLayout, String _mensage) { + Snackbar.make(_coordinatorLayout, + _mensage, Snackbar.LENGTH_LONG) + .setAction("CLOSE", new View.OnClickListener() { + @Override + public void onClick(View v) { + // Custom action + } + }).show(); + } + */ + + public void ShowSnackbar(String _message) { + ViewGroup _coordinatorLayout = GetParent(); + if (_coordinatorLayout instanceof CoordinatorLayout) { + Snackbar.make(_coordinatorLayout, + _message, Snackbar.LENGTH_LONG) + .setAction("CLOSE", new View.OnClickListener() { + @Override + public void onClick(View v) { + // Custom action + } + }).show(); + } + } + + public void SetFitsSystemWindows(boolean _value) { + LAMWCommon.setFitsSystemWindows(_value); + } + + public void SetAnchorGravity(int _gravity, int _anchorId) { + LAMWCommon.setAnchorLGravity(_gravity, _anchorId); + } + + public void SetBackgroundToPrimaryColor() { + this.setBackgroundColor(LAMWCommon.getColorFromResources(context, R.color.primary)); + } + + public void BringToFront() { + this.bringToFront(); + if (Build.VERSION.SDK_INT < 19 ) { + ViewGroup parent = LAMWCommon.getParent(); + if (parent!= null) { + parent.requestLayout(); + parent.invalidate(); + } + } + this.setVisibility(android.view.View.VISIBLE); + } +} diff --git a/SmartFritz/src/org/muctec/smartfritz/jsNavigationView.java b/SmartFritz/src/org/muctec/smartfritz/jsNavigationView.java new file mode 100644 index 0000000000000000000000000000000000000000..50b4ceffca2ee32edad1d133871587c4aa2a5e86 --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jsNavigationView.java @@ -0,0 +1,730 @@ +package org.muctec.smartfritz; + + +import java.lang.reflect.Field; +import java.util.regex.Pattern; + +import android.content.Context; +import android.graphics.Bitmap; +import android.graphics.Canvas; +import android.graphics.Color; +import android.graphics.Path; +import android.graphics.Rect; +import android.graphics.drawable.BitmapDrawable; +import android.graphics.drawable.Drawable; +import android.os.Build; +import android.os.Handler; +import android.util.DisplayMetrics; +import android.util.TypedValue; +import android.view.Menu; +import android.view.MenuItem; +import android.view.View; +import android.view.ViewGroup; +import android.widget.ImageView; +import android.widget.RelativeLayout; +import android.widget.TextView; +import android.support.design.widget.NavigationView; +import android.text.SpannableString; +import android.text.style.ForegroundColorSpan; +import android.util.Log; + + +/*Draft java code by "Lazarus Android Module Wizard" [12/16/2017 0:54:36]*/ +/*https://github.com/jmpessoa/lazandroidmodulewizard*/ +/*jVisualControl LAMW template*/ + +public class jsNavigationView extends NavigationView /*dummy*/ { //please, fix what GUI object will be extended! + + private long pascalObj = 0; // Pascal Object + private Controls controls = null; //Java/Pascal [events] Interface ... + private jCommons LAMWCommon; + private Context context = null; + + //private OnClickListener onClickListener; // click event + + private Boolean enabled = true; // click-touch enabled! + private MenuItem mLastMenuItem = null; + + private int menuItemColor = R.color.primary_text; + private int selectedMenuItemColor = R.color.primary; + + RelativeLayout headerLayout; + ImageView headerImageView; + TextView headerTextView; + TextView headerSubTextView; + + int headerImageIdentifier = R.drawable.ic_launcher; + + String headerText = "Hello World!"; + String headerSubText = "LAMW 0.8"; + + int headerColor = 0xC5CAE9; // R.color.primary_light; + + int itemId; + String itemCaption; + + int textColor = Color.WHITE; + int subTextColor = Color.WHITE; + + int headerTextSize = 0; //default + int textSizeDecorated = 0; //1 = Decreasing //2 Increasing //0 none + + float textSizeDecoratedGap = 3; + + int mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; + + int imagePosRelativeToParente = RelativeLayout.CENTER_IN_PARENT; + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + public jsNavigationView(Controls _ctrls, long _Self) { //Add more others news "_xxx" params if needed! + + super(_ctrls.activity); + context = _ctrls.activity; + pascalObj = _Self; + controls = _ctrls; + + LAMWCommon = new jCommons(this,context,pascalObj); + + if (Build.VERSION.SDK_INT >= 21) { + this.setFitsSystemWindows(true); + } + + this.setNavigationItemSelectedListener(new NavigationView.OnNavigationItemSelectedListener() { + @Override + /*.*/public boolean onNavigationItemSelected(MenuItem menuItem) { + + itemId = menuItem.getItemId(); + itemCaption = menuItem.getTitle().toString(); + + if (mLastMenuItem != null) { + // mLastMenuItem.setChecked(false); + if (menuItemColor == R.color.primary_text) + mLastMenuItem.setChecked(false); //highlighted item + else + SetItemTextColor(mLastMenuItem, menuItemColor); + } + + if (selectedMenuItemColor == R.color.primary) + menuItem.setChecked(true); //highlighted item + else + SetItemTextColor(menuItem, selectedMenuItemColor); + + + mLastMenuItem = menuItem; + + Handler handler = new Handler(); + handler.postDelayed(new Runnable(){ + @Override + public void run(){ + controls.pOnClickNavigationViewItem(pascalObj, itemId, itemCaption); + } + }, 300); + + return true; + } + }); + + } //end constructor + + public void jFree() { + //free local objects... + //setOnClickListener(null); + LAMWCommon.free(); + } + + public void SetViewParent(ViewGroup _viewgroup) { + LAMWCommon.setParent(_viewgroup); + } + + public ViewGroup GetParent() { + return LAMWCommon.getParent(); + } + + public void RemoveFromViewParent() { + LAMWCommon.removeFromViewParent(); + } + + public View GetView() { + return this; + } + + public void SetLParamWidth(int _w) { + LAMWCommon.setLParamWidth(_w); + } + + public void SetLParamHeight(int _h) { + LAMWCommon.setLParamHeight(_h); + } + + public int GetLParamWidth() { + return LAMWCommon.getLParamWidth(); + } + + public int GetLParamHeight() { + return LAMWCommon.getLParamHeight(); + } + + public void SetLGravity(int _g) { + LAMWCommon.setLGravity(_g); + } + + public void SetLWeight(float _w) { + LAMWCommon.setLWeight(_w); + } + + public void SetLeftTopRightBottomWidthHeight(int _left, int _top, int _right, int _bottom, int _w, int _h) { + LAMWCommon.setLeftTopRightBottomWidthHeight(_left,_top,_right,_bottom,_w,_h); + } + + public void AddLParamsAnchorRule(int _rule) { + LAMWCommon.addLParamsAnchorRule(_rule); + } + + public void AddLParamsParentRule(int _rule) { + LAMWCommon.addLParamsParentRule(_rule); + } + + public void SetLayoutAll(int _idAnchor) { + LAMWCommon.setLayoutAll(_idAnchor); + } + + public void ClearLayoutAll() { + LAMWCommon.clearLayoutAll(); + } + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + + public Menu GetMenu() { + return this.getMenu(); + } + + //https://ptyagicodecamp.github.io/adding-menu-items-in-navigation-drawer-dynamically.html + public Menu AddMenu(String _headerTitle) { + Menu menu = this.getMenu(); + Menu submenu = menu.addSubMenu(_headerTitle); + //submenu.setHeaderIcon(controls.GetDrawableResourceId(_headerIconIdentifier)); + this.invalidate(); + return submenu; + } + + public MenuItem AddItem(Menu _menu, int _itemId, String _itemCaption) { + MenuItem item = _menu.add(0,_itemId,0 ,(CharSequence)_itemCaption); + this.invalidate(); + return item; + } + + public void AddItem(Menu _menu, int _itemId, String _itemCaption, String _drawableIdentifier) { + // MenuItem item = _menu.add(_itemCaption); + MenuItem item = _menu.add(0,_itemId,0 ,(CharSequence)_itemCaption); + int id = context.getResources().getIdentifier(_drawableIdentifier, "drawable", context.getPackageName() ); + item.setIcon(id); // add icon with drawable resource + this.invalidate(); + } + + public void AddItemIcon(MenuItem _menuItem, String _drawableIdentifier) { + int id = context.getResources().getIdentifier(_drawableIdentifier, "drawable", context.getPackageName() ); + _menuItem.setIcon(id); // add icon with drawable resource + this.invalidate(); + } + + //http://blog.xebia.com/android-design-support-navigationview/ + public void ClearMenu() { + this.getMenu().clear(); //clear old inflated items. + } + + public void AddHeaderView(View _headerView) { + android.view.ViewGroup parent = (ViewGroup) _headerView.getParent(); + + if (parent!=null) + parent.removeView(_headerView); + + this.addHeaderView(_headerView); + this.invalidate(); + } + + //ref. https://hanihashemi.com/2017/05/06/change-text-color-of-menuitem-in-navigation-drawer/ + public void SetItemTextColor(MenuItem _menuItem, int _color) { + SpannableString spanString = new SpannableString(_menuItem.getTitle().toString()); + spanString.setSpan(new ForegroundColorSpan(_color ), 0, spanString.length(), 0); + _menuItem.setTitle(spanString); + } + + public void SetAllItemsTextColor(int _color) { + for (int i = 0; i < this.getMenu().size(); i++) { + SetItemTextColor(this.getMenu().getItem(i), _color); + } + menuItemColor = _color; + } + + public void ResetAllItemsTextColor() { + for (int i = 0; i < this.getMenu().size(); i++) { + SetItemTextColor(this.getMenu().getItem(i), menuItemColor); + } + } + + public void SetItemTextColor(int _color) { + menuItemColor = _color; + } + + public void SetSelectedItemTextColor(int _color) { + selectedMenuItemColor = _color; + } + + /* + * Making image in circular shape + * http://www.androiddevelopersolutions.com/2012/09/crop-image-in-circular-shape-in-android.html + */ + public Bitmap GetRoundedShape(Bitmap _bitmapImage, int _diameter) { + // TODO Auto-generated method stub + Bitmap sourceBitmap = _bitmapImage; + Path path = new Path(); + + int dim; + if(_diameter == 0 ) { + dim = sourceBitmap.getHeight(); + if (dim > sourceBitmap.getWidth()) dim = sourceBitmap.getWidth(); + } + else { + dim = _diameter; + int min; + + if (sourceBitmap.getWidth() < sourceBitmap.getHeight()) + min = sourceBitmap.getWidth(); + else + min = sourceBitmap.getHeight(); + + if (dim > min) dim = min; + } + + int targetWidth = dim; + int targetHeight = dim; + + Bitmap targetBitmap = Bitmap.createBitmap(targetWidth, + targetHeight,Bitmap.Config.ARGB_8888); + + Canvas canvas = new Canvas(targetBitmap); + + path.addCircle(((float) targetWidth - 1) / 2, + ((float) targetHeight - 1) / 2, + (Math.min(((float) targetWidth), + ((float) targetHeight)) / 2), + Path.Direction.CCW); + + canvas.clipPath(path); + + canvas.drawBitmap(sourceBitmap, + new Rect(0, 0, sourceBitmap.getWidth(), + sourceBitmap.getHeight()), + new Rect(0, 0, targetWidth, + targetHeight), null); + return targetBitmap; + } + + + public Bitmap GetRoundedShape(Bitmap _bitmapImage) { + return GetRoundedShape(_bitmapImage, 0); + } + + private Bitmap GetBitmapFromById(int _resID) { + if( _resID == 0 ) return null; // by tr3e + + Drawable res = null; + + if (Build.VERSION.SDK_INT < 21 ) { + Log.i("jsNavigationView","Build.VERSION.SDK_INT < 21"); + res = this.controls.activity.getResources().getDrawable(_resID); + } + + + if(Build.VERSION.SDK_INT >= 21) { + Log.i("jsNavigationView","Build.VERSION.SDK_INT >= 21"); + //[ifdef_api21up] + res = this.controls.activity.getResources().getDrawable(_resID, null); + //[endif_api21up] + } + + + if (res != null) + return ((BitmapDrawable)res).getBitmap(); + else + return null; + } + + + public void AddHeaderView(int _color, Bitmap _bitmapLogo, String _text, int _height) { + String delimiter = "|"; + String[] words = _text.split(Pattern.quote(delimiter)); + int countText = words.length; + + if (countText >= 2) { + headerText = words[0]; + headerSubText = words[1]; + } + else { + headerText = _text; + } + + headerColor = _color; + + Bitmap bmp = _bitmapLogo; + if (bmp != null) bmp = GetRoundedShape(bmp); + + headerLayout = new RelativeLayout(context); + + int h = (int) (_height * getResources().getDisplayMetrics().density); //_height = 192 + RelativeLayout.LayoutParams paramLayout = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, h); + + headerLayout.setLayoutParams(paramLayout); + headerLayout.setBackgroundColor(headerColor); + headerImageView = new ImageView(context); + + if (bmp != null) { + headerImageView.setImageBitmap(bmp); + headerImageView.setPadding(10, 10, 10, 10); + headerImageView.setId(controls.getJavaNewId()); + } + + headerTextView = new TextView(context); + headerTextView.setId(controls.getJavaNewId()); + headerTextView.setText(headerText); + headerTextView.setPadding(10, 30, 10, 5); + headerTextView.setTextColor(textColor); + + int i = 0; + float auxf = setTextSizeAndGetAuxf(headerTextSize, headerTextView); + if ( textSizeDecorated == 1) + headerTextView.setTextSize(mTextSizeTypedValue, auxf - textSizeDecoratedGap*i); // sdDeCecreasing + else if (textSizeDecorated == 2) + headerTextView.setTextSize(mTextSizeTypedValue, auxf + textSizeDecoratedGap*i); // sdInCecreasing + + if (bmp != null) { + RelativeLayout.LayoutParams paramImg = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); + paramImg.addRule(imagePosRelativeToParente); //RelativeLayout.CENTER_IN_PARENT + headerLayout.addView(headerImageView, paramImg); + } + + RelativeLayout.LayoutParams paramText = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); + paramText.addRule(RelativeLayout.CENTER_HORIZONTAL); + paramText.addRule(RelativeLayout.BELOW, headerImageView.getId()); + headerLayout.addView(headerTextView, paramText); + + if (countText >= 2) { + headerSubTextView = new TextView(context); + headerSubTextView.setText(headerSubText); + headerSubTextView.setPadding(10, 5, 10, 20); + headerSubTextView.setTextColor(subTextColor); + + int factor = 1; + float aux = setTextSizeAndGetAuxf(headerTextSize, headerSubTextView); + if ( textSizeDecorated == 1) + headerSubTextView.setTextSize(mTextSizeTypedValue, aux - textSizeDecoratedGap*factor); // sdDeCecreasing + else if (textSizeDecorated == 2) + headerSubTextView.setTextSize(mTextSizeTypedValue, aux + textSizeDecoratedGap*factor); // sdInCecreasing + + RelativeLayout.LayoutParams paramText2 = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); + paramText2.addRule(RelativeLayout.CENTER_HORIZONTAL); + paramText2.addRule(RelativeLayout.BELOW, headerTextView.getId()); + headerLayout.addView(headerSubTextView, paramText2); + } + this.addHeaderView(headerLayout); + } + + public void AddHeaderView(int _color, String _drawableLogoIdentifier, String _text, int _height) { + + String delimiter = "|"; + String[] words = _text.split(Pattern.quote(delimiter)); + int countText = words.length; + + if (countText >= 2) { + headerText = words[0]; + headerSubText = words[1]; + } + else { + headerText = _text; + } + + headerColor = _color; + + headerImageIdentifier = context.getResources().getIdentifier(_drawableLogoIdentifier, "drawable", context.getPackageName() ); + + Bitmap bmp = GetBitmapFromById(headerImageIdentifier); + if (bmp != null) bmp = GetRoundedShape(bmp); + + headerLayout = new RelativeLayout(context); + + int h = (int) (_height * getResources().getDisplayMetrics().density); //_height = 192 + RelativeLayout.LayoutParams paramLayout = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, h); + + headerLayout.setLayoutParams(paramLayout); + headerLayout.setBackgroundColor(headerColor); + headerImageView = new ImageView(context); + + if (bmp != null) { + headerImageView.setImageBitmap(bmp); + headerImageView.setPadding(10, 10, 10, 10); + headerImageView.setId(controls.getJavaNewId()); + } + + headerTextView = new TextView(context); + headerTextView.setId(controls.getJavaNewId()); + headerTextView.setText(headerText); + headerTextView.setPadding(10, 30, 10, 5); + headerTextView.setTextColor(textColor); + + int i = 0; + float auxf = setTextSizeAndGetAuxf(headerTextSize, headerTextView); + if ( textSizeDecorated == 1) + headerTextView.setTextSize(mTextSizeTypedValue, auxf - textSizeDecoratedGap*i); // sdDeCecreasing + else if (textSizeDecorated == 2) + headerTextView.setTextSize(mTextSizeTypedValue, auxf + textSizeDecoratedGap*i); // sdInCecreasing + + if (bmp != null) { + RelativeLayout.LayoutParams paramImg = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); + paramImg.addRule(imagePosRelativeToParente);//RelativeLayout.CENTER_IN_PARENT + headerLayout.addView(headerImageView, paramImg); + } + + RelativeLayout.LayoutParams paramText = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); + paramText.addRule(RelativeLayout.CENTER_HORIZONTAL); + paramText.addRule(RelativeLayout.BELOW, headerImageView.getId()); + headerLayout.addView(headerTextView, paramText); + + if (countText >= 2) { + headerSubTextView = new TextView(context); + headerSubTextView.setText(headerSubText); + headerSubTextView.setPadding(10, 5, 10, 20); + headerSubTextView.setTextColor(subTextColor); + + int factor = 1; + float aux = setTextSizeAndGetAuxf(headerTextSize, headerSubTextView); + if ( textSizeDecorated == 1) + headerSubTextView.setTextSize(mTextSizeTypedValue, aux - textSizeDecoratedGap*factor); // sdDeCecreasing + else if (textSizeDecorated == 2) + headerSubTextView.setTextSize(mTextSizeTypedValue, aux + textSizeDecoratedGap*factor); // sdInCecreasing + + RelativeLayout.LayoutParams paramText2 = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); + paramText2.addRule(RelativeLayout.CENTER_HORIZONTAL); + paramText2.addRule(RelativeLayout.BELOW, headerTextView.getId()); + headerLayout.addView(headerSubTextView, paramText2); + } + + this.addHeaderView(headerLayout); + } + + public void AddHeaderView(String _drawableBackgroundIdentifier, String _drawableLogoIdentifier, String _text, int _height) { + + String delimiter = "|"; + String[] words = _text.split(Pattern.quote(delimiter)); + int countText = words.length; + + if (countText >= 2) { + headerText = words[0]; + headerSubText = words[1]; + } + else { + headerText = _text; + } + + headerImageIdentifier = context.getResources().getIdentifier(_drawableLogoIdentifier, "drawable", context.getPackageName() ); + Bitmap bmp = GetBitmapFromById(headerImageIdentifier); + if (bmp != null) bmp = GetRoundedShape(bmp); + headerLayout = new RelativeLayout(context); + int h = (int) (_height * getResources().getDisplayMetrics().density); //_height = 192 + RelativeLayout.LayoutParams paramLayout = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, h); + headerLayout.setLayoutParams(paramLayout); + headerImageView = new ImageView(context); + + if (bmp != null) { + headerImageView.setImageBitmap(bmp); + headerImageView.setPadding(10, 10, 10, 10); + headerImageView.setId(controls.getJavaNewId()); + } + + headerTextView = new TextView(context); + headerTextView.setId(controls.getJavaNewId()); + headerTextView.setText(headerText); + headerTextView.setPadding(10, 30, 10, 5); + headerTextView.setTextColor(textColor); + + int factor1 = 0; + float aux1 = setTextSizeAndGetAuxf(headerTextSize, headerTextView); + if ( textSizeDecorated == 1) + headerTextView.setTextSize(mTextSizeTypedValue, aux1 - textSizeDecoratedGap*factor1); // sdDeCecreasing + else if (textSizeDecorated == 2) + headerTextView.setTextSize(mTextSizeTypedValue, aux1 + textSizeDecoratedGap*factor1); // sdInCecreasing + + if (bmp != null) { + RelativeLayout.LayoutParams paramImg = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); + paramImg.addRule(imagePosRelativeToParente); //RelativeLayout.CENTER_IN_PARENT + headerLayout.addView(headerImageView, paramImg); + } + + RelativeLayout.LayoutParams paramText = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); + paramText.addRule(RelativeLayout.CENTER_HORIZONTAL); + paramText.addRule(RelativeLayout.BELOW, headerImageView.getId()); + headerLayout.addView(headerTextView, paramText); + + if (countText >= 2) { + headerSubTextView = new TextView(context); + headerSubTextView.setText(headerSubText); + headerSubTextView.setPadding(10, 5, 10, 20); + headerSubTextView.setTextColor(subTextColor); + + int factor2 = 1; + float aux2 = setTextSizeAndGetAuxf(headerTextSize, headerSubTextView); + if ( textSizeDecorated == 1) + headerSubTextView.setTextSize(mTextSizeTypedValue, aux2 - textSizeDecoratedGap*factor2); // sdDeCecreasing + else if (textSizeDecorated == 2) + headerSubTextView.setTextSize(mTextSizeTypedValue, aux2 + textSizeDecoratedGap*factor2); // sdInCecreasing + + RelativeLayout.LayoutParams paramText2 = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); + paramText2.addRule(RelativeLayout.CENTER_HORIZONTAL); + paramText2.addRule(RelativeLayout.BELOW, headerTextView.getId()); + headerLayout.addView(headerSubTextView, paramText2); + } + + headerLayout.setBackgroundResource(context.getResources().getIdentifier(_drawableBackgroundIdentifier, "drawable", context.getPackageName() )); + this.addHeaderView(headerLayout); + + } + + public void AddHeaderView(String _drawableBackgroundIdentifier, Bitmap _bitmapLogo, String _text, int _height) { + + String delimiter = "|"; + String[] words = _text.split(Pattern.quote(delimiter)); + int countText = words.length; + + if (countText >= 2) { + headerText = words[0]; + headerSubText = words[1]; + } + else { + headerText = _text; + } + + Bitmap bmp = _bitmapLogo; + if (bmp != null) bmp = GetRoundedShape(bmp); + + headerLayout = new RelativeLayout(context); + int h = (int) (_height * getResources().getDisplayMetrics().density); //_height = 192 + RelativeLayout.LayoutParams paramLayout = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, h); + headerLayout.setLayoutParams(paramLayout); + headerImageView = new ImageView(context); + + if (bmp != null) { + headerImageView.setImageBitmap(bmp); + headerImageView.setPadding(10, 10, 10, 10); + headerImageView.setId(controls.getJavaNewId()); + } + + headerTextView = new TextView(context); + headerTextView.setId(controls.getJavaNewId()); + headerTextView.setText(headerText); + headerTextView.setPadding(10, 30, 10, 5); + headerTextView.setTextColor(textColor); + + int factor1 = 0; + float aux1 = setTextSizeAndGetAuxf(headerTextSize, headerTextView); + if ( textSizeDecorated == 1) + headerTextView.setTextSize(mTextSizeTypedValue, aux1 - textSizeDecoratedGap*factor1); // sdDeCecreasing + else if (textSizeDecorated == 2) + headerTextView.setTextSize(mTextSizeTypedValue, aux1 + textSizeDecoratedGap*factor1); // sdInCecreasing + + if (bmp != null) { + RelativeLayout.LayoutParams paramImg = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); + paramImg.addRule(imagePosRelativeToParente); //RelativeLayout.CENTER_IN_PARENT + headerLayout.addView(headerImageView, paramImg); + } + + RelativeLayout.LayoutParams paramText = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); + paramText.addRule(RelativeLayout.CENTER_HORIZONTAL); + paramText.addRule(RelativeLayout.BELOW, headerImageView.getId()); + headerLayout.addView(headerTextView, paramText); + + if (countText >= 2) { + headerSubTextView = new TextView(context); + headerSubTextView.setText(headerSubText); + headerSubTextView.setPadding(10, 5, 10, 20); + headerSubTextView.setTextColor(subTextColor); + + int factor2 = 1; + float aux2 = setTextSizeAndGetAuxf(headerTextSize, headerSubTextView); + if ( textSizeDecorated == 1) + headerSubTextView.setTextSize(mTextSizeTypedValue, aux2 - textSizeDecoratedGap*factor2); // sdDeCecreasing + else if (textSizeDecorated == 2) + headerSubTextView.setTextSize(mTextSizeTypedValue, aux2 + textSizeDecoratedGap*factor2); // sdInCecreasing + + RelativeLayout.LayoutParams paramText2 = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); + paramText2.addRule(RelativeLayout.CENTER_HORIZONTAL); + paramText2.addRule(RelativeLayout.BELOW, headerTextView.getId()); + headerLayout.addView(headerSubTextView, paramText2); + } + + headerLayout.setBackgroundResource(context.getResources().getIdentifier(_drawableBackgroundIdentifier, "drawable", context.getPackageName() )); + this.addHeaderView(headerLayout); + + } + + public void SetSubtitleTextColor(int _color) { + subTextColor = _color; + } + + public void SetTitleTextColor(int _color) { + textColor = _color; + } + + public void SetTitleTextSize(int _textSize) { + headerTextSize = _textSize; + } + + public void SetTitleSizeDecorated(int _sizeDecorated) { + //int textSizeDecorated = 1; //1 = Decreasing //2 Increasing //0 none + textSizeDecorated = _sizeDecorated; + } + + public void SetTitleSizeDecoratedGap(float _textSizeGap) { + //int textSizeDecorated = 1; //1 = Decreasing //2 Increasing //0 none + textSizeDecoratedGap = _textSizeGap; + } + + public void SetLogoPosition(int _logoPosition) { + imagePosRelativeToParente = _logoPosition; //RelativeLayout.CENTER_IN_PARENT; + } + + /* TODO + public void SetFontSizeUnit(int _unit) { + switch (_unit) { + case 0: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; break; //default + case 1: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_PX; break; //raw pixel :: good experience! + case 2: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_DIP; break; //device + case 3: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_MM; break; + case 4: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_PT; break; //points + case 5: mTextSizeTypedValue = TypedValue.COMPLEX_UNIT_SP; break; //scaled pixel -- default + } + } + */ + + private float pixelsToSP(Float px) { //Scaled Pixels + float scaledDensity = controls.activity.getResources().getDisplayMetrics().scaledDensity; + return px/scaledDensity; + } + + private float setTextSizeAndGetAuxf(int _textSize, TextView _textView){ + float auxCustomPixel; + float defaultInPixel = _textView.getTextSize(); //default in pixel!!! + float result = pixelsToSP(defaultInPixel); //just initialize ... pixel to TypedValue.COMPLEX_UNIT_SP + if (mTextSizeTypedValue == TypedValue.COMPLEX_UNIT_SP) { + result = pixelsToSP(defaultInPixel); //default in TypedValue.COMPLEX_UNIT_SP! + if (_textSize != 0) { + _textView.setTextSize(_textSize); + auxCustomPixel = _textView.getTextSize(); + result = pixelsToSP(auxCustomPixel); //custom in default in TypedValue.COMPLEX_UNIT_SP! + } + } + return result; + } + + +} + + diff --git a/SmartFritz/src/org/muctec/smartfritz/jsToolbar.java b/SmartFritz/src/org/muctec/smartfritz/jsToolbar.java new file mode 100644 index 0000000000000000000000000000000000000000..3c181eec97238e1b1a1f58a32ca3c3571a574217 --- /dev/null +++ b/SmartFritz/src/org/muctec/smartfritz/jsToolbar.java @@ -0,0 +1,311 @@ +package org.muctec.smartfritz; + +import java.lang.reflect.Field; +import android.content.Context; +import android.graphics.Color; +import android.os.Build; +import android.util.Log; +import android.view.MenuItem; +import android.view.View; +import android.view.ViewGroup; +import android.support.design.widget.AppBarLayout; +import android.support.design.widget.CollapsingToolbarLayout; +import android.support.v7.app.AppCompatActivity; +import android.support.v7.widget.Toolbar; + +/*Draft java code by "Lazarus Android Module Wizard" [10/7/2017 0:29:44]*/ +/*https://github.com/jmpessoa/lazandroidmodulewizard*/ +/*jVisualControl LAMW template*/ + +public class jsToolbar extends Toolbar /*dummy*/ { //please, fix what GUI object will be extended! + + private long pascalObj = 0; // Pascal Object + private Controls controls = null; //Java/Pascal [events] Interface ... + private jCommons LAMWCommon; + private Context context = null; + + //private OnClickListener onClickListener; // click event + private Boolean enabled = true; // click-touch enabled! + private boolean IsActionBar = false; + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + public jsToolbar(Controls _ctrls, long _Self, boolean _asActionBar) { //Add more others news "_xxx" params if needed! + + super(_ctrls.activity); + context = _ctrls.activity; + pascalObj = _Self; + controls = _ctrls; + LAMWCommon = new jCommons(this,context,pascalObj); + + //https://www.101apps.co.za/index.php/articles/using-toolbars-in-your-apps.html + //you should call this first if you are going to be adding logos and navigation icons + //else they won't show. + if (_asActionBar == true) { + IsActionBar = true; + this.SetAsActionBar(true); + } + //this.setNavigationIcon(android.R.drawable.ic_menu_gallery); + this.setNavigationOnClickListener(new View.OnClickListener() { //trigger only of IsActionBar = false + @Override + public void onClick(View v) { + controls.pOnClickGeneric(pascalObj, Const.Click_Default); + } + }); + /* + * This is the easiest way to transition from the ActionBar to the new Toolbar, + * as all of your existing Action Bar menus will + * automatically work if you are inflating them in your OnCreateOptionsMenu method. + * ref. https://blog.xamarin.com/android-tips-hello-toolbar-goodbye-action-bar/ + */ + //http://www.vogella.com/tutorials/AndroidActionBar/article.html + //try as same actionbar + this.setOnMenuItemClickListener(new Toolbar.OnMenuItemClickListener() { + @Override + public boolean onMenuItemClick(MenuItem item) { + // TODO Auto-generated method stub + //PASCAL .......... + return false; + } + }); + } //end constructor + + public void jFree() { + //free local objects... + //setOnClickListener(null); + LAMWCommon.free(); + } + + @Override + protected void onSizeChanged(int w, int h, int oldw, int oldh) { + super.onSizeChanged(w, h, oldw, oldh); + + // Change the size and update the layout + controls.formNeedLayout = true; + controls.appLayout.requestLayout(); + } + + public void SetViewParent(ViewGroup _viewgroup) { + LAMWCommon.setParent(_viewgroup); + } + + public ViewGroup GetParent() { + return LAMWCommon.getParent(); + } + + public void RemoveFromViewParent() { + LAMWCommon.removeFromViewParent(); + } + + public View GetView() { + return this; + } + + public void SetLParamWidth(int _w) { + LAMWCommon.setLParamWidth(_w); + } + + public void SetLParamHeight(int _h) { + LAMWCommon.setLParamHeight(_h); + } + + public int GetLParamWidth() { + return LAMWCommon.getLParamWidth(); + } + + public int GetLParamHeight() { + return LAMWCommon.getLParamHeight(); + } + + public void SetLGravity(int _g) { + LAMWCommon.setLGravity(_g); + } + + public void SetLWeight(float _w) { + LAMWCommon.setLWeight(_w); + } + + public void SetLeftTopRightBottomWidthHeight(int _left, int _top, int _right, int _bottom, int _w, int _h) { + LAMWCommon.setLeftTopRightBottomWidthHeight(_left,_top,_right,_bottom,_w,_h); + } + + public void AddLParamsAnchorRule(int _rule) { + LAMWCommon.addLParamsAnchorRule(_rule); + } + + public void AddLParamsParentRule(int _rule) { + LAMWCommon.addLParamsParentRule(_rule); + } + + public void SetLayoutAll(int _idAnchor) { + LAMWCommon.setLayoutAll(_idAnchor); + } + + public void ClearLayoutAll() { + LAMWCommon.clearLayoutAll(); + } + + //GUIDELINE: please, preferentially, init all yours params names with "_", ex: int _flag, String _hello ... + + private int GetDrawableResourceId(String _resName) { + try { + Class res = R.drawable.class; + Field field = res.getField(_resName); //"drawableName" + int drawableId = field.getInt(null); + return drawableId; + } + catch (Exception e) { + Log.e("jsToolbar", "Failure to get drawable resource id...", e); + return 0; + } + } + + public void SetTitle(String _title) { + if (IsActionBar) + ((AppCompatActivity) controls.activity).getSupportActionBar().setTitle(_title); + else + this.setTitle(_title); + } + + //Setting navigationIcon + public void SetNavigationIcon(String _imageIdentifier) { + this.setNavigationIcon(GetDrawableResourceId(_imageIdentifier)); //R.drawable.ic_launcher; + } + + //Setting appIcon + public void SetLogo(String _imageIdentifier) { + this.setLogo(GetDrawableResourceId(_imageIdentifier)); //R.drawable.ic_launcher + } + + public void SetAsActionBar(boolean _value) { + if (_value) { + IsActionBar = true; + ((AppCompatActivity) controls.activity).setSupportActionBar(this); + } else { + IsActionBar = false; + ((AppCompatActivity) controls.activity).setSupportActionBar(null); + } + } + + public void SetSubtitle(String _subtitle) { + if (IsActionBar) ((AppCompatActivity) controls.activity).getSupportActionBar().setSubtitle(_subtitle); + } + + public void SetHomeButtonEnabled(boolean _value) { + if (IsActionBar) { + if (_value) { + ((AppCompatActivity) controls.activity).getSupportActionBar().setHomeButtonEnabled(true); //Enable or disable the "home" button in the corner of the action bar. + ((AppCompatActivity) controls.activity).getSupportActionBar().setDisplayHomeAsUpEnabled(true); + }else { + ((AppCompatActivity) controls.activity).getSupportActionBar().setHomeButtonEnabled(false); + ((AppCompatActivity) controls.activity).getSupportActionBar().setDisplayHomeAsUpEnabled(false); + } + } + } + + public void SetDisplayHomeAsUpEnabled(boolean _value) { + if (IsActionBar) { + if (_value) { //Set this to true if selecting "home" returns up by a single level in your UI rather than back to the top level or front page + ((AppCompatActivity) controls.activity).getSupportActionBar().setDisplayHomeAsUpEnabled(true); + }else { + ((AppCompatActivity) controls.activity).getSupportActionBar().setDisplayHomeAsUpEnabled(false); + } + } + } + + public void SetDisplayUseLogoEnabled(boolean _value) { + if (IsActionBar) + ((AppCompatActivity) controls.activity).getSupportActionBar().setDisplayUseLogoEnabled(_value); + } + + public void SetTitleTextColor(int _color) { + this.setTitleTextColor(_color); + } + + /* + public void SetElevation(int _value) { + ((AppCompatActivity) controls.activity).getSupportActionBar().setElevation(_value); + } + */ + + public void SetScrollFlag(int _collapsingScrollFlag) { //called in OnJNIPrompt + LAMWCommon.setScrollFlag(_collapsingScrollFlag); + } + + //https://github.com/codepath/android_guides/wiki/Handling-Scrolls-with-CoordinatorLayout + public void SetCollapseMode(int _collapseMode) { //called: Pascal "OnJNIPrompt" event + LAMWCommon.setCollapseMode(_collapseMode); + } + + /* + public void SetHeightDP(int _heightDP) { + ViewGroup.LayoutParams params1 = this.getLayoutParams(); + Toolbar.LayoutParams newParams1; + if (params1 instanceof AppBarLayout.LayoutParams) { + newParams1 = (Toolbar.LayoutParams)params1; + } else { + newParams1 = new Toolbar.LayoutParams(params1); + } + + // int h = (int) (_heightDP * getResources().getDisplayMetrics().density); //_height = 192 + + int h = _heightDP; + newParams1.height = h; + //this.setMinimumHeight(42); + this.setLayoutParams(newParams1); + this.requestLayout(); + } + */ + + public void SetFitsSystemWindows(boolean _value) { + LAMWCommon.setFitsSystemWindows(_value); + } + + public void SetTheme(int _theme) { + context.setTheme(R.style.ThemeOverlay_AppCompat_Dark_ActionBar); + this.invalidate(); + } + + public void SetSubtitleTextColor(int _color) { + if (IsActionBar == true) { + this.setSubtitleTextColor(_color); + } + } + + public void SetBackgroundToPrimaryColor() { + this.setBackgroundColor(LAMWCommon.getColorFromResources(context, R.color.primary)); + } + + public int GetPrimaryColor() { + return LAMWCommon.getColorFromResources(context, R.color.primary); + } + + public int GetSuggestedMinimumHeight() { + return this.getSuggestedMinimumHeight(); + } + + public void SetSuggestedMinimumHeight() { + this.setMinimumHeight(this.getSuggestedMinimumHeight()); + } + + public void SetMinimumHeight(int _value) { + this.setMinimumHeight(_value); + } + + public void SetHeightByDisplayMetricsDensity(int _value) { + ViewGroup.LayoutParams params1 = this.getLayoutParams(); + Toolbar.LayoutParams newParams1; + if (params1 instanceof AppBarLayout.LayoutParams) { + newParams1 = (Toolbar.LayoutParams)params1; + } else { + newParams1 = new Toolbar.LayoutParams(params1); + } + int h = (int) (_value * getResources().getDisplayMetrics().density); //_height = 192 + newParams1.height = h; + //this.setMinimumHeight(42); + this.setLayoutParams(newParams1); + this.requestLayout(); + } + + +} + diff --git a/SmartFritzSchalter/SmartFritzSchalter.ico b/SmartFritzSchalter/SmartFritzSchalter.ico new file mode 100644 index 0000000000000000000000000000000000000000..0341321b5d952e1662a3d9444a73cf9f42a7db37 Binary files /dev/null and b/SmartFritzSchalter/SmartFritzSchalter.ico differ diff --git a/SmartFritzSchalter/SmartFritzSchalter.lpi b/SmartFritzSchalter/SmartFritzSchalter.lpi new file mode 100644 index 0000000000000000000000000000000000000000..20d66cac2c10dcfe06708647824eb356c3a01a1d --- /dev/null +++ b/SmartFritzSchalter/SmartFritzSchalter.lpi @@ -0,0 +1,92 @@ + + + + + + + + + + + <Scaled Value="True"/> + <ResourceType Value="res"/> + <UseXPManifest Value="True"/> + <XPManifest> + <DpiAware Value="True"/> + </XPManifest> + <Icon Value="0"/> + </General> + <BuildModes Count="1"> + <Item1 Name="Default" Default="True"/> + </BuildModes> + <PublishOptions> + <Version Value="2"/> + <UseFileFilters Value="True"/> + </PublishOptions> + <RunParams> + <FormatVersion Value="2"/> + </RunParams> + <RequiredPackages Count="4"> + <Item1> + <PackageName Value="laz_synapse"/> + </Item1> + <Item2> + <PackageName Value="eccontrols"/> + </Item2> + <Item3> + <PackageName Value="HashLib4PascalPackage"/> + </Item3> + <Item4> + <PackageName Value="LCL"/> + </Item4> + </RequiredPackages> + <Units Count="3"> + <Unit0> + <Filename Value="SmartFritzSchalter.lpr"/> + <IsPartOfProject Value="True"/> + </Unit0> + <Unit1> + <Filename Value="unit1.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="Form1"/> + <HasResources Value="True"/> + <ResourceBaseClass Value="Form"/> + <UnitName Value="Unit1"/> + </Unit1> + <Unit2> + <Filename Value="fritzbox.pas"/> + <IsPartOfProject Value="True"/> + </Unit2> + </Units> + </ProjectOptions> + <CompilerOptions> + <Version Value="11"/> + <Target> + <Filename Value="SmartFritzSchalter"/> + </Target> + <SearchPaths> + <IncludeFiles Value="$(ProjOutDir)"/> + <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/> + </SearchPaths> + <Linking> + <Options> + <Win32> + <GraphicApplication Value="True"/> + </Win32> + </Options> + </Linking> + </CompilerOptions> + <Debugging> + <Exceptions Count="3"> + <Item1> + <Name Value="EAbort"/> + </Item1> + <Item2> + <Name Value="ECodetoolError"/> + </Item2> + <Item3> + <Name Value="EFOpenError"/> + </Item3> + </Exceptions> + </Debugging> +</CONFIG> diff --git a/SmartFritzSchalter/SmartFritzSchalter.lpr b/SmartFritzSchalter/SmartFritzSchalter.lpr new file mode 100644 index 0000000000000000000000000000000000000000..437742b300e78efb3ebc40fbd0d2b8bbceef24c7 --- /dev/null +++ b/SmartFritzSchalter/SmartFritzSchalter.lpr @@ -0,0 +1,22 @@ +program SmartFritzSchalter; + +{$mode objfpc}{$H+} + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + {$ENDIF}{$ENDIF} + Interfaces, // this includes the LCL widgetset + Forms, Unit1, fritzbox + { you can add units after this }; + +{$R *.res} + +begin + RequireDerivedFormResource:=True; + Application.Scaled:=True; + Application.Initialize; + Application.CreateForm(TForm1, Form1); + Application.Run; +end. + diff --git a/SmartFritzSchalter/SmartFritzSchalter.lps b/SmartFritzSchalter/SmartFritzSchalter.lps new file mode 100644 index 0000000000000000000000000000000000000000..9e74e0dc7697738eea6863f68d4d795a1599975a --- /dev/null +++ b/SmartFritzSchalter/SmartFritzSchalter.lps @@ -0,0 +1,225 @@ +<?xml version="1.0" encoding="UTF-8"?> +<CONFIG> + <ProjectSession> + <Version Value="12"/> + <BuildModes Active="Default"/> + <Units Count="11"> + <Unit0> + <Filename Value="SmartFritzSchalter.lpr"/> + <IsPartOfProject Value="True"/> + <EditorIndex Value="-1"/> + <WindowIndex Value="-1"/> + <TopLine Value="-1"/> + <CursorPos X="-1" Y="-1"/> + <UsageCount Value="62"/> + </Unit0> + <Unit1> + <Filename Value="unit1.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="Form1"/> + <HasResources Value="True"/> + <ResourceBaseClass Value="Form"/> + <UnitName Value="Unit1"/> + <IsVisibleTab Value="True"/> + <TopLine Value="10"/> + <CursorPos X="45" Y="25"/> + <UsageCount Value="62"/> + <Loaded Value="True"/> + <LoadedDesigner Value="True"/> + </Unit1> + <Unit2> + <Filename Value="fritzbox.pas"/> + <IsPartOfProject Value="True"/> + <EditorIndex Value="1"/> + <CursorPos X="36" Y="342"/> + <UsageCount Value="48"/> + <Loaded Value="True"/> + </Unit2> + <Unit3> + <Filename Value="../../lazarus/components/lazutils/laz2_xmlread.pas"/> + <UnitName Value="laz2_XMLRead"/> + <EditorIndex Value="-1"/> + <TopLine Value="1497"/> + <CursorPos Y="1517"/> + <UsageCount Value="10"/> + </Unit3> + <Unit4> + <Filename Value="../../lazarus/lcl/include/control.inc"/> + <EditorIndex Value="-1"/> + <TopLine Value="2893"/> + <CursorPos Y="2914"/> + <UsageCount Value="14"/> + </Unit4> + <Unit5> + <Filename Value="../../lazarus/lcl/include/buttoncontrol.inc"/> + <EditorIndex Value="-1"/> + <TopLine Value="6"/> + <CursorPos Y="22"/> + <UsageCount Value="21"/> + </Unit5> + <Unit6> + <Filename Value="../../lazarus/lcl/include/buttons.inc"/> + <EditorIndex Value="-1"/> + <TopLine Value="150"/> + <CursorPos Y="170"/> + <UsageCount Value="21"/> + </Unit6> + <Unit7> + <Filename Value="../../lazarus/lcl/include/wincontrol.inc"/> + <EditorIndex Value="-1"/> + <TopLine Value="5393"/> + <CursorPos Y="5412"/> + <UsageCount Value="17"/> + </Unit7> + <Unit8> + <Filename Value="../../lazarus/lcl/lclmessageglue.pas"/> + <UnitName Value="LCLMessageGlue"/> + <EditorIndex Value="-1"/> + <TopLine Value="100"/> + <CursorPos Y="123"/> + <UsageCount Value="17"/> + </Unit8> + <Unit9> + <Filename Value="../../lazarus/lcl/interfaces/gtk2/gtk2wsstdctrls.pp"/> + <UnitName Value="Gtk2WSStdCtrls"/> + <EditorIndex Value="-1"/> + <TopLine Value="2442"/> + <CursorPos X="37" Y="2450"/> + <UsageCount Value="17"/> + </Unit9> + <Unit10> + <Filename Value="../../ccr/synapse/httpsend.pas"/> + <EditorIndex Value="-1"/> + <TopLine Value="138"/> + <CursorPos X="71" Y="138"/> + <UsageCount Value="13"/> + </Unit10> + </Units> + <JumpHistory Count="30" HistoryIndex="29"> + <Position1> + <Filename Value="fritzbox.pas"/> + <Caret Line="234" Column="29" TopLine="221"/> + </Position1> + <Position2> + <Filename Value="fritzbox.pas"/> + <Caret Line="8" Column="133"/> + </Position2> + <Position3> + <Filename Value="fritzbox.pas"/> + <Caret Line="231" Column="31" TopLine="217"/> + </Position3> + <Position4> + <Filename Value="fritzbox.pas"/> + <Caret Line="232" Column="40" TopLine="213"/> + </Position4> + <Position5> + <Filename Value="unit1.pas"/> + <Caret Line="8" Column="10"/> + </Position5> + <Position6> + <Filename Value="unit1.pas"/> + <Caret Line="177" Column="9" TopLine="157"/> + </Position6> + <Position7> + <Filename Value="unit1.pas"/> + <Caret Line="176" Column="47" TopLine="159"/> + </Position7> + <Position8> + <Filename Value="fritzbox.pas"/> + <Caret Line="7" Column="111" TopLine="2"/> + </Position8> + <Position9> + <Filename Value="fritzbox.pas"/> + <Caret Line="48" Column="39" TopLine="19"/> + </Position9> + <Position10> + <Filename Value="fritzbox.pas"/> + <Caret Line="207" Column="49" TopLine="187"/> + </Position10> + <Position11> + <Filename Value="fritzbox.pas"/> + <Caret Line="380" Column="18" TopLine="357"/> + </Position11> + <Position12> + <Filename Value="fritzbox.pas"/> + <Caret Line="48" Column="39" TopLine="32"/> + </Position12> + <Position13> + <Filename Value="fritzbox.pas"/> + <Caret Line="207" Column="44" TopLine="196"/> + </Position13> + <Position14> + <Filename Value="fritzbox.pas"/> + <Caret Column="28"/> + </Position14> + <Position15> + <Filename Value="fritzbox.pas"/> + <Caret Line="377" Column="39" TopLine="353"/> + </Position15> + <Position16> + <Filename Value="fritzbox.pas"/> + <Caret Line="48" Column="39" TopLine="32"/> + </Position16> + <Position17> + <Filename Value="unit1.pas"/> + <Caret Line="10" Column="3"/> + </Position17> + <Position18> + <Filename Value="fritzbox.pas"/> + <Caret Line="9" Column="31"/> + </Position18> + <Position19> + <Filename Value="fritzbox.pas"/> + <Caret Line="49" Column="13" TopLine="33"/> + </Position19> + <Position20> + <Filename Value="unit1.pas"/> + <Caret Line="300" Column="47"/> + </Position20> + <Position21> + <Filename Value="unit1.pas"/> + <Caret Line="175" Column="30" TopLine="167"/> + </Position21> + <Position22> + <Filename Value="fritzbox.pas"/> + <Caret Line="13" Column="66"/> + </Position22> + <Position23> + <Filename Value="unit1.pas"/> + <Caret Line="153" TopLine="145"/> + </Position23> + <Position24> + <Filename Value="unit1.pas"/> + <Caret Line="258" TopLine="248"/> + </Position24> + <Position25> + <Filename Value="fritzbox.pas"/> + <Caret Line="108" Column="31" TopLine="88"/> + </Position25> + <Position26> + <Filename Value="fritzbox.pas"/> + <Caret Line="52" Column="31" TopLine="35"/> + </Position26> + <Position27> + <Filename Value="fritzbox.pas"/> + <Caret Line="108" Column="31" TopLine="94"/> + </Position27> + <Position28> + <Filename Value="unit1.pas"/> + <Caret Line="42" Column="104" TopLine="32"/> + </Position28> + <Position29> + <Filename Value="fritzbox.pas"/> + <Caret Line="52" Column="31" TopLine="35"/> + </Position29> + <Position30> + <Filename Value="fritzbox.pas"/> + <Caret Line="314" Column="50" TopLine="296"/> + </Position30> + </JumpHistory> + <RunParams> + <FormatVersion Value="2"/> + <Modes ActiveMode=""/> + </RunParams> + </ProjectSession> +</CONFIG> diff --git a/SmartFritzSchalter/SmartFritzSchalter.res b/SmartFritzSchalter/SmartFritzSchalter.res new file mode 100644 index 0000000000000000000000000000000000000000..bec39b4a4c4b0dfa0090a21b8f32b5c16344ccc3 Binary files /dev/null and b/SmartFritzSchalter/SmartFritzSchalter.res differ diff --git a/SmartFritzSchalter/fritzbox.pas b/SmartFritzSchalter/fritzbox.pas new file mode 100644 index 0000000000000000000000000000000000000000..4caaf6ba08cff951c93b6b36c37019e12534be26 --- /dev/null +++ b/SmartFritzSchalter/fritzbox.pas @@ -0,0 +1,375 @@ +unit fritzbox; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, fphttpclient, HlpIHash, HlpMD5, laz2_XMLRead, + laz2_DOM, RegExpr, opensslsockets; + +type + TBoxInfo = record + SID: string; + Response: string; + Status: integer; + BlockTime: string; + ExternalIP: string; + end; + + TOnLogMsg = procedure(Sender: TObject; EMessage: string) of object; + + { TFritzBox } + + TFritzBox = class(TObject) + private + {$IFDEF Linux} + ffHTTP: TFPHttpClient; // unter Linux: Standard-HTTP-Client + {$ENDIF Linux} + {$IFDEF ANDROID} + ffHTTP: JHttpCLient; // unter Android: JHttpCLient + {$ENDIF ANDROID} + fError: string; + fBox: TBoxInfo; + FFboxURL: string; + FServiceURL: string; + FOnLogMsg: TOnLogMsg; + + function GetExternalIP: string; + function GetResponse: string; + function GetSID: string; + function GetState: integer; + function GetBlockTime: string; + procedure SetFBURL(AValue: string); + procedure Logger(EMessage: string); + procedure SetServiceURL(AValue: string); + function GetNodeValue(HttpResultString, SearchString: string): string; + public + constructor Create; + destructor Destroy; override; + procedure LogIn(ABenutzername: string = ''; APassword: string = ''); + procedure Logout; + procedure FboxGetURL(); + procedure FboxGetExternalIP(); + property SID: string read GetSID; + property FBOXURL: string write SetFBURL; + property ServiceURL: string write SetServiceURL; + property OnLogMsg: TOnLogMsg read FOnLogMsg write FOnLogMsg; + property Response: string read GetResponse; + property State: integer read GetState; + property BlockTime: string read GetBlockTime; + property ExternalIP: string read GetExternalIP; + end; + + +implementation + +{ TFritzBox } + +function TFritzBox.GetSID: string; +begin + Result := FBox.SID; +end; + +function TFritzBox.GetState: integer; +begin + Result := FBox.Status; +end; + +function TFritzBox.GetBlockTime: string; +begin + Result := Fbox.BlockTime; +end; + +function TFritzBox.GetResponse: string; +begin + Result := FBox.Response; +end; + +function TFritzBox.GetExternalIP: string; +begin + Result := FBox.ExternalIP; +end; + +procedure TFritzBox.SetFBURL(AValue: string); +begin + FFBOXURL := AValue; +end; + +procedure TFritzBox.SetServiceURL(AValue: string); +begin + FServiceURL := AValue; +end; + +// Protokoll/Log als Event +procedure TFritzBox.Logger(EMessage: string); +begin + if Assigned(OnLogMsg) then + begin + OnLogMsg(self, EMessage); + end; + +end; +// Get-Abfrage an die Fritzbox senden +// Ergebnis in Fbox.Response speichern +procedure TFritzBox.FboxGetURL(); +begin + Fbox.Response := ''; + FBox.Status := 0; + try + Fbox.Response := ffHTTP.Get(FServiceURL); + except + Logger('Fehler: Konnte ' + FServiceURL + ' nicht öffnen.'); + end; + {$IFDEF Linux} + FBox.Status := ffHTTP.ResponseStatusCode; // Rückgabe-Code von TFPHttpClient + {$ENDIF Linux} + {$IFDEF ANDROID} + FBox.Status := ffHTTP.GetResponseCode; + // bei Android andere Eigenschaft, gleiches Ergebnis + {$ENDIF ANDROID} +end; +// öffentliche/externe IP-Adresse der Fritzbox ermitteln, SOAP-Abfrage +// siehe https://avm.de/fileadmin/user_upload/Global/Service/Schnittstellen/wanipconnSCPD.pdf +procedure TFritzBox.FboxGetExternalIP(); +var + request: TStringList; + stream, Result: TMemoryStream; + RegexObj: TRegExpr; + S: string; + I: integer; +begin + Fbox.Response := ''; + FBox.Status := 0; + FBox.ExternalIP := ''; + + ffHTTP.RequestHeaders.Add('Pragma: no-cache'); + ffHTTP.RequestHeaders.Add('Cache-Control: no-cache'); + ffHTTP.RequestHeaders.Add( + 'SoapAction:urn:schemas-upnp-org:service:WANIPConnection:1#GetExternalIPAddress'); + ffHTTP.RequestHeaders.Add('CONTENT-TYPE: text/xml; charset="utf-8"'); + request := TStringList.Create; + request.Add('<?xml version="1.0" encoding="utf-8"?>'); + request.Add( + '<s:Envelope s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">'); + request.Add(' <s:Body>'); + request.Add( + ' <u:GetExternalIPAddress xmlns:u="urn:schemas-upnp-org:service:WANIPConnection:1" />'); + + request.Add(' </s:Body>'); + request.Add('</s:Envelope>'); + stream := TMemoryStream.Create; + request.SaveToStream(stream); + + stream.Position := 0; + request.Clear; + + ffHTTP.RequestHeaders.Add('Content-Length: ' + IntToStr(stream.Size)); + ffHTTP.RequestBody := stream; + Result := TMemoryStream.Create; + Logger('Post: ' + FServiceURL); + + try + ffHTTP.Post(FServiceURL, Result); //Post-Abfrage + except + Logger('Fehler: Konnte ' + FServiceURL + ' nicht öffnen'); + end; + + Result.Position := 0; + request.LoadFromStream(Result); + + //IP-Adresse ermitteln + RegexObj := TRegExpr.Create; + try + RegexObj.Expression := '(?si)<NewExternalIPAddress>(.*?)<\/NewExternalIPAddress>'; + S := ''; + for i := 0 to request.Count - 1 do + begin + Logger('SOAP Request: ' + request.Strings[i]); + if RegexObj.Exec(request.Strings[i]) then + begin + S := RegexObj.Match[1]; + end; + end; + + if S <> '' then + begin + Logger('Externe IP: ' + S); + FBox.ExternalIP := S; + end; + + finally + RegexObj.Free; + end; + request.Free; + stream.Free; +end; + +constructor TFritzBox.Create; +begin + {$IFDEF Linux} + ffHTTP := TFPHttpClient.Create(nil); + {$ENDIF Linux} + Fbox.SID := '0000000000000000'; +end; + +destructor TFritzBox.Destroy; +begin + ffHTTP.Free; + inherited; +end; +// Bei der Fritzbox anmelden +// Zum Verfahren siehe +// https://avm.de/fileadmin/user_upload/Global/Service/Schnittstellen/Session-ID_deutsch_13Nov18.pdf +procedure TFritzBox.LogIn(ABenutzername: string = ''; APassword: string = ''); +var + TheChallenge, TheResponse, TheSid: string; + UseOldSID: boolean; + + function InternalGetChallenge: string; + var + S: string; + begin + try + Result := ffHTTP.Get(FFBoxURL + '/login_sid.lua'); + except + on E: Exception do + begin + Logger('Fehler: ' + E.Message); + end; + + end; + + Logger('Result: ' + Result); + FBox.BlockTime := '0'; + + fbox.Status := ffHTTP.ResponseStatusCode; + + S := GetNodeValue(Result, 'BlockTime'); + if S <> '0' then + begin + FBox.BlockTime := S; + end + else + begin + if Pos('<challenge>', LowerCase(Result)) = 0 then + raise Exception.Create('Fehler beim Initialisieren der Verbindung.'); + + Result := GetNodeValue(Result, 'Challenge'); + end; + end; + // MD5 erzeugen + function InternalGetMD5: string; + var + MD5Hash: IHash; + Bytes: TBytes; + str: string; + //i : Integer; + begin + Result := ''; + str := TheChallenge + '-' + APassword; + MD5Hash := TMD5.Create(); + Bytes := TEncoding.Unicode.GetBytes(str); + Result := LowerCase(MD5Hash.ComputeBytes(Bytes).ToString()); + end; + // SID holen + function InternalGetSid: string; + var + Params: string; + begin + Result := ''; + if Fbox.SID <> '0000000000000000' then + Params := ('?sid=' + Fbox.SID) + else + Params := ('?username=' + ABenutzername + '&response=' + + TheChallenge + '-' + TheResponse); + Result := ffHTTP.Get(FFBoxURL + '/login_sid.lua' + Params); + fbox.Status := ffHTTP.ResponseStatusCode; + Logger(Result); + if Pos('<sid>', LowerCase(Result)) = 0 then + raise Exception.Create('Fehler beim Generieren der Sitzungs-ID.'); + + Result := GetNodeValue(Result, 'SID'); + end; + +begin + Fbox.Response := ''; + FBox.Status := 0; +{$IFDEF Linux} + ffHTTP.AllowRedirect := True; //muss nicht sein, aber zur Sicherheit +{$ENDIF Linux} + UseOldSID := False; + Logger('Starte Verbindung zu: ' + FFBoxURL); + try + if Fbox.SID <> '0000000000000000' then + if InternalGetSid = FBox.SID then + begin + UseOldSID := True; + Logger('Verwende bisherige SID: ' + FBox.SID); + end; + + if UseOldSID = False then + begin + TheChallenge := InternalGetChallenge; + if fBox.BlockTime <> '0' then + begin + FBox.SID := '0000000000000000'; + end + else + begin + Logger('Challenge: ' + TheChallenge); + TheResponse := InternalGetMD5; + Logger('MD5: ' + TheResponse); + TheSid := InternalGetSid; + Logger('Neue SID: ' + TheSid); + FBox.SID := TheSid; + end; + end; + except + on E: Exception do + fError := E.Message; + end; +end; +//Abmelden, bei Bedarf +procedure TFritzBox.Logout; +begin + ffHTTP.AllowRedirect := True; + ffHTTP.Get(FFBoxURL + '/login_sid.lua?logout=0&sid=' + FBox.SID); + fbox.Status := ffHTTP.ResponseStatusCode; + fBox.Response := ''; + fBox.SID := '0000000000000000'; +end; +// SessionInfo im XML-String finden +function TFritzBox.GetNodeValue(HttpResultString, SearchString: string): string; +var + Doc: TXMLDocument; + Stream: TStringStream; + ChildNode, SearchNode: TDOMNode; +begin + Result := ''; + Stream := TStringStream.Create(HttpResultString); + ReadXMLFile(Doc, Stream); + try + ChildNode := Doc.FindNode('SessionInfo'); + if ChildNode <> nil then + begin + if ChildNode.HasChildNodes then + begin + SearchNode := ChildNode.findNode(SearchString); + if SearchNode <> nil then + begin + if SearchNode.HasChildNodes then + begin + Result := SearchNode.FirstChild.NodeValue; + end; + end; + end; + end; + finally + Doc.Free; + Stream.Free; + end; +end; + + +end. diff --git a/SmartFritzSchalter/unit1.lfm b/SmartFritzSchalter/unit1.lfm new file mode 100644 index 0000000000000000000000000000000000000000..bb26e87880a53d3c2109b01d6dc5bfdbebf87880 --- /dev/null +++ b/SmartFritzSchalter/unit1.lfm @@ -0,0 +1,261 @@ +object Form1: TForm1 + Left = 992 + Height = 487 + Top = 277 + Width = 808 + Caption = 'Fritzbox steuern' + ClientHeight = 487 + ClientWidth = 808 + OnClose = FormClose + OnCreate = FormCreate + SessionProperties = 'chkDebug.Checked;edtURL.Text;edtUserName.Text;chkSavePassword.Checked' + LCLVersion = '2.1.0.0' + object ECSwitch1: TECSwitch + Left = 128 + Height = 28 + Top = 464 + Width = 145 + Caption = 'ECSwitch1' + TabOrder = 0 + end + object Button1: TButton + Left = 32 + Height = 25 + Top = 464 + Width = 75 + Caption = 'Button1' + TabOrder = 1 + end + object Panel1: TPanel + Left = 5 + Height = 425 + Top = 0 + Width = 798 + Align = alClient + BorderSpacing.Left = 5 + BorderSpacing.Right = 5 + BevelOuter = bvNone + ClientHeight = 425 + ClientWidth = 798 + TabOrder = 2 + object PageControl1: TPageControl + Left = 0 + Height = 420 + Top = 5 + Width = 798 + ActivePage = TabSheet1 + Align = alClient + BorderSpacing.Top = 5 + TabIndex = 0 + TabOrder = 0 + object TabSheet1: TTabSheet + Caption = 'Steuerung' + ClientHeight = 387 + ClientWidth = 794 + object TreeView1: TTreeView + Left = 5 + Height = 216 + Top = 171 + Width = 784 + Align = alClient + BorderSpacing.Left = 5 + BorderSpacing.Right = 5 + TabOrder = 0 + end + object ScrollBox1: TScrollBox + Left = 5 + Height = 166 + Top = 5 + Width = 784 + HorzScrollBar.Page = 1 + VertScrollBar.Page = 1 + Align = alTop + BorderSpacing.Left = 5 + BorderSpacing.Top = 5 + BorderSpacing.Right = 5 + TabOrder = 1 + end + end + object TabSheet2: TTabSheet + Caption = 'Einstellungen' + ClientHeight = 387 + ClientWidth = 794 + object edtURL: TEdit + Left = 136 + Height = 31 + Top = 16 + Width = 272 + TabOrder = 0 + end + object edtUserName: TEdit + Left = 136 + Height = 31 + Top = 53 + Width = 272 + TabOrder = 1 + end + object edtPassword: TEdit + Left = 136 + Height = 31 + Top = 92 + Width = 272 + EchoMode = emPassword + PasswordChar = '*' + TabOrder = 2 + Text = 'Ralfi' + end + object Label1: TLabel + Left = 24 + Height = 21 + Top = 24 + Width = 93 + Caption = 'Fritzbox-URL:' + ParentColor = False + end + object Label2: TLabel + Left = 24 + Height = 21 + Top = 62 + Width = 98 + Caption = 'Benutername:' + ParentColor = False + end + object Label3: TLabel + Left = 24 + Height = 21 + Top = 99 + Width = 67 + Caption = 'Passwort:' + ParentColor = False + end + object chkDebug: TCheckBox + Left = 24 + Height = 24 + Top = 200 + Width = 175 + Caption = 'Debug-Log aktivieren' + TabOrder = 3 + end + object chkShowPassword: TCheckBox + Left = 24 + Height = 24 + Top = 144 + Width = 139 + Caption = 'Passwort zeigen' + OnClick = chkShowPasswordClick + TabOrder = 4 + end + object chkSavePassword: TCheckBox + Left = 24 + Height = 24 + Top = 173 + Width = 161 + Caption = 'Passwort speichern' + Checked = True + State = cbChecked + TabOrder = 5 + end + end + object TabSheet4: TTabSheet + Caption = 'Anrufliste/ext. IP' + ClientHeight = 387 + ClientWidth = 794 + object Memo2: TMemo + Left = 5 + Height = 328 + Top = 0 + Width = 784 + Align = alTop + BorderSpacing.Left = 5 + BorderSpacing.Right = 5 + ScrollBars = ssBoth + TabOrder = 0 + end + object btnCallList: TButton + Left = 16 + Height = 25 + Top = 346 + Width = 195 + Caption = 'Anrufliste herunterladen' + Enabled = False + OnClick = btnCallListClick + TabOrder = 1 + end + object btnExternalIP: TButton + Left = 240 + Height = 25 + Top = 344 + Width = 312 + Caption = 'Externe IP ermitteln (nur im LAN, siehe Log)' + OnClick = btnExternalIPClick + TabOrder = 2 + end + end + object TabSheet3: TTabSheet + Caption = 'Log' + ClientHeight = 387 + ClientWidth = 794 + object Memo1: TMemo + Left = 0 + Height = 363 + Top = 24 + Width = 794 + Align = alClient + ScrollBars = ssBoth + TabOrder = 0 + end + object Label4: TLabel + Left = 0 + Height = 24 + Top = 0 + Width = 794 + Align = alTop + AutoSize = False + Caption = 'Log:' + ParentColor = False + end + end + end + end + object Panel2: TPanel + Left = 0 + Height = 62 + Top = 425 + Width = 808 + Align = alBottom + BevelOuter = bvNone + ClientHeight = 62 + ClientWidth = 808 + TabOrder = 3 + object btnConnect: TButton + Left = 14 + Height = 25 + Top = 16 + Width = 200 + Caption = 'Verbindung herstellen' + OnClick = btnConnectClick + TabOrder = 0 + end + object Label5: TLabel + Left = 224 + Height = 21 + Top = 17 + Width = 250 + Caption = '(Fehler/Rückmeldungen siehe "Log")' + ParentColor = False + end + end + object XMLPropStorage1: TXMLPropStorage + StoredValues = < + item + Name = 'Password' + KeyString = 'settings' + end> + FileName = 'SmartFritzSchalter.xml' + RootNodePath = 'settings' + OnSaveProperties = XMLPropStorage1SaveProperties + OnRestoreProperties = XMLPropStorage1RestoreProperties + Left = 736 + Top = 64 + end +end diff --git a/SmartFritzSchalter/unit1.pas b/SmartFritzSchalter/unit1.pas new file mode 100644 index 0000000000000000000000000000000000000000..29aabe4d735eedd1105fd88d2caf7f8426a6c4f5 --- /dev/null +++ b/SmartFritzSchalter/unit1.pas @@ -0,0 +1,815 @@ +// Die Angaben + +// {$IFDEF ANDROID} +// {$ENDIF ANDROID} + +// {$IFDEF Linux} +// {$ENDIF Linux} + +// sollen nur die wichtigsten Unterschiede zum Code für Linux/Windows zeigen +// und sind nicht vollständig. +// Der Code lässt sich nicht immer 1:1 von Android für Linux übernehmen. + +unit Unit1; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ComCtrls, + ExtCtrls, XMLPropStorage, ECSwitch, laz2_XMLRead, laz2_DOM,fritzbox, BlowFish, base64; + +type + + { TForm1 } + + TForm1 = class(TForm) + btnConnect: TButton; + Button1: TButton; + btnCallList: TButton; + btnExternalIP: TButton; + chkSavePassword: TCheckBox; + chkShowPassword: TCheckBox; + chkDebug: TCheckBox; + ECSwitch1: TECSwitch; + edtPassword: TEdit; + edtURL: TEdit; + edtUserName: TEdit; + Label1: TLabel; + Label2: TLabel; + Label3: TLabel; + Label4: TLabel; + Label5: TLabel; + Memo1: TMemo; + Memo2: TMemo; + PageControl1: TPageControl; + Panel1: TPanel; + Panel2: TPanel; + ScrollBox1: TScrollBox; + TabSheet1: TTabSheet; + TabSheet2: TTabSheet; + TabSheet3: TTabSheet; + TabSheet4: TTabSheet; + TreeView1: TTreeView; + XMLPropStorage1: TXMLPropStorage; + procedure btnCallListClick(Sender: TObject); + procedure btnConnectClick(Sender: TObject); + procedure btnExternalIPClick(Sender: TObject); + procedure chkShowPasswordClick(Sender: TObject); + procedure FormClose(Sender: TObject; var CloseAction: TCloseAction); + procedure FormCreate(Sender: TObject); + procedure aSwitchSwitch(Sender: TObject); + procedure FBReadData(response:String); + Procedure WriteMessages(); + + {$IFDEF ANDROID} + procedure AddControls(num:Integer;SwitchName, State,Present:String); + procedure ClearSwitchPanel(); + {$ENDIF ANDROID} + {$IFDEF Linux} + procedure ClearScrollbox(); + procedure XMLPropStorage1RestoreProperties(Sender: TObject); + procedure XMLPropStorage1SaveProperties(Sender: TObject); + {$ENDIF Linux} + private + procedure Logger2(Sender: TObject; EMessage: String); + public + procedure Logger(msg:String); + procedure ToogleSwitch(AIN: String;Command:String); + end; + +type + // Record für die Werte der SmartHome-Schalter + TSmartData = record + Name: String; + AIN: String; + Present: STring; + State: String; + HasSwitch:Integer; + Celsius:String; + Power:String; + Productname:String; + HasTemperature:Integer; + functionbitmask:String; + SollTemperatur:String; + IsComet:Integer; //Comet Dect, wird nicht ausgewertet + end; +var + Form1: TForm1; + TheSid:String; + FBOXURL:String; + Username:String; + Password:String; + DeviceList: Array of TSmartData; + FBox:TFritzBox; + Messages: TStringList; + +implementation + +{$R *.lfm} + +{ TForm1 } + + +// Veschlüsselung für Passwort +// Diese einfache Veschlüsselung verbirgt das Passwort +// in der Konfigurationsdatei vor den Augen unbefugter Personen +// und erfüllte keine geltenden Sicherheitsstandards. +function EncryptString(aString:string):string; +var Key:string; + EncrytpStream:TBlowFishEncryptStream; + StringStream:TStringStream; + EncryptedString:RawByteString; + B64String: String; +begin + if aString ='' Then Exit; + Key := 's6v9y$B&E)H@McQfTjWnZq4t7w!z%C*F'; //sollte geändert werden + StringStream := TStringStream.Create(''); + EncrytpStream := TBlowFishEncryptStream.Create(Key,StringStream); + try + EncrytpStream.WriteAnsiString(aString); + EncrytpStream.Flush; + EncryptedString := StringStream.DataString; + B64String := EncodeStringBase64(EncryptedString); + finally + EncrytpStream.Free; + StringStream.Free; + end; + EncryptString := B64String; +end; +// Passwort entschlüsseln +function DecryptString(aString:string):string; +var Key:string; + DecrytpStream:TBlowFishDeCryptStream; + StringStream:TStringStream; + DecryptedString:string; + B64String: RawByteString; +begin + if aString ='' Then Exit; + Key := 's6v9y$B&E)H@McQfTjWnZq4t7w!z%C*F'; //sollte geändert werden, gleicher Schlüssel wie oben + B64String := DecodeStringBase64(aString, False); + StringStream := TStringStream.Create(B64String); + try + DecrytpStream := TBlowfishDecryptStream.Create(key, StringStream); + DecryptedString := DecrytpStream.ReadAnsiString; + finally + DecrytpStream.Free; + StringStream.Free; + end; + DecryptString := DecryptedString; +end; +//Hier startet die Abfrage der Fritzbox, SmartHome +procedure TForm1.btnConnectClick(Sender: TObject); + +begin +{$IFDEF Linux} + FBOXURL:=Trim(edtURL.Text); + if (LeftStr(FBOXURL,7) <> 'http://') AND (LeftStr(FBOXURL,8) <> 'https://')then + FBOXURL:='http://' + FBOXURL; + edtURL.Text:=FBOXURL; + Username:=Trim(edtUserName.Text); + Password:=Trim(edtPassword.Text); + Memo1.Clear; + btnCallList.Enabled:=False; + PageControl1.ActivePageIndex:=0; + FBox.OnLogMsg:=@Logger2; + +{$ENDIF Linux} +{$IFDEF ANDROID} + FBox.OnLogMsg:=Logger2; //delphi mode +{$ENDIF ANDROID} + Messages.Clear; + // die URL der Fritzbox wie konfiguriert + Fbox.FBOXURL:=FBOXURL; + FBox.OnLogMsg:=@Logger2; //Ereignis für Meldungen + btnConnect.Enabled:=False; + Application.ProcessMessages; + try + FBox.LogIn(Username, Password); //Anmelden + + If Fbox.State<>200 Then + begin + Logger('Fehler : ' + IntToStr(FBox.State)); + Exit; + end; + + TheSid:=FBox.SID; + Logger('Status Anmeldung: ' + IntToStr(FBox.State)); + Logger('Fritzbox-Antwort : ' + FBox.Response); + Logger('Fritzbox-Status : ' + IntToStr(FBox.State)); + + WriteMessages; + // Anmeldung blockert? + if Fbox.BlockTime <> '0' Then + begin + ShowMessage('Die Anmeldung ist noch blockiert für: ' + Fbox.BlockTime + ' Sekunden.'); + end + else + begin + + If TheSid<>'0000000000000000' Then // Bei erfolgreicher Anmeldung + begin + {$IFDEF Linux} + btnCallList.Enabled := True; + {$ENDIF Linux} + // Die Service-URL für SmartHome + FBox.ServiceURL:=FBOXURL + '/webservices/homeautoswitch.lua?sid=' + + FBox.SID + '&switchcmd=getdevicelistinfos'; + + FBox.FboxGetURL(); + + if FBox.State = 200 Then // erfolgreich + begin + Logger('Antwort DeviceList: ' + FBox.Response); + FBReadData(FBox.Response); + {$IFDEF ANDROID} + AndroidModule5.btnGetCallList.Enabled := True; + AndroidModule1.pnlSwitches.Visible:=True; + {$ENDIF ANDROID} + end + else + begin + // keine DeviceList, keine Smarthome-Funktion + // SID OK daher CallList (AndroidModule5) möglich + Logger('Keine Smarthomefunktion vorhanden oder URL nicht gefunden, Fehler: ' + IntToStr(FBox.State)); + ShowMessage('Keine Smarthomefunktion vorhanden oder URL nicht gefunden, Fehler: ' + IntToStr(FBox.State)); + end; + end + else + begin + ShowMessage('Fehler: Konnte keine Verbindung herstellen. Fehlercode: ' + IntToStr(FBox.State)); + end; +end; + finally + btnConnect.Enabled:=True; + end; +end; +//Meldungen in Memo1 ausgeben +procedure TForm1.WriteMessages(); +var + I:Integer; +begin +{$IFDEF ANDROID} +AndroidModule3.edtLog.Text:=''; +{$ENDIF ANDROID} + If Messages.Count>0 Then + begin + + For I:=0 To Messages.Count -1 do + begin + {$IFDEF ANDROID} + AndroidModule3.edtLog.AppendLn(Messages.Strings[I]); + {$ENDIF ANDROID} + {$IFDEF Linux} + Memo1.Lines.Add(Messages.Strings[I]); + {$ENDIF Linux} + + end; +end; + +end; +// Öffentliche IP-Adresse ermitteln (nur im lokalen Netzwerk) +// Dafür ist keine Anmeldung bei der Fritzbox erforderlich +procedure TForm1.btnExternalIPClick(Sender: TObject); +begin +Memo2.Clear; + FBOXURL:=Trim(edtURL.Text); + FBox.OnLogMsg:=@Logger2; + FBox.ServiceURL:=FBOXURL +':49000/igdupnp/control/WANIPConn1' ; + FBox.FboxGetExternalIP(); + WriteMessages; + If FBox.ExternalIP='' Then + Memo2.Text:='Konnte öffentliche IP nicht ermitteln' + else + Memo2.Text:='Externe IP: '+ FBox.ExternalIP; +end; +procedure TForm1.chkShowPasswordClick(Sender: TObject); +begin + + if chkShowPassword.Checked Then + edtPassword.PasswordChar:=#0 + else + edtPassword.PasswordChar:='*'; +end; +//Anruferliste abfragen +procedure TForm1.btnCallListClick(Sender: TObject); +begin + Memo2.Clear; + FBox.LogIn(Username, Password); + TheSid:=FBox.SID; + FBox.ServiceURL:=FBOXURL + '/fon_num/foncalls_list.lua?sid=' + TheSID + '&csv='; + FBox.FboxGetURL(); + Memo2.text:= FBox.Response; +end; +//Programme beenden, Objekte freigeben +procedure TForm1.FormClose(Sender: TObject; var CloseAction: TCloseAction); +begin + XMLPropStorage1.Save; + Messages.Free; + FBox.Free; +end; +// +procedure TForm1.FormCreate(Sender: TObject); +begin + TheSID:='0000000000000000'; + FBox:=TFritzBox.Create; + Messages:=TStringList.Create; + PageControl1.ActivePageIndex:=0; +end; +//Schalter ermitteln und dann umschalten +procedure TForm1.aSwitchSwitch(Sender: TObject); +var +AIN:String; +Index: Integer; +begin + Index:=TEcSwitch(Sender).tag; + AIN:=DeviceList[Index].AIN; + Application.ProcessMessages; + ToogleSwitch(AIN, 'setswitchtoggle'); + Logger(AIN + ' umschalten'); +end; +//Schalter schalten +procedure TForm1.ToogleSwitch(AIN: String; Command: String); +begin + Fbox.FBOXURL:=FBOXURL; + FBox.LogIn(Username, Password); + TheSid:=FBox.SID; + FBox.ServiceURL:=FBOXURL + '/webservices/homeautoswitch.lua' + '?sid=' + FBox.SID + '&ain=' + AIN + '&switchcmd=' + Command; + FBox.FboxGetURL(); + +end; + +//Daten der Schalter einlesen +procedure TForm1.FBReadData(response:String); +var + Doc:TXMLDocument; + I,J:Integer; + Stream : TStringStream; + numDevices:Integer; + iNode:TDOMNode; + SwitchData:TSmartData; + has_switch, has_temperatur: Boolean; +{$IFDEF Linux} +aSwitch: TECSwitch; + Item0 : TTreeNode; + Item1 : TTreeNode; + Item2 : TTreeNode; +{$ENDIF Linux} +{$IFDEF ANDROID} + aSwitch:JSwitchButton; + LVItems:String; + mySwitch: JSwitchButton; + myTextView: JTextView; +{$ENDIF ANDROID} + // XML-Datei auswerten + procedure ProcessNode(Node: TDOMNode); + var + cNode: TDOMNode; + tmpNode: TDOMNode; + aktTemp:Extended; + aktPower:Extended; + BitMask: integer; + + begin + if Node = nil then Exit; + with Node do + begin + if NodeName='name' then + begin + //Logger(NodeName); + SwitchData.Name:=Node.FirstChild.NodeValue; + end; + + if NodeName='device' then + begin + SwitchData.AIN:=Attributes.GetNamedItem('identifier').NodeValue; + SwitchData.functionbitmask:=Attributes.GetNamedItem('functionbitmask').NodeValue; + BitMask := StrToInt(SwitchData.functionbitmask); + has_switch:=BitMask AND (1 shl 9) <> 0; + has_temperatur := BitMask AND (1 shl 8) <> 0; + + if has_switch then + SwitchData.HasSwitch:=1 + Else + SwitchData.HasSwitch:=0; + + if has_temperatur then + SwitchData.HasTemperature:=1 + Else + SwitchData.HasTemperature:=0; + SwitchData.Productname:=Attributes.GetNamedItem('productname').NodeValue; + end; + + + if NodeName='state' then + begin + tmpNode:=Node.FirstChild; + if tmpNode <> nil Then + begin + if tmpNode.NodeValue<>'' then + begin + SwitchData.State:=tmpNode.NodeValue; + end; + end; + end; + + + if NodeName='celsius' then + begin + tmpNode:=Node.FirstChild; + if tmpNode <> nil Then + begin + if tmpNode.NodeValue<>'' then + begin + aktTemp:=StrToFloat(tmpNode.NodeValue)/10; + SwitchData.Celsius:=FloatToStrF(aktTemp,ffFixed,2,1,formatSettings); + end; + end; + end; + + + //Beispiel für Comet Dect + //if NodeName='tsoll' then + //begin + //tmpNode:=Node.FirstChild; + //if tmpNode <> nil Then + //begin + // if tmpNode.NodeValue<>'' then + // begin + // if tmpNode.NodeValue='254' then + // begin + // SwitchData.SollTemperatur:='ein'; + // end + // Else if tmpNode.NodeValue='253' then + // begin + // SwitchData.SollTemperatur:='aus'; + // Exit; + // end + // Else + // begin + // aktTemp:=StrToFloat(tmpNode.NodeValue)*0.5; + // SwitchData.SollTemperatur:=FloatToStrF(aktTemp,ffNumber,18,1,formatSettings); + // end; + // end; + //end; + //end; + + if NodeName='power' then + begin + tmpNode:=Node.FirstChild; + if tmpNode <> nil Then + begin + if tmpNode.NodeValue<>'' then + begin + aktPower:=StrToFloat(tmpNode.NodeValue)/1000; + Str(aktPower:6:2, SwitchData.Power); + end; + end; + end; + + if NodeName='present' then + begin + tmpNode:=Node.FirstChild; + if tmpNode<> nil Then + begin + if tmpNode.NodeValue<> '' then + SwitchData.Present:=tmpNode.NodeValue; + end; + end; + + cNode := Node.FirstChild; + while cNode <> nil do + begin + ProcessNode(cNode); + cNode := cNode.NextSibling; + end; + end; + end; + +begin + {$IFDEF Linux} + Treeview1.Items.Clear; + // Alles zuvor generierten Schalter entfernen + ClearScrollbox; + {$ENDIF Linux} + {$IFDEF ANDROID} + ClearSwitchPanel; + {$ENDIF ANDROID} + SetLength(DeviceList,0); + // Verbindung erfolgreich? + If TheSID <> '0000000000000000' Then + begin + {$IFDEF ANDROID} + jsFloatingButton1.BackgroundColor:=colbrDarkSeaGreen; + {$ENDIF ANDROID} + Stream:= TStringStream.Create(response); + try + ReadXMLFile(Doc,Stream); //XML-Daten einlesen + i:=0; + J:=0; + numDevices:=Doc.DocumentElement.ChildNodes.Count; + Logger('Geräte gefunden: ' + IntToSTr(numDevices)); + If numDevices=0 Then + begin + Logger('Fehler: Konnte Geräteliste nicht von der Fritzbox laden.'); + ShowMessage('Fehler: Konnte Geräteliste nicht von der Fritzbox laden.'); + Exit; + end; + + SetLength(DeviceList,numDevices); + iNode:=Doc.DocumentElement.FirstChild; + while iNode <> nil do + begin + Logger('============='); + + ProcessNode(iNode); + + DeviceList[i]:=SwitchData; + Logger('Name: ' + SwitchData.name + ' AIN: ' +SwitchData.AIN); + Logger('Verbunden: '+ SwitchData.Present); + Logger('Ist Schalter: '+ IntToStr(SwitchData.HasSwitch)); + if SwitchData.State <> '' Then + Logger('Status ist: '+ SwitchData.State); + Logger('Liefert Temperatur: ' + IntToStr(SwitchData.HasTemperature)); + + //Schalter in ScrollBox1 einbauen + If SwitchData.HasSwitch=1 Then + begin + {$IFDEF Linux} + aSwitch := TECSwitch.Create(Self); + aSwitch.Height:=25; + aSwitch.Top:= 1 + i*30; + aSwitch.Tag:=i; + aSwitch.Name:='Switch'+IntToStr(i); + aSwitch.Caption:=SwitchData.name; + + if SwitchData.State = '0' then + aSwitch.Checked := False; + if SwitchData.State = '1' then + aSwitch.Checked := True; + + aSwitch.OnClick := @aSwitchSwitch; + aSwitch.Parent:=ScrollBox1; + inc(J); + If SwitchData.Present='0' then aSwitch.Enabled:=False; + {$ENDIF Linux} + {$IFDEF ANDROID} + AddControls(I,SwitchData.Name,SwitchData.State,SwitchData.Present); + {$ENDIF ANDROID} + + end; + {$IFDEF ANDROID} + //AndroidModule5.lv. + LVItems:= 'Modell: ' +SwitchData.Productname; + If SwitchData.HasTemperature=1 Then + begin + LVItems:=LVItems + ';Temperatur: ' + SwitchData.Celsius + ' °C'; + end; + if SwitchData.Power<>'' Then + begin + LVItems:=LVItems + ';Aktuelle Leistung: ' + SwitchData.Power +' Watt'; + end; + if SwitchData.State = '0' Then + LVItems:=LVItems + ';Schalter-Status: Aus' + else + LVItems:=LVItems + ';Schalter-Status: An'; + + + AndroidModule4.lv.Add(SwitchData.Name, LVItems); + //Logger(LVItems); + {$ENDIF ANDROID} + + {$IFDEF Linux} + // Detail-Infos für die Liste TreeView1 + Item0:=TreeView1.Items.Add(nil,'Fritzbox'); + Item1:=TreeView1.Items.AddChild(item0,''); + Item1.Text:=SwitchData.Name; + Item2:=TreeView1.Items.AddChild(item1,''); + Item2.Text := 'Modell: ' + SwitchData.Productname; + + If SwitchData.HasTemperature=1 Then + begin + If SwitchData.Celsius <>'' Then + begin + Item2:=TreeView1.Items.AddChild(item1,''); + Item2.Text := 'Temperatur: ' + SwitchData.Celsius + ' °C'; + end; + end; + + if SwitchData.SollTemperatur<>'' then + begin + Item2:=TreeView1.Items.AddChild(item1,''); + If SwitchData.SollTemperatur ='aus' Then + Item2.Text := 'Soll-Temperatur: ' + SwitchData.SollTemperatur + Else If + SwitchData.SollTemperatur ='ein' Then + Item2.Text := 'Soll-Temperatur: ' + SwitchData.SollTemperatur + Else + Item2.Text := 'Soll-Temperatur: ' + SwitchData.SollTemperatur + ' °C'; + + end; + if SwitchData.Power<>'' Then + begin + Item2:=TreeView1.Items.AddChild(item1,''); + Item2.Text := 'Aktuelle Leistung: ' + SwitchData.Power +' Watt'; + + end; + + if SwitchData.Present='0' Then + begin + Item2:=TreeView1.Items.AddChild(item1,''); + Item2.Text := 'Verbunden: Nein'; + + end; + if SwitchData.Present='1' Then + begin + Item2:=TreeView1.Items.AddChild(item1,''); + Item2.Text := 'Verbunden: Ja'; + + end; + {$ENDIF Linux} + + inc(i); + // Alte Daten löschen + SwitchData.Name:=''; + SwitchData.AIN:=''; + SwitchData.Present:=''; + SwitchData.State:=''; + SwitchData.HasSwitch:=0; + SwitchData.HasTemperature:=0; + SwitchData.functionbitmask:=''; + SwitchData.Celsius:=''; + SwitchData.Power:=''; + SwitchData.Productname:=''; + SwitchData.SollTemperatur:=''; + SwitchData.IsComet:=0; + iNode:=iNode.NextSibling; + end; + finally + Stream.Free; + Doc.Free; + end; + end + else + begin + Logger('Konnte keine Verbindung herstellen'); + end; +end; + +{$IFDEF ANDROID} +// Schalter entfernen +procedure TAndroidModule1.ClearSwitchPanel(); +var + I:Integer; +begin +For I:= Length(DeviceList) -1 downto 0 do +begin + If DeviceList[i].HasSwitch=1 Then + (AndroidModule1.FindComponent('SwitchPanel' + IntToStr(i)) As jPanel).free; +end; +{$ENDIF ANDROID} + +// Schalter entfernen +procedure TForm1.ClearScrollbox(); +var +I:Integer; +begin +For I := 0 to Scrollbox1.ControlCount -1 do + begin + (Form1.FindComponent('Switch' + IntToStr(i)) As TECSwitch).free; + end; +end; +{$IFDEF ANDROID} +//Schalter hinzufügen +procedure TForm1.AddControls(num: Integer; SwitchName, State, Present: String); +var + ajTextView:jTextView; + myjTextView:jTextView; + ajPanel:JPanel; + myjPanel:JPanel; + ajSwitch: jSwitchButton; + aSwitch: jSwitchButton; + + +begin + + ajPanel:=jPanel.Create(self); + ajPanel.Parent:=pnlSwitches; + ajPanel.LayoutParamHeight:=lpWrapContent; + ajPanel.LayoutParamWidth:=lpMatchParent; + + If num=0 Then + begin + ajPanel.PosRelativeToParent:=[rpTop]; + end + else + begin + myjPanel:=(AndroidModule1.FindComponent('SwitchPanel' + IntToStr(num-1)) As JPanel); + ajPanel.Anchor:=myjPanel; + ajPanel.PosRelativeToAnchor:=[raBelow]; + end; + ajPanel.Name:='SwitchPanel' + IntToStr(num); + ajPanel.SetMarginLeftTopRightBottom(10,25,25,25); + ajPanel.Init(gApp); + + + myjPanel:=(AndroidModule1.FindComponent('SwitchPanel' + IntToStr(num)) As JPanel); + + + ajTextView:=jTextView.Create(Self); + ajTextView.Parent:=myjPanel; + + + if num=0 Then + ajTextView.PosRelativeToParent:=[rpTop,rpLeft] + + else + begin + myjTextView:=(AndroidModule1.FindComponent('lblSwitch' + IntToStr(num-1)) As JTextView); + ajTextView.Anchor:=myjTextView; + ajTextView.PosRelativeToAnchor:=[raBelow]; + ajTextView.PosRelativeToParent:=[rpLeft]; + end; + + if Present = '0' then + ajTextView.Text := SwitchName + ' (nicht verbunden)' + else + ajTextView.Text:=SwitchName; + + ajTextView.Name:='lblSwitch'+ IntToStr(num); + ajTextView.FontSize:=16; + ajTextView.MarginLeft:=10; + ajTextView.MarginRight:=50; + ajTextView.Init(gApp); + + myjTextView:=(AndroidModule1.FindComponent('lblSwitch' + IntToStr(num)) As JTextView); + + ajSwitch := jSwitchButton.Create(self); + ajSwitch.Parent:=myjPanel; + ajSwitch.Name:='mySwitch' + IntToStr(num); + + if Present = '1' then + ajSwitch.Visible := True + else + ajSwitch.Visible := False; + + if State = '0' then + ajSwitch.State := tsOff + else + ajSwitch.State := tsOn; + ajSwitch.Tag := num; + ajSwitch.OnToggle := aSwitchSwitch; + ajSwitch.PosRelativeToParent:=[rpEnd]; + ajSwitch.Init(gApp); + + + +end; +{$ENDIF ANDROID} + + +{$IFDEF Linux} +//Einstellungen einlesen +procedure TForm1.XMLPropStorage1RestoreProperties(Sender: TObject); +begin + if chkSavePassword.Checked Then + edtPassword.Text:=DecryptString(XMLPropStorage1.StoredValue['Password']) + else + edtPassword.Text:=''; +end; +//Einstellungen speichern +procedure TForm1.XMLPropStorage1SaveProperties(Sender: TObject); +begin + if chkSavePassword.Checked Then + XMLPropStorage1.StoredValue['Password']:=EncryptString(edtPassword.Text) + else + XMLPropStorage1.StoredValue['Password']:=''; +end; +{$ENDIF Linux} +//Fehler protokollieren +procedure TForm1.Logger2(Sender: TObject; EMessage: String); +begin + Logger( EMessage ); +end; +//Log-Meldungen +procedure TForm1.Logger(msg:String); +begin + +If chkDebug.Checked Then +begin + Messages.Add(msg); + {$IFDEF ANDROID} + //edtLog.AppendLn(msg); + //Messages.Add(msg); + {$ENDIF ANDROID} + {$IFDEF Linux} + Memo1.Lines.Add(msg); + {$ENDIF Linux} +end; +end; + + + +end. +