diff --git a/.gitignore b/.gitignore index 56cc642..aa724b7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,85 +1,15 @@ -# Built application files -*.apk -*.aar -*.ap_ -*.aab - -# Files for the ART/Dalvik VM -*.dex - -# Java class files -*.class - -# Generated files -bin/ -gen/ -out/ -# Uncomment the following line in case you need and you don't have the release build type files in your app -# release/ - -# Gradle files -.gradle/ -build/ - -# Local configuration file (sdk path, etc) -local.properties - -# Proguard folder generated by Eclipse -proguard/ - -# Log Files -*.log - -# Android Studio Navigation editor temp files -.navigation/ - -# Android Studio captures folder -captures/ - -# IntelliJ *.iml -.idea/workspace.xml -.idea/tasks.xml -.idea/gradle.xml -.idea/assetWizardSettings.xml -.idea/dictionaries -.idea/libraries -# Android Studio 3 in .gitignore file. -.idea/caches -.idea/modules.xml -# Comment next line if keeping position of elements in Navigation Editor is relevant for you -.idea/navEditor.xml - -# Keystore files -# Uncomment the following lines if you do not want to check your keystore files in. -#*.jks -#*.keystore - -# External native build folder generated in Android Studio 2.2 and later +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures .externalNativeBuild -.cxx/ - -# Google Services (e.g. APIs or Firebase) -# google-services.json - -# Freeline -freeline.py -freeline/ -freeline_project_description.json - -# fastlane -fastlane/report.xml -fastlane/Preview.html -fastlane/screenshots -fastlane/test_output -fastlane/readme.md - -# Version control -vcs.xml - -# lint -lint/intermediates/ -lint/generated/ -lint/outputs/ -lint/tmp/ -# lint/reports/ +.cxx +local.properties diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml deleted file mode 100644 index 88ea3aa..0000000 --- a/.idea/codeStyles/Project.xml +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - - -
- - - - xmlns:android - - ^$ - - - -
-
- - - - xmlns:.* - - ^$ - - - BY_NAME - -
-
- - - - .*:id - - http://schemas.android.com/apk/res/android - - - -
-
- - - - .*:name - - http://schemas.android.com/apk/res/android - - - -
-
- - - - name - - ^$ - - - -
-
- - - - style - - ^$ - - - -
-
- - - - .* - - ^$ - - - BY_NAME - -
-
- - - - .* - - http://schemas.android.com/apk/res/android - - - ANDROID_ATTRIBUTE_ORDER - -
-
- - - - .* - - .* - - - BY_NAME - -
-
-
-
- - -
-
\ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml deleted file mode 100644 index 79ee123..0000000 --- a/.idea/codeStyles/codeStyleConfig.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..fb7f4a8 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/deploymentTargetDropDown.xml b/.idea/deploymentTargetDropDown.xml new file mode 100644 index 0000000..4a152a7 --- /dev/null +++ b/.idea/deploymentTargetDropDown.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..a2d7c21 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..ed76bea --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,37 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index 37a7509..bdd9278 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,7 @@ - + + diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml deleted file mode 100644 index 7f68460..0000000 --- a/.idea/runConfigurations.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 0af7946..29795c1 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,36 +1,66 @@ -apply plugin: 'com.android.application' - -apply plugin: 'kotlin-android' - -apply plugin: 'kotlin-android-extensions' +plugins { + id 'com.android.application' + id 'org.jetbrains.kotlin.android' +} android { - compileSdkVersion 28 + namespace 'com.mobilegame.localnetworkingandroidapp' + compileSdk 33 + defaultConfig { - applicationId "com.example.localnetworkingandroidapp" - minSdkVersion 16 - targetSdkVersion 28 + applicationId "com.mobilegame.localnetworkingandroidapp" + minSdk 21 + targetSdk 33 versionCode 1 versionName "1.0" + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + vectorDrawables { + useSupportLibrary true + } } + buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + kotlinOptions { + jvmTarget = '1.8' + } + buildFeatures { + compose true + } + composeOptions { + kotlinCompilerExtensionVersion '1.1.1' + } + packagingOptions { + resources { + excludes += '/META-INF/{AL2.0,LGPL2.1}' + } + } } dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - implementation 'androidx.appcompat:appcompat:1.1.0' - implementation 'androidx.core:core-ktx:1.1.0' - implementation 'androidx.constraintlayout:constraintlayout:1.1.3' - implementation 'com.google.android.material:material:1.0.0' - implementation 'com.google.code.gson:gson:2.8.6' - testImplementation 'junit:junit:4.12' - androidTestImplementation 'androidx.test.ext:junit:1.1.1' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' -} + + implementation 'androidx.core:core-ktx:1.7.0' + implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1' + implementation 'androidx.activity:activity-compose:1.3.1' + implementation "androidx.compose.ui:ui:$compose_ui_version" + implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version" + implementation 'androidx.compose.material:material:1.1.1' + testImplementation 'junit:junit:4.13.2' + androidTestImplementation 'androidx.test.ext:junit:1.1.5' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' + androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_ui_version" + debugImplementation "androidx.compose.ui:ui-tooling:$compose_ui_version" + debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_ui_version" + + implementation "androidx.constraintlayout:constraintlayout-compose:1.0.1" + implementation 'com.google.code.gson:gson:2.10' +} \ No newline at end of file diff --git a/app/build/generated/source/buildConfig/debug/com/mobilegame/localnetworkingandroidapp/BuildConfig.java b/app/build/generated/source/buildConfig/debug/com/mobilegame/localnetworkingandroidapp/BuildConfig.java new file mode 100644 index 0000000..ca5ea57 --- /dev/null +++ b/app/build/generated/source/buildConfig/debug/com/mobilegame/localnetworkingandroidapp/BuildConfig.java @@ -0,0 +1,12 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.mobilegame.localnetworkingandroidapp; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String APPLICATION_ID = "com.mobilegame.localnetworkingandroidapp"; + public static final String BUILD_TYPE = "debug"; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "1.0"; +} diff --git a/app/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/app/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/app/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/app/build/intermediates/apk/debug/app-debug.apk b/app/build/intermediates/apk/debug/app-debug.apk new file mode 100644 index 0000000..b9fe65e Binary files /dev/null and b/app/build/intermediates/apk/debug/app-debug.apk differ diff --git a/app/build/intermediates/apk/debug/output-metadata.json b/app/build/intermediates/apk/debug/output-metadata.json new file mode 100644 index 0000000..534f668 --- /dev/null +++ b/app/build/intermediates/apk/debug/output-metadata.json @@ -0,0 +1,20 @@ +{ + "version": 3, + "artifactType": { + "type": "APK", + "kind": "Directory" + }, + "applicationId": "com.mobilegame.localnetworkingandroidapp", + "variantName": "debug", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0", + "outputFile": "app-debug.apk" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/build/intermediates/apk_ide_redirect_file/debug/redirect.txt b/app/build/intermediates/apk_ide_redirect_file/debug/redirect.txt new file mode 100644 index 0000000..46dacc6 --- /dev/null +++ b/app/build/intermediates/apk_ide_redirect_file/debug/redirect.txt @@ -0,0 +1,2 @@ +#- File Locator - +listingFile=../../apk/debug/output-metadata.json diff --git a/app/build/intermediates/app_metadata/debug/app-metadata.properties b/app/build/intermediates/app_metadata/debug/app-metadata.properties new file mode 100644 index 0000000..9d71beb --- /dev/null +++ b/app/build/intermediates/app_metadata/debug/app-metadata.properties @@ -0,0 +1,2 @@ +appMetadataVersion=1.1 +androidGradlePluginVersion=7.3.1 diff --git a/app/build/intermediates/compatible_screen_manifest/debug/output-metadata.json b/app/build/intermediates/compatible_screen_manifest/debug/output-metadata.json new file mode 100644 index 0000000..1ea5453 --- /dev/null +++ b/app/build/intermediates/compatible_screen_manifest/debug/output-metadata.json @@ -0,0 +1,10 @@ +{ + "version": 3, + "artifactType": { + "type": "COMPATIBLE_SCREEN_MANIFEST", + "kind": "Directory" + }, + "applicationId": "com.mobilegame.localnetworkingandroidapp", + "variantName": "debug", + "elements": [] +} \ No newline at end of file diff --git a/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar b/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000..17ac545 Binary files /dev/null and b/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_0/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_0/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_0/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_2/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_2/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_2/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_3/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_3/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_3/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_4/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_4/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_4/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_5/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_5/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_5/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_6/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_6/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_6/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_7/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_7/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_7/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_0/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_0/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_0/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_1/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_1/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_1/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_2/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_2/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_2/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_3/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_3/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_3/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_4/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_4/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_4/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_5/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_5/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_5/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_6/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_6/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_6/graph.bin differ diff --git a/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_7/graph.bin b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_7/graph.bin new file mode 100644 index 0000000..601f245 Binary files /dev/null and b/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_6b90a0c5af5eacdabcb14203fae9ce9719edeb031e0cce5ac449069aea47824c_bucket_7/graph.bin differ diff --git a/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex b/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex new file mode 100644 index 0000000..bfad101 Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex new file mode 100644 index 0000000..19dedf0 Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/1/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/1/classes.dex new file mode 100644 index 0000000..f0d5b9b Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/1/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/10/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/10/classes.dex new file mode 100644 index 0000000..37cf84a Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/10/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/14/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/14/classes.dex new file mode 100644 index 0000000..5edf46e Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/14/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex new file mode 100644 index 0000000..c5f8b20 Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/3/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/3/classes.dex new file mode 100644 index 0000000..4e19d23 Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/3/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex new file mode 100644 index 0000000..815258f Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex differ diff --git a/app/build/intermediates/dex/debug/mergeProjectDexDebug/6/classes.dex b/app/build/intermediates/dex/debug/mergeProjectDexDebug/6/classes.dex new file mode 100644 index 0000000..c024874 Binary files /dev/null and b/app/build/intermediates/dex/debug/mergeProjectDexDebug/6/classes.dex differ diff --git a/app/build/intermediates/dex_archive_input_jar_hashes/debug/out b/app/build/intermediates/dex_archive_input_jar_hashes/debug/out new file mode 100644 index 0000000..d0bb674 Binary files /dev/null and b/app/build/intermediates/dex_archive_input_jar_hashes/debug/out differ diff --git a/app/build/intermediates/dex_number_of_buckets_file/debug/out b/app/build/intermediates/dex_number_of_buckets_file/debug/out new file mode 100644 index 0000000..301160a --- /dev/null +++ b/app/build/intermediates/dex_number_of_buckets_file/debug/out @@ -0,0 +1 @@ +8 \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state new file mode 100644 index 0000000..2b8f3e3 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0A3pWsQz6BAc9JfW5Ny5uspCaIg= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0A3pWsQz6BAc9JfW5Ny5uspCaIg= new file mode 100644 index 0000000..afb7104 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0A3pWsQz6BAc9JfW5Ny5uspCaIg= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2BzwWTTVdcURzNlBiDoos7mYLM8= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2BzwWTTVdcURzNlBiDoos7mYLM8= new file mode 100644 index 0000000..8488a02 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2BzwWTTVdcURzNlBiDoos7mYLM8= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2b3t0VYf4LAEEKUTnj5SY2DTueA= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2b3t0VYf4LAEEKUTnj5SY2DTueA= new file mode 100644 index 0000000..66efff0 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2b3t0VYf4LAEEKUTnj5SY2DTueA= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3gtGjtFBbn4JWMf1tWj6VCPkZaA= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3gtGjtFBbn4JWMf1tWj6VCPkZaA= new file mode 100644 index 0000000..58123f6 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3gtGjtFBbn4JWMf1tWj6VCPkZaA= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4QnYOQoZjFZQVT2ae+mn58Cr6ZQ= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4QnYOQoZjFZQVT2ae+mn58Cr6ZQ= new file mode 100644 index 0000000..1abe45a Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/4QnYOQoZjFZQVT2ae+mn58Cr6ZQ= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5Oo3OCz9rDju92qtGoi_NsBARpc= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5Oo3OCz9rDju92qtGoi_NsBARpc= new file mode 100644 index 0000000..bb87cad Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5Oo3OCz9rDju92qtGoi_NsBARpc= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5ozZ7Q2zVCqF9BkhzNUGLhOtzeE= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5ozZ7Q2zVCqF9BkhzNUGLhOtzeE= new file mode 100644 index 0000000..5e67692 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5ozZ7Q2zVCqF9BkhzNUGLhOtzeE= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/6xh3LDqgQdsIE9S_xAtcjlZ8ppU= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/6xh3LDqgQdsIE9S_xAtcjlZ8ppU= new file mode 100644 index 0000000..b42ca4f Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/6xh3LDqgQdsIE9S_xAtcjlZ8ppU= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8g2KQQy2lsGqVWo1I6XjgrlN4QI= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8g2KQQy2lsGqVWo1I6XjgrlN4QI= new file mode 100644 index 0000000..da0f841 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8g2KQQy2lsGqVWo1I6XjgrlN4QI= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8m27PH93EdLK2+306crvNxrnl4w= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8m27PH93EdLK2+306crvNxrnl4w= new file mode 100644 index 0000000..6adf4f1 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8m27PH93EdLK2+306crvNxrnl4w= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/9sNkBXS4j0_jcurE0ZPysMxCK6E= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/9sNkBXS4j0_jcurE0ZPysMxCK6E= new file mode 100644 index 0000000..628378a Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/9sNkBXS4j0_jcurE0ZPysMxCK6E= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EVCXLhElrj1TsW5GFL5R4H_tp+E= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EVCXLhElrj1TsW5GFL5R4H_tp+E= new file mode 100644 index 0000000..f2ba52f Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EVCXLhElrj1TsW5GFL5R4H_tp+E= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FVuzR51RYK0Sf6sr7Aaq3lrFUic= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FVuzR51RYK0Sf6sr7Aaq3lrFUic= new file mode 100644 index 0000000..143402b Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FVuzR51RYK0Sf6sr7Aaq3lrFUic= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Fh6fOZ4kR3d1aHiR9VJcvPHfmK8= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Fh6fOZ4kR3d1aHiR9VJcvPHfmK8= new file mode 100644 index 0000000..fa0e7c1 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Fh6fOZ4kR3d1aHiR9VJcvPHfmK8= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FpG9dq12eEXE9o6K5PYN_MBCwsI= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FpG9dq12eEXE9o6K5PYN_MBCwsI= new file mode 100644 index 0000000..48ce208 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FpG9dq12eEXE9o6K5PYN_MBCwsI= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GhPtCKMzaRceajl99nEchY4ayk4= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GhPtCKMzaRceajl99nEchY4ayk4= new file mode 100644 index 0000000..7f2a170 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GhPtCKMzaRceajl99nEchY4ayk4= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/H49bQCSqSoMssln5Riu0Kc72sto= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/H49bQCSqSoMssln5Riu0Kc72sto= new file mode 100644 index 0000000..a196743 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/H49bQCSqSoMssln5Riu0Kc72sto= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KAhEO7DCB7TwFH1r3iW9wEwzjh4= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KAhEO7DCB7TwFH1r3iW9wEwzjh4= new file mode 100644 index 0000000..bfc1cb8 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KAhEO7DCB7TwFH1r3iW9wEwzjh4= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KrV1DDDq4Y3w0Cu_daa7Tp64Glg= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KrV1DDDq4Y3w0Cu_daa7Tp64Glg= new file mode 100644 index 0000000..a0c10c5 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KrV1DDDq4Y3w0Cu_daa7Tp64Glg= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MfmCiNyQ9RQCLpETLwNy+PbsPVA= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MfmCiNyQ9RQCLpETLwNy+PbsPVA= new file mode 100644 index 0000000..083828d Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MfmCiNyQ9RQCLpETLwNy+PbsPVA= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MjmSdMeLPguvZ2Lt3akLs31s4TQ= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MjmSdMeLPguvZ2Lt3akLs31s4TQ= new file mode 100644 index 0000000..6888d08 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MjmSdMeLPguvZ2Lt3akLs31s4TQ= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/O4MXWx+oVuZTiA1mgQU87rfEqlQ= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/O4MXWx+oVuZTiA1mgQU87rfEqlQ= new file mode 100644 index 0000000..1a7e389 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/O4MXWx+oVuZTiA1mgQU87rfEqlQ= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OG7HYJDJjcBQwfU81+Q1nD8bQTE= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OG7HYJDJjcBQwfU81+Q1nD8bQTE= new file mode 100644 index 0000000..592be38 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OG7HYJDJjcBQwfU81+Q1nD8bQTE= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OkQnvSvlv3WDqrwCSYPkBIy8HXs= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OkQnvSvlv3WDqrwCSYPkBIy8HXs= new file mode 100644 index 0000000..7fefd79 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OkQnvSvlv3WDqrwCSYPkBIy8HXs= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/PoxvXjy25gMSSz2bxx6hAUSlAmI= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/PoxvXjy25gMSSz2bxx6hAUSlAmI= new file mode 100644 index 0000000..3cf13a1 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/PoxvXjy25gMSSz2bxx6hAUSlAmI= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Qdz4Lovf7zpAUekFdYeL0JCmGNE= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Qdz4Lovf7zpAUekFdYeL0JCmGNE= new file mode 100644 index 0000000..81d5619 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Qdz4Lovf7zpAUekFdYeL0JCmGNE= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RGYnDDSlMztkcNV+h9GNp8GOee0= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RGYnDDSlMztkcNV+h9GNp8GOee0= new file mode 100644 index 0000000..a578fea Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RGYnDDSlMztkcNV+h9GNp8GOee0= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RrXIFpqldXrO7hgSAH5jKghO8kE= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RrXIFpqldXrO7hgSAH5jKghO8kE= new file mode 100644 index 0000000..86f70c7 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RrXIFpqldXrO7hgSAH5jKghO8kE= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VtXZUlfR0jb8FCwPWouJm6RwGSg= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VtXZUlfR0jb8FCwPWouJm6RwGSg= new file mode 100644 index 0000000..b5159a1 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VtXZUlfR0jb8FCwPWouJm6RwGSg= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WPh38SfnMr4IhFWO_3_tzAdcdD0= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WPh38SfnMr4IhFWO_3_tzAdcdD0= new file mode 100644 index 0000000..fb794be Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WPh38SfnMr4IhFWO_3_tzAdcdD0= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XSFLXibd5DgpleaaJ7l6kHbsSTs= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XSFLXibd5DgpleaaJ7l6kHbsSTs= new file mode 100644 index 0000000..2db5a6b Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XSFLXibd5DgpleaaJ7l6kHbsSTs= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Y_T6Z1BI3z2dW9fy5h6j6uhVIic= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Y_T6Z1BI3z2dW9fy5h6j6uhVIic= new file mode 100644 index 0000000..470df43 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Y_T6Z1BI3z2dW9fy5h6j6uhVIic= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZeHGPKg7yr1iYfgSOpCQMJljLHY= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZeHGPKg7yr1iYfgSOpCQMJljLHY= new file mode 100644 index 0000000..551a978 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZeHGPKg7yr1iYfgSOpCQMJljLHY= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/_Fx4Q3dAJD_Al6G4ruCA8Q5ZMqA= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/_Fx4Q3dAJD_Al6G4ruCA8Q5ZMqA= new file mode 100644 index 0000000..cd17a76 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/_Fx4Q3dAJD_Al6G4ruCA8Q5ZMqA= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/_IijWQ6NbbPMFKk3ld_KfcOWVcs= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/_IijWQ6NbbPMFKk3ld_KfcOWVcs= new file mode 100644 index 0000000..facf43e Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/_IijWQ6NbbPMFKk3ld_KfcOWVcs= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dSQiZVyuPqOaV_ir17I4TNXt6iE= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dSQiZVyuPqOaV_ir17I4TNXt6iE= new file mode 100644 index 0000000..37ae0af Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dSQiZVyuPqOaV_ir17I4TNXt6iE= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dbKQ7SNNq7flE5UiHhAAGvCh_yI= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dbKQ7SNNq7flE5UiHhAAGvCh_yI= new file mode 100644 index 0000000..8468bea Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dbKQ7SNNq7flE5UiHhAAGvCh_yI= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/eBhwfP_n6PxqMw5kSEQC3YJ+Rz4= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/eBhwfP_n6PxqMw5kSEQC3YJ+Rz4= new file mode 100644 index 0000000..69246f0 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/eBhwfP_n6PxqMw5kSEQC3YJ+Rz4= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fk4W+Pcpp2YCK13umeKNgRveG9s= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fk4W+Pcpp2YCK13umeKNgRveG9s= new file mode 100644 index 0000000..37fadce Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fk4W+Pcpp2YCK13umeKNgRveG9s= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/hukgvYGdw0CbEzc5kAst3VN+87o= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/hukgvYGdw0CbEzc5kAst3VN+87o= new file mode 100644 index 0000000..bb5a2c7 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/hukgvYGdw0CbEzc5kAst3VN+87o= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/j5KqH9nnnJP+aPuN12cZ1yRyQSA= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/j5KqH9nnnJP+aPuN12cZ1yRyQSA= new file mode 100644 index 0000000..3796a09 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/j5KqH9nnnJP+aPuN12cZ1yRyQSA= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/je_lt+EoPt2REdVU6vruCvO7_tk= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/je_lt+EoPt2REdVU6vruCvO7_tk= new file mode 100644 index 0000000..5f59965 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/je_lt+EoPt2REdVU6vruCvO7_tk= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/k+MBs2097mzg8nrJLRiOmDVTwNU= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/k+MBs2097mzg8nrJLRiOmDVTwNU= new file mode 100644 index 0000000..e5b351f Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/k+MBs2097mzg8nrJLRiOmDVTwNU= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/k11JwxD6Sm79vZnGQYm8wdbpip8= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/k11JwxD6Sm79vZnGQYm8wdbpip8= new file mode 100644 index 0000000..df19234 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/k11JwxD6Sm79vZnGQYm8wdbpip8= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/o0Z37e+L1ezOoLGZf44WNknK1qs= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/o0Z37e+L1ezOoLGZf44WNknK1qs= new file mode 100644 index 0000000..c68ea7a Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/o0Z37e+L1ezOoLGZf44WNknK1qs= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/oEFI2ZzlKTRSgCJp4FnnX5EJaMs= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/oEFI2ZzlKTRSgCJp4FnnX5EJaMs= new file mode 100644 index 0000000..b43f44a Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/oEFI2ZzlKTRSgCJp4FnnX5EJaMs= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/o_tZR8TjDvgXQV3wrtBTLh14Xrc= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/o_tZR8TjDvgXQV3wrtBTLh14Xrc= new file mode 100644 index 0000000..0c4d5be Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/o_tZR8TjDvgXQV3wrtBTLh14Xrc= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/od5uTDPzJD4t5c0klvjCbtNAO8U= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/od5uTDPzJD4t5c0klvjCbtNAO8U= new file mode 100644 index 0000000..ad2c8e6 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/od5uTDPzJD4t5c0klvjCbtNAO8U= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/qp4Y0uT+cfDLotyeoa2aPYLEasI= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/qp4Y0uT+cfDLotyeoa2aPYLEasI= new file mode 100644 index 0000000..8bfe301 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/qp4Y0uT+cfDLotyeoa2aPYLEasI= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rlQr3hzwG+JsTTGWsk_KqefUmBY= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rlQr3hzwG+JsTTGWsk_KqefUmBY= new file mode 100644 index 0000000..4ee118c Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rlQr3hzwG+JsTTGWsk_KqefUmBY= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sFPEqOHT9r6jzwDvvKt0mVXFEuY= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sFPEqOHT9r6jzwDvvKt0mVXFEuY= new file mode 100644 index 0000000..7fead1c Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sFPEqOHT9r6jzwDvvKt0mVXFEuY= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/tp1bwUeVnkWGYPSfDyi8vYf+UbQ= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/tp1bwUeVnkWGYPSfDyi8vYf+UbQ= new file mode 100644 index 0000000..b74b8e5 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/tp1bwUeVnkWGYPSfDyi8vYf+UbQ= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vJLapn1Rp0zd_9M+ss27QSjKLSI= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vJLapn1Rp0zd_9M+ss27QSjKLSI= new file mode 100644 index 0000000..ff0bb38 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/vJLapn1Rp0zd_9M+ss27QSjKLSI= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wbq1l5NNCNe+G3natcUjXACGsSY= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wbq1l5NNCNe+G3natcUjXACGsSY= new file mode 100644 index 0000000..64b5c1b Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wbq1l5NNCNe+G3natcUjXACGsSY= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/xQgB9A5puVIltmmbjxcaYWU9uMk= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/xQgB9A5puVIltmmbjxcaYWU9uMk= new file mode 100644 index 0000000..1fe3a89 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/xQgB9A5puVIltmmbjxcaYWU9uMk= differ diff --git a/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zxwLLxpVnfvxlTolKYQkI688nIE= b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zxwLLxpVnfvxlTolKYQkI688nIE= new file mode 100644 index 0000000..44d7917 Binary files /dev/null and b/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zxwLLxpVnfvxlTolKYQkI688nIE= differ diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties b/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties new file mode 100644 index 0000000..f86dac3 --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties @@ -0,0 +1,33 @@ +#Sat Jan 28 09:06:31 CET 2023 +com.mobilegame.localnetworkingandroidapp-main-37\:/mipmap-xxhdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-xxhdpi_ic_launcher.webp.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/mipmap-hdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-hdpi_ic_launcher.webp.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/mipmap-xhdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-xhdpi_ic_launcher.webp.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/mipmap-hdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-hdpi_ic_launcher_round.webp.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/mipmap-xhdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-xhdpi_ic_launcher_round.webp.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/mipmap-mdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-mdpi_ic_launcher.webp.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/mipmap-mdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-mdpi_ic_launcher_round.webp.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/xml/data_extraction_rules.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\xml_data_extraction_rules.xml.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/mipmap-mdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-mdpi_ic_launcher_round.webp.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/mipmap-xxxhdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-xxxhdpi_ic_launcher_round.webp.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/mipmap-xhdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-xhdpi_ic_launcher.webp.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/drawable/ic_launcher_background.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\drawable_ic_launcher_background.xml.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/mipmap-xxxhdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-xxxhdpi_ic_launcher.webp.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/drawable-v24/ic_launcher_foreground.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\drawable-v24_ic_launcher_foreground.xml.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/mipmap-xhdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-xhdpi_ic_launcher_round.webp.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/xml/backup_rules.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\xml_backup_rules.xml.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/drawable-v24/ic_launcher_foreground.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\drawable-v24_ic_launcher_foreground.xml.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/drawable/ic_launcher_background.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\drawable_ic_launcher_background.xml.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/mipmap-xxxhdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-xxxhdpi_ic_launcher_round.webp.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/mipmap-xxhdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-xxhdpi_ic_launcher.webp.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/mipmap-anydpi-v26/ic_launcher.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-anydpi-v26_ic_launcher.xml.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/xml/data_extraction_rules.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\xml_data_extraction_rules.xml.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/mipmap-anydpi-v26/ic_launcher_round.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-anydpi-v26_ic_launcher_round.xml.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/mipmap-xxxhdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-xxxhdpi_ic_launcher.webp.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/xml/backup_rules.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\xml_backup_rules.xml.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/mipmap-xxhdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-xxhdpi_ic_launcher_round.webp.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/mipmap-hdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-hdpi_ic_launcher.webp.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/mipmap-mdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-mdpi_ic_launcher.webp.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/mipmap-hdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-hdpi_ic_launcher_round.webp.flat +com.mobilegame.localnetworkingandroidapp-main-37\:/mipmap-anydpi-v26/ic_launcher_round.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-anydpi-v26_ic_launcher_round.xml.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/mipmap-xxhdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-xxhdpi_ic_launcher_round.webp.flat +com.mobilegame.localnetworkingandroidapp-main-43\:/mipmap-anydpi-v26/ic_launcher.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\merged_res\\debug\\mipmap-anydpi-v26_ic_launcher.xml.flat diff --git a/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml b/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml new file mode 100644 index 0000000..371f13e --- /dev/null +++ b/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml @@ -0,0 +1,206 @@ + +androidx.startup#1f000000#8a000000#ffffffff#ff9e9e9e4dp6dp8dp4dp2dp320dp320dp32dp13sp12dp8dp64dp64dp10dp@dimen/notification_content_margin_start16dp2dp3dp24dp13sp10dp5dp#3333B5E5#0cffffff999999+"999+""999+""999+""999+""999+"#FF0000"Close navigation menu""Close sheet""Invalid input""Pop-Up Window""Dropdown menu"In progressNeither checked nor unchecked"Navigation menu"Not selectedOffOnSelectedTab%1$d percent."Maak navigasiekieslys toe""Maak sigblad toe""Ongeldige invoer""Opspringvenster""Aftrekkieslys""Besig""Nie gemerk of ontmerk nie""Navigasiekieslys""Nie gekies nie""Af""Aan""Gekies""Oortjie""%1$d persent.""የዳá°áł áťáŠ“áŚáŠ• ዝጋ""á‰á…ን ዝጋ""áŤáŠ­ á‹«áŤá†áŠ áŚŤá‰¤á‰µ""ብቅ-ባይ ááµáŠ®á‰µ""ተቆáŤá‰‹á‹­ áťáŠ“áŚ""በá‚ደት á‹á‹­""áťáŤáŠ­á‰µ የተደá¨áŚá‰ á‰µáť á‹«áŤá‰°á‹°á¨áŚá‰ á‰µáť""የዳá°áł áťáŠ“áŚ""á‹«áŤá‰°áá¨áڎ""ጠፍቷáŤ""በá­á‰·áŤ""ተáá­áڧáŤ""ትá­""%1$d በáቶ።""إغلاق قائمة التنقل""إغلاق الŮرقة""إدخال غير صالح""ناŮذة منبثقة""قائمة منسدلة""قيد التقدم""لم ŮŠŘŞŮ… Ůضع علامة أ٠إزالتها""قائمة تنقل""غير محدّد""غير Ů…Ůعّل""Ů…Ůعّل""محدّد""علامة تبŮيب""%1$d ŮŮŠ المئة.""নেভিগেশ্বন মেনৠবন্ধ কৰক""শ্বীট বন্ধ কৰক""অমান্য ইনপŕ§ŕ¦ź""পপ-আপ ৱিণ্ড’""ড্ৰপডাউনৰ মেনŕ§""প্ৰক্ৰিয়াকৰণ কৰি থকা হŕ§ŕ¦›ŕ§‡""টিক চিহ্ন দিয়াও নাই আŕ¦ŕ¦¤ŕ§°ŕ§‹ŕ§±ŕ¦ľŕ¦“ নাই""নেভিগেশ্বন মেনŕ§""বাছনি কৰা হোৱা নাই""অফ আছে""অন কৰা আছে""বাছনি কৰা হŕ§ŕ¦›ŕ§‡""টেব""%1$d শতাংশ।""Naviqasiya menyusunu baÄźlayın""SÉ™hifÉ™ni baÄźlayın""Yanlış daxiletmÉ™""Popap PÉ™ncÉ™rÉ™si""AĹźağı açılan menyu""Davam edir""NÉ™ seçilmÉ™yib, nÉ™ dÉ™ seçim ləğv edilmÉ™yib""Naviqasiya menyusu""SeçilmÉ™yib""Deaktiv""Aktiv""Seçilib""Tab""%1$d faiz.""Zatvori meni za navigaciju""Zatvorite tabelu""Unos je nevaĹľeći""IskaÄŤući prozor""Padajući meni""U toku""Nije oznaÄŤeno niti poništeno""Meni za navigaciju""Nije izabrano""IskljuÄŤeno""UkljuÄŤeno""Izabrano""Kartica""%1$d posto.""Закрыць меню навігацыі""Закрыць аркŃŃ""Памылка ўводŃ""ĐŁŃплывальнае акно""Выпадное меню""ĐŁ працэŃе""ПтŃŃка не паŃтаўлена Ń– не знята""Меню навігацыі""Не выбрана""Выключана""Уключана""Выбрана""Укладка""Працэнтаў: %1$d.""Затваряне на менюто за навигация""Затваряне на таблицата""Въведеното е невалидно""ĐĐ·Ńкачащ прозорец""Падащо меню""Đ’ ход""Няма поŃтавена или премахната отметка""Меню за навигация""Не е избрано""Đзкл.""Вкл.""Đзбрано""Раздел""%1$d процента.""নেভিগেশন মেনৠবন্ধ করŕ§ŕ¦¨""শিট বন্ধ করŕ§ŕ¦¨""ভŕ§ŕ¦˛ ইনপŕ§ŕ¦ź""পপ-আপ উইন্ডো""ড্রপডাউন মেনŕ§""কাজ চলছে""টিক চিহ্ন দেওয়া বা টিকচিহ্ন সরান হয়নি""নেভিগেশন মেনŕ§""বেছে নেওয়া হয়নি""বন্ধ আছে""চালৠআছে""বেছে নেওয়া হয়েছে""ট্যাব""%1$d শতাংশ।""Zatvaranje navigacionog menija""Zatvaranje tabele""Pogrešan unos""SkoÄŤni prozor""Padajući meni""U toku""Nije odabrano ni poništeno""Meni za navigaciju""Nije odabrano""IskljuÄŤeno""UkljuÄŤeno""Odabrano""Kartica""%1$d posto.""Tanca el menĂş de navegaciĂł""Tanca el full""L\'entrada no Ă©s vĂ lida""Finestra emergent""MenĂş desplegable""En curs""Ni marcada ni desmarcada""MenĂş de navegaciĂł""No seleccionat""Desactivat""Activat""Seleccionat""Pestanya""%1$d per cent""Zavřít navigaÄŤnĂ­ panel""Zavřít sešit""NeplatnĂ˝ Ăşdaj""VyskakovacĂ­ okno""RozbalovacĂ­ nabĂ­dka""ProbĂ­há""Ani zaškrtnuto, ani nezaškrtnuto""NavigaÄŤnĂ­ nabĂ­dka""Nevybráno""Vyp""Zap""Vybráno""Karta""%1$d procent.""Luk navigationsmenuen""Luk arket""Ugyldigt input""Pop op-vindue""Rullemenu""I gang""Hverken tilvalgt eller fravalgt""Navigationsmenu""Ikke valgt""Fra""Til""Valgt""Fane""%1$d procent.""NavigationsmenĂĽ schlieĂźen""Tabelle schlieĂźen""UngĂĽltige Eingabe""Pop-up-Fenster""Drop-down-MenĂĽ""In Bearbeitung""Häkchen weder gesetzt noch entfernt""NavigationsmenĂĽ""Nicht ausgewählt""Aus""An""Ausgewählt""Tab""%1$d Prozent.""ΚλείĎιμο του μενού πλοήγηĎης""ΚλείĎιμο φύλλου""Μη έγκυĎη καταχώĎÎąĎη""Αναδυόμενο παĎάθυĎÎż""ΑναπτυĎĎόμενο μενού""Σε εξέλιξη""Ούτε επιλεγμένο ούτε μη επιλεγμένο""Μενού πλοήγηĎης""Δεν έχει επιλεχθεί""ΑνενεĎγό""ΕνεĎγό""Επιλεγμένο""ΚαĎτέλα""%1$d τοις εκατό.""Close navigation menu""Close sheet""Invalid input""Pop-up window""Drop-down menu""In progress""Neither ticked nor unticked""Navigation menu""Not selected""Off""On""Selected""Tab""%1$d per cent.""Close navigation menu""Close sheet""Invalid input""Pop-up window""Drop-down menu""In progress""Neither ticked nor unticked""Navigation menu""Not selected""Off""On""Selected""Tab""%1$d per cent.""Close navigation menu""Close sheet""Invalid input""Pop-up window""Drop-down menu""In progress""Neither ticked nor unticked""Navigation menu""Not selected""Off""On""Selected""Tab""%1$d per cent.""Close navigation menu""Close sheet""Invalid input""Pop-up window""Drop-down menu""In progress""Neither ticked nor unticked""Navigation menu""Not selected""Off""On""Selected""Tab""%1$d per cent.""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‏‏‏‎‏‏‎‏‎‎‏‎‎‎‎‎‎‎‎‏‏‎‎‏‏‏‏‎‎‎‎‏‏‏‏‎‏‎‎‏‏‏‎‎‏‎‏‎‎‏‏‎‎‎‏‎‏‎‏‎‎‎Close navigation menu‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‎‎‏‎‎‎‏‏‎‎‏‎‎‏‏‏‏‎‏‏‎‏‏‎‏‎‎‏‎‎‏‎‏‏‏‏‏‎‏‎‎‎‏‎‎‎‎‏‎‏‎‎‏‎‎‎‏‏‏‎Close sheet‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‏‏‏‏‎‎‎‏‏‎‏‏‎‎‏‏‏‏‏‏‎‏‎‎‏‏‎‎‎‏‏‏‏‎‎‏‎‎‎‎‏‎‏‎‏‎‏‏‏‏‎‎‎‎‏‏‏‎‎‎Invalid input‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‏‎‎‏‏‎‏‏‎‏‎‎‏‎‏‎‏‎‏‏‎‎‎‎‏‏‏‎‏‏‎‏‏‎‏‏‏‏‏‏‏‏‏‏‏‏‎‏‏‏‏‎‏‎‏‎‎Pop-Up Window‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‎‏‎‎‎‏‏‏‎‏‏‎‏‎‏‏‏‎‏‏‎‎‏‎‎‏‎‏‎‏‏‎‏‏‎‎‎‏‎‏‎‎‎‎‎‏‏‎‎‏‏‏‏‎‎‏‏‎‏‎Dropdown menu‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‏‏‏‎‏‏‎‎‎‎‎‏‎‏‎‎‏‏‏‏‏‏‏‏‎‎‏‎‎‏‏‎‏‏‏‏‏‏‎‏‎‏‎‎‎‏‏‎‏‏‏‎‏‏‏‏‏‎‏‏‎In progress‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‎‏‎‏‎‎‎‎‎‎‏‎‏‏‏‎‎‏‎‎‎‏‏‏‏‏‏‏‏‎‎‏‎‏‏‎‎‏‏‏‎‏‏‎‏‏‏‎‏‎‏‎‎‎‏‎‎‏‎‎Neither checked nor unchecked‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‏‏‏‏‏‏‎‎‎‎‏‎‏‏‎‎‏‏‎‎‎‏‎‏‎‎‏‏‎‏‎‏‎‎‏‏‎‎‏‏‏‏‎‏‏‏‏‎‏‎‎‏‎‎‎‏‏‏‏‎‎‎Navigation menu‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‏‎‏‏‏‎‏‏‏‏‎‏‎‎‎‏‎‏‏‏‎‏‎‏‎‎‎‎‏‎‎‎‎‏‏‎‎‏‎‏‏‎‏‎‏‏‎‏‏‎‎‏‎‎‎‎‎‏‏‏‎Not selected‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‎‏‎‎‏‏‎‎‎‏‏‏‎‏‏‏‏‎‏‎‎‏‏‎‎‎‎‏‎‎‏‏‎‎‏‏‎‎‎‎‏‏‏‎‏‎‎‏‎‏‏‏‏‏‏‎Off‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‎‎‎‎‎‏‏‏‎‏‎‏‎‏‎‎‎‏‏‏‏‎‏‎‏‏‏‏‎‎‎‏‎‎‎‏‎‏‏‎‎‎‎‏‏‎‎‏‏‎‎‎‏‏‎‎‏‎‎On‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‎‏‎‏‏‎‏‎‏‎‏‏‏‏‎‎‎‏‎‎‏‏‏‎‎‎‎‏‏‎‎‎‏‏‏‏‎‎‎‏‎‎‏‎‎‎‎‏‏‎‏‎‎‏‏‏‏‎Selected‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‏‎‎‏‏‎‏‎‏‎‏‏‎‎‎‎‎‏‏‎‏‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‎‎‎‏‏‎‎‎‏‏‎‏‎‎‎‎‎‏‎‏‎‎Tab‎‏‎‎‏‎""‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‎‏‎‏‎‎‎‎‏‏‏‎‏‎‎‏‎‏‏‏‎‏‏‏‏‏‎‎‎‏‎‏‏‎‏‏‏‎‏‏‏‎‏‏‏‎‎‎‎‎‏‎‎‏‏‎‏‏‏‎‎‏‎‎‏‏‎%1$d‎‏‎‎‏‏‏‎ percent.‎‏‎‎‏‎""Cerrar menĂş de navegaciĂłn""Cerrar hoja""Entrada no válida""Ventana emergente""MenĂş desplegable""En curso""Ni marcada ni desmarcada""MenĂş de navegaciĂłn""No seleccionado""Desactivado""Activado""Seleccionado""Pestaña""%1$d por cien.""Cerrar el menĂş de navegaciĂłn""Cerrar hoja""Entrada no válida""Ventana emergente""MenĂş desplegable""En curso""Ni marcada ni desmarcada""MenĂş de navegaciĂłn""Sin seleccionar""No""SĂ­""Seleccionado""Pestaña""%1$d por ciento.""Sule navigeerimismenĂĽĂĽ""Sule leht""Sobimatu sisend""HĂĽpikaken""RippmenĂĽĂĽ""Pooleli""Ei märgitud ega märkimata""NavigeerimismenĂĽĂĽ""Pole valitud""Väljas""Sees""Valitud""Vaheleht""%1$d protsenti.""Itxi nabigazio-menua""Itxi orria""Sarrerak ez du balio""Leiho gainerakorra""Goitibeherako menua""Abian""Ez markatuta eta ez markatu gabe""Nabigazio-menua""Hautatu gabe""Desaktibatuta""Aktibatuta""Hautatuta""Fitxa""Ehuneko %1$d.""بستن منŮŰŚ پیمایش""بستن برگ""ŮرŮŘŻŰŚ نامعتبر""پنجره بالاپر""منŮŰŚ کرکره‌ای""درحال انجام""نه علامت‌گذاری شده ٠نه علامت‌گذاری آن لغ٠شده""منŮŰŚ پیمایش""انتخاب‌نشده""خامŮŘ´""رŮشن""انتخاب Ř´ŘŻ""برگه""%1$d درصد.""Sulje navigointivalikko""Sulje taulukko""Virheellinen syöte""Ponnahdusikkuna""Avattava valikko""Kesken""Ei valittu eikä valitsematta""Navigointivalikko""Ei valittu""Pois""Päällä""Valittu""Välilehti""%1$d prosenttia""Fermer le menu de navigation""Fermer la feuille""DonnĂ©es incorrectes""FenĂŞtre pop-up""Menu dĂ©roulant""En cours""Ni cochĂ©e, ni dĂ©cochĂ©e""Menu de navigation""Non sĂ©lectionnĂ©""DĂ©sactivĂ©""ActivĂ©""SĂ©lectionnĂ©""Onglet""%1$d pour cent.""Fermer le menu de navigation""Fermer la feuille""EntrĂ©e incorrecte""FenĂŞtre contextuelle""Menu dĂ©roulant""En cours…""Ni cochĂ©e ni dĂ©cochĂ©e""Menu de navigation""Non sĂ©lectionnĂ©""DĂ©sactivĂ©""ActivĂ©""SĂ©lectionnĂ©""Onglet""%1$d pour cent.""Pechar menĂş de navegaciĂłn""Pechar folla""O texto escrito non Ă© válido""Ventá emerxente""MenĂş despregable""En curso""Non marcada nin desmarcada""MenĂş de navegaciĂłn""Non seleccionado""Desactivado""Activado""Seleccionado""Tabulador""%1$d por cento.""નૅવિગેશન મેનૂ બંધ કરો""શીટ બંધ કરો""અમાન્ય ઇનપŕ«ŕŞź""પૉપ-અપ વિન્ડો""ડ્રૉપડાઉન મેનૂ""પ્રક્રિયામાં છે""ન ચેક કરેલŕ«ŕŞ‚ કે ન અનચેક કરેલŕ«ŕŞ‚""નૅવિગેશન મેનૂ""પસંદગી કરી નથી""બંધ છે""ચાલૠછે""પસંદગી કરી""ટૅબ""%1$d ટકા.""नेविगेशन मेन्यू बंद करें""शीट बंद करें""अमान्य इनपŕĄŕ¤ź""पॉप-अप विंडो""ड्रॉपडाउन मेन्यू""जारी हŕĄ""चेकबॉक्स पर न तो सही का निशान लगाया गया, न ही पहले से लगा सही का निशान हटाया गया""नेविगेशन मेन्यू""नहीं चŕĄŕ¤¨ŕ¤ľ गया""बंद हŕĄ""चालू हŕĄ""चŕĄŕ¤¨ŕ¤ľ गया""टŕĄŕ¤¬""%1$d प्रतिशत.""Zatvaranje izbornika za navigaciju""Zatvaranje lista""NevaĹľeći unos""SkoÄŤni prozor""Padajući izbornik""U tijeku""Nije oznaÄŤeno ni poništeno""Navigacijski izbornik""Nije odabrano""IskljuÄŤeno""UkljuÄŤeno""Odabrano""Kartica""%1$d posto.""NavigáciĂłs menĂĽ bezárása""Munkalap bezárása""ÉrvĂ©nytelen adat""ElĹ‘ugrĂł ablak""LegördĂĽlĹ‘ menĂĽ""Folyamatban""Sem bejelölĂ©ssel, sem bejelölĂ©s nĂ©lkĂĽl""NavigáciĂłs menĂĽ""Nincs kijelölve""Ki""Be""Kijelölve""Lap""%1$d százalĂ©k.""Ő“ŐˇŐŻŐĄŐ¬ Ő¶ŐˇŐľŐ«ŐŁŐˇÖŐ«ŐˇŐµŐ« Ő¨Ő¶ŐżÖ€ŐˇÖŐˇŐ¶ŐŻŐ¨""Ő“ŐˇŐŻŐĄŐ¬ Ő©ŐĄÖ€Ő©Ő¨""ŐŤŐ­ŐˇŐ¬ Ő¶ŐĄÖ€ŐˇŐ®Ő¸Ö‚Ő´""ÔµŐ¬Ő¶Ő¸Ő˛ ŐşŐˇŐżŐ¸Ö‚Ő°ŐˇŐ¶""Ô»Ő»Ő¶Ő¸Ő˛ ÖŐˇŐ¶ŐŻ""Ô¸Ő¶Ő©ŐˇÖÖ„Ő¸Ö‚Ő´ Ő§""Ő†Ő·Ő¸Ö‚Ő´Ő¨ Ő¸Ő›Őą Ő¤Ö€ŐľŐˇŐ® Ő§, Ő¸Ő›Őą Ő§Ő¬ Ő°ŐˇŐ¶ŐľŐˇŐ®""Ő†ŐˇŐľŐ«ŐŁŐˇÖŐ«ŐˇŐµŐ« Ő¨Ő¶ŐżÖ€ŐˇÖŐˇŐ¶ŐŻ""Ô¸Ő¶ŐżÖ€ŐľŐˇŐ® ŐąŐ§""Ô±Ő¶Ő»ŐˇŐżŐľŐˇŐ® Ő§""Ő„Ő«ŐˇÖŐľŐˇŐ® Ő§""Ô¸Ő¶ŐżÖ€ŐľŐˇŐ® Ő§""Ő†ŐĄÖ€Ő¤Ő«Ö€""%1$d ŐżŐ¸ŐŻŐ¸Ő˝Ö‰""Tutup menu navigasi""Tutup sheet""Input tidak valid""Jendela Pop-Up""Menu dropdown""Dalam proses""Tidak dicentang atau dihapus centangnya""Menu navigasi""Tidak dipilih""Nonaktif""Aktif""Dipilih""Tab""%1$d persen.""Loka yfirlitsvalmynd""Loka blaði""Ă“gildur innsláttur""Sprettigluggi""Fellivalmynd""ĂŤ vinnslu""Hvorki merkt nĂ© afmerkt""Yfirlitsvalmynd""Ekki valið""Slökkt""Kveikt""Valið""Flipi""%1$d prĂłsent.""Chiudi il menu di navigazione""Chiudi il foglio""Valore non valido""Finestra popup""Menu a discesa""In corso""Casella di controllo nĂ© selezionata nĂ© deselezionata""Menu di navigazione""Opzione non selezionata""Off""On""Elemento selezionato""Scheda""%1$d percento.""סגירת ×Ş×¤×¨×™× ×”× ×™×•×•×""סגירת הגיליון""×”×§×ś× ×ś× ×Ş×§×™×ź""חלון קופץ""×Ş×¤×¨×™× × ×¤×Ş×—""בתהליך""עם סימון ובלי סימון""×Ş×¤×¨×™× ×”× ×™×•×•×""×ś× × ×‘×—×¨""כבוי""פועל""נבחר""‏מקש Tab""%1$d ×חוזים.""ăŠă“ゲăĽă‚·ă§ăłăˇă‹ăĄăĽă‚’é–‰ăă‚‹""ă‚·ăĽăă‚’é–‰ăă‚‹""入力値ăŚç„ˇĺŠąă§ă™""ăťăă—アăă—ウィăłă‰ă‚¦""ă—ă«ă€ă‚¦ăł ăˇă‹ăĄăĽ""処ç†ă—ă¦ă„ăľă™""オăłă§ă‚‚オă•ă§ă‚‚ă‚りăľă›ă‚“""ăŠă“ゲăĽă‚·ă§ăłăˇă‹ăĄăĽ""未é¸ćŠž""オă•""オăł""é¸ćŠžć¸ăż""タă–""%1$dă‘ăĽă‚»ăłă。""áśáá•áá’ááŞááᡠá›á”áśááŁáˇ á“áá®áŁá á•á""á¤áŁá áŞášáᡠá“áá®áŁá á•á""á¨á”áśáá˘ááśá áá ááˇá¬áťá áá""áá›áťá›á®á˘áá á á¤ááśáŻáá á""á©áá›áťáˇáá¨ášá”ášá á›á”áśááŁ""á›áŁá¨áá•á“á”á‘á""áá áŞ á›áťáśáá¨áśáŁášáá á“á áá áŞ á›áťáŁáśáá¨áśáá•á""áśáá•áá’ááŞááᡠá›á”áśááŁ""áá  áá áᡠáá á©á”áŁášá""á’áá›áťá á—áŁášá""á©áá á—áŁášá""áá á©á”áŁášá""á©ááśáá á—á""%1$d ážá áťáŞá”áśá˘á.""Навигация мәзірін жабŃ""Парақты жабŃ""Енгізілген мән жарамŃыз.""Қалқымалы терезе""ĐŃылмалы мәзір""ОрындалŃда""Белгіленбеді немеŃе белгіŃŃ– алынбады""Навигация мәзірі""Таңдалмады""Ó¨ŃŃ–Ń€Ńлі""ҚоŃŃлы""Таңдалды""Қойынды""%1$d пайыз.""បិទážáź‰ážşáž“ុយរុករក""បិទសន្លឹក""ការបញ្ចូល​ážáž·áž“ត្រឹážážŹáź’រូវ""វិនដូ​លោតឡើង""ážáź‰ážşáž“ុយធ្លាក់ចុះ""កំពុងដំណើរការ""ážáž·áž“បានធីក ហើយក៏ážáž·áž“​បានដោះធីកដែរ""ážáź‰ážşáž“ុយរុករក""ážáž·áž“បាន​ជ្រើសរើស""បិទ""បើក""បានជ្រើសរើស""Tab""%1$d ភាគរយ។""ನ್ಯಾವಿಗೇಷನ್‌ ಮೆನೠಮŕłŕ˛šŕłŤŕ˛šŕ˛żŕ˛°ŕ˛ż""ಶೀಟ್ ಮŕłŕ˛šŕłŤŕ˛šŕ˛żŕ˛°ŕ˛ż""ಅಮಾನ್ಯ ಇನ್‌ಪŕłŕ˛źŕłŤ""ಪಾಪ್-ಅಪ್ ವಿಂಡೋ""ಡ್ರಾಪ್‌ಡೌನ್ ಮೆನŕł""ಪ್ರಗತಿಯಲ್ಲಿದೆ""ಗŕłŕ˛°ŕłŕ˛¤ŕ˛żŕ˛¸ŕ˛˛ŕ˛ľŕ˛—ಿಲ್ಲ ಅಥವಾ ಗŕłŕ˛°ŕłŕ˛¤ŕ˛żŕ˛¸ŕ˛żŕ˛°ŕłŕ˛µŕłŕ˛¦ŕ˛¨ŕłŤŕ˛¨ŕł ತೆಗೆಯಲಾಗಿಲ್ಲ""ನ್ಯಾವಿಗೇಶನ್‌ ಮೆನŕł""ಆಯ್ಕೆ ಮಾಡಿಲ್ಲ""ಆಫ್ ಆಗಿದೆ""ಆನ್ ಆಗಿದೆ""ಆಯ್ಕೆಮಾಡಲಾಗಿದೆ""ಟ್ಯಾಬ್""%1$d ಶೇಕಡಾ.""íě‰ ë©”ë‰´ 닫기""시트 닫기""ěž…ë Ąěť´ ěžëŞ»ë¨""팝업 ě°˝""드롭다운 메뉴""ě§„í–‰ 중""ě„ íť ë는 ě„ íť í•´ě śëě§€ 않음""íě‰ ë©”ë‰´""ě„ íťëě§€ 않음""꺼ě§""켜ě§""ě„ íťë¨""í­""%1$d퍼센트""Чабыттоо менюŃŃĐ˝ жабŃŃ""Баракты жабŃŃ""Киргизилген маалымат жаракŃыз""Калкыма терезе""Түрүлмө меню""ĐткарылŃŃда""Белгиленген же белгиленбеген эмеŃ""Чабыттоо менюŃŃ""Тандалган жок""Өчүк""Күйүк""Тандалды""Өтмөк""%1$d пайыз."#0000FF"ປິດ​ເມ​ນູŕşŕş˛ŕş™â€‹ŕş™ŕşłâ€‹ŕş—າງ""ປິດຊີດ""ຂໍ້ມູນທີŕ»ŕş›ŕ»‰ŕş­ŕş™ŕ»€ŕş‚ົ້າບໍŕ»ŕş–ŕş·ŕşŕş•້ອງ""ໜ້າŕşŕ»Ťŕş›ŕş±ŕş­ŕşšŕş­ŕş±ŕşš""ເມນູŕ»ŕşšŕşšŕ»€ŕşĄŕş·ŕ»ŕş­ŕş™ŕşĄŕş»ŕş‡""ŕşŕşłâ€‹ŕşĄŕş±ŕş‡â€‹ŕş”ຳ​ເນີນ​ŕşŕş˛ŕş™""ບໍŕ»ŕ»„ດ້ເລືອຠຫຼື ຍົŕşŕ»€ŕşĄŕşµŕşŕşŕş˛ŕş™ŕ»€ŕşĄŕş·ŕş­ŕşŕ»ŕşĄŕ»‰ŕş§""ເມນູŕşŕş˛ŕş™ŕş™ŕşłŕş—າງ""ບໍŕ»ŕ»„ດ້ເລືອŕş""ປິດ""ເປີດ""ເລືອŕşŕ»ŕşĄŕ»‰ŕş§""ŕ»ŕş–ŕşš""%1$d ເປີ​ເຊັນ.""UĹľdaryti naršymo meniu""UĹľdaryti lapÄ…""Netinkama ÄŻvestis""Iššokantysis langas""IšskleidĹľiamasis meniu""Vyksta""Nei paĹľymÄ—ta, nei nepaĹľymÄ—ta""Naršymo meniu""Nepasirinkta""Išjungta""Ä®jungta""Pasirinkta""Tabuliavimo klavišas""ProcentĹł: %1$d.""AizvÄ“rt navigÄcijas izvÄ“lni""AizvÄ“rt izklÄjlapu""NederÄ«ga ievade""Uznirstošais logs""NolaiĹľamÄ izvÄ“lne""Notiek apstrÄde""Nav ne atzÄ«mÄ“ta, ne neatzÄ«mÄ“ta""NavigÄcijas izvÄ“lne""Nav atlasÄ«ts""IzslÄ“gts""IeslÄ“gts""AtlasÄ«ts""Cilne""Procenti: %1$d.""Затворете го менито за навигациŃа""Затворете го лиŃтот""Неважечки запиŃ""Скокачки прозорец""Паѓачко мени""Đ’Đľ тек""ĐťĐ¸Ń‚Ń Ńтиклирано, Đ˝Đ¸Ń‚Ń ĐľŃ‚Ńтиклирано""Мени за навигациŃа""Не е избрано""ĐŃклŃчено""ВклŃчено""Đзбрано""Картичка""%1$d проценти.""നാവിഗേഷൻ മെനൠഅടയ്‌ക്കŕµŕ´•""ഷീറ്റ് അടയ്ക്കŕµŕ´•""ഇൻപŕµŕ´źŕµŤŕ´źŕµŤ അസാധŕµŕ´µŕ´ľŕ´ŁŕµŤ""പോപ്പ്-അപ്പ് വിൻഡോ""ഡ്രോപ്പ്‌ഡൗൺ മെനŕµ""ŕ´Şŕµŕ´°ŕµ‹ŕ´—മിക്കŕµŕ´¨ŕµŤŕ´¨ŕµ""ചെക്ക് മാർക്കിടŕµŕ´•യോ അൺചെക്ക് ചെയ്യŕµŕ´•യോ ചെയ്തിട്ടില്ല""നാവിഗേഷൻ മെനŕµ""തിരഞ്ഞെടŕµŕ´¤ŕµŤŕ´¤ŕ´żŕ´˛ŕµŤŕ´˛""ഓഫാണ്""ഓണാണ്""തിരഞ്ഞെടŕµŕ´¤ŕµŤŕ´¤ŕµ""ടാബ്""%1$d ശതമാനം.""Навигацын цэŃийг хаах""ĐĄŇŻŃнэгтийг хаах""Đ‘ŃŃ€ŃŃ ĐľŃ€ĐľĐ»Ń‚""Попап цонх""Унадаг цэŃ""Үргэлжилж байна""ТэмдэглэŃŃŤĐ˝, Ńонголтыг болиŃлаагүйн аль нь ч биŃ""Навигацын цэŃ""Сонгоогүй""Унтраалттай""ĐŃаалттай""СонгоŃон""Таб""%1$d Ń…Ńвь.""नेव्हिगेशन मेनू बंद करा""शीट बंद करा""इनपŕĄŕ¤ź चŕĄŕ¤•ीचे आहे""पॉप-अप विंडो""ड्रॉपडाउन मेनू""प्रगतीपथावर आहे""ना खूण केलेला ना खून काढून टाकलेला""नेव्हिगेशन मेनू""निवडला नाही""बंद आहे""सŕĄŕ¤°ŕĄ‚ आहे""निवडला""टॅब""%1$d टक्के.""Tutup menu navigasi""Tutup helaian""Input tidak sah""Tetingkap Timbul""Menu lungsur""Dalam proses""Berkecuali""Menu navigasi""Tidak dipilih""Mati""Hidup""Dipilih""Tab""Peratus %1$d.""လမ်းညွှန် မီနူး ပိá€á€şá€›á€”်""စာမျက်နှာ ပိá€á€şá€›á€”်""ထည့်သွင်းမှု မမှန်ကန်ပါ""ပေါ့ပ်အပ် ဝင်းဒိုး""ဆွဲá€á€»á€™á€®á€”ူး""ဆောင်ရွက်နေဆဲ""အမှá€á€şá€á€Ľá€…်မထားပါ (သို့) အမှá€á€şá€á€Ľá€…်ပြီး""လမ်းညွှန် မီနူး""ရွေးမထားပါ""ပိá€á€ş""ဖွင့်""ရွေးထားသည်""á€á€á€ş""%1$d ရာá€á€­á€Żá€„်နှုန်းá‹""Lukk navigasjonsmenyen""Lukk arket""Ugyldige inndata""Forgrunnsvindu""Rullegardinmeny""PĂĄgĂĄr""Verken avmerket eller ikke avmerket""Navigasjonsmeny""Ikke valgt""Av""PĂĄ""Valgt""Fane""%1$d prosent.""नेभिगेसन मेनॠबन्द गर्नŕĄŕ¤ąŕĄ‹ŕ¤¸ŕĄŤ""पाना बन्द गर्नŕĄŕ¤ąŕĄ‹ŕ¤¸ŕĄŤ""अवŕĄŕ¤¦ŕĄŤŕ¤Ż इन्पŕĄŕ¤ź""पपअप विन्डो""ड्रपडाउन मेनŕĄ""काम हŕĄŕ¤ŕ¤¦ŕĄ छ""न त चिन्ह लगाइएको छ न नॠचिन्ह हटाइएको छ""नेभिगेसन मेनŕĄ""चयन गरिएको छŕĄŕ¤¨""अफ छ""अन छ""चयन गरिएको छ""ट्याब""%1$d प्रतिशत।""Navigatiemenu sluiten""Blad sluiten""Ongeldige invoer""Pop-upvenster""Dropdownmenu""Bezig""Niet aangevinkt of uitgevinkt""Navigatiemenu""Niet geselecteerd""Uit""Aan""Geselecteerd""Tabblad""%1$d procent.""ନାଭିଗେସନ୍ ମେନୠବନ୍ଦ କରନ୍ତŕ­""ସିଟ୍ ବନ୍ଦ କରନ୍ତŕ­""ଅବŕ­ŕ¬§ ଇନପŕ­ŕ¬źŕ­Ť""ପପ୍-ଅପ୍ ୱିଣ୍ଡୋ""ଡ୍ରପଡାଉନ ମେନŕ­""ଚାଲିଛି""ଚେକ୍ କରାଯାଇନାହିଠକି ଅନଚେକ୍ କରାଯାଇନାହିŕ¬""ନାଭିଗେସନ୍ ମେନŕ­""ଚୟନ କରାଯାଇନାହିŕ¬""ବନ୍ଦ ଅଛି""ଚାଲୠଅଛି""ଚୟନିତ""ଟାବ୍""ଶତକଡ଼ା %1$d।""ਨŕ©ŕ¨µŕ©€ŕ¨—ੇਸ਼ਨ ਮੀਨੂ ਬੰਦ ਕਰੋ""ਸ਼ੀਟ ਬੰਦ ਕਰੋ""ਅਵŕ©ŕ¨§ ਇਨਪŕ©ŕ©±ŕ¨ź""ਪੌਪ-ਅੱਪ ਵਿੰਡੋ""ਡ੍ਰੌਪ-ਡਾਊਨ ਮੀਨੂ""ਜਾਰੀ ਹŕ©""ਨਾ ਨਿਸ਼ਾਨ ਲਗਾਇਆ ਗਿਆ ਨਾ ਹੀ ਨਿਸ਼ਾਨ ਹਟਾਇਆ ਗਿਆ""ਨŕ©ŕ¨µŕ©€ŕ¨—ੇਸ਼ਨ ਮੀਨੂ""ਚŕ©ŕ¨Łŕ©€ ਨਹੀਂ ਗŕ¨""ਬੰਦ ਹŕ©""ਚਾਲੂ ਹŕ©""ਚŕ©ŕ¨Łŕ©€ ਗŕ¨""ਟŕ©ŕ¨¬""%1$d ਫ਼ੀਸਦ।""Zamknij menu nawigacyjne""Zamknij arkusz""NieprawidĹ‚owe dane wejĹ›ciowe""WyskakujÄ…ce okienko""Menu""W toku""Ani nie zaznaczono, ani nie odznaczono""Menu nawigacyjne""Nie wybrano""Wyłączono""Włączono""Wybrano""Karta""%1$d procent.""Fechar menu de navegação""Fechar planilha""Entrada inválida""Janela pop-up""Menu suspenso""Em andamento""Nem marcada nem desmarcada""Menu de navegação""NĂŁo selecionado""Desativado""Ativado""Selecionado""Guia""Fechar menu de navegação""Fechar planilha""Entrada inválida""Janela pop-up""Menu suspenso""Em andamento""Nem marcada nem desmarcada""Menu de navegação""NĂŁo selecionado""Desativado""Ativado""Selecionado""Guia""Fechar menu de navegação""Fechar folha""Entrada inválida""Janela pop-up""Menu pendente""Em curso""Nem selecionada nem desselecionada""Menu de navegação""NĂŁo selecionado""Desativado""Ativado""Selecionado""Separador""%1$d por cento.""ĂŽnchideČ›i meniul de navigare""ĂŽnchideČ›i foaia""Intrare nevalidÄ""FereastrÄ pop-up""Meniu drop-down""ĂŽn curs""Nici bifatÄ, nici debifatÄ""Meniu de navigare""Neselectat""Dezactivat""Activat""Selectat""FilÄ""Закрыть меню навигации""Закрыть лиŃŃ‚""Неправильный ввод""Đ’Ńплывающее окно""РаŃкрывающееŃŃŹ меню""ВыполняетŃŃŹ""Флажок не ŃŃтановлен и не Ńнят""Меню навигации""Не выбрано""Выключено""Включено""Выбрано""Вкладка""Процентов: %1$d.""ŕ·ŕ¶‚චාලන මෙනුව ŕ·€ŕ·ŕ¶±ŕ·Šŕ¶±""පත්‍රය ŕ·€ŕ·ŕ¶±ŕ·Šŕ¶±""වලංගු නොවන ආදානයකි""ŕ¶‹ŕ¶­ŕ·Šŕ¶´ŕ¶­ŕ¶± කවුළුව""ŕ¶´ŕ¶­ŕ¶± මෙනුව""ප්‍රගතියේ පවතී""හරි ලකුණු ŕ¶şŕ·śŕ¶Żŕ·Ź ŕ·„ŕ·ť හරි ලකුණු යෙදීම ඉවත් ŕ¶šŕ¶» ŕ¶±ŕ·ŕ¶­""ŕ·ŕ¶‚චාලන මෙනුව""තෝරා ŕ¶±ŕ·ŕ¶­""ක්‍රියාවිරහිතයි""ක්‍රියාත්මකයි""තෝරන ලදි""ŕ¶§ŕ·ŕ¶¶ŕ¶ş""ŕ·ŕ·’ŕ¶şŕ¶şŕ¶§ %1$d.""ZavrieĹĄ navigaÄŤnĂş ponuku""ZavrieĹĄ hárok""NeplatnĂ˝ vstup""Vyskakovacie okno""RozbaÄľovacia ponuka""Prebieha""Ani zaÄŤiarknutĂ© ani nezaÄŤiarknutĂ©""NavigaÄŤná ponuka""NevybranĂ©""VypnutĂ©""ZapnutĂ©""VybranĂ©""Karta""Zapri meni za krmarjenje""Zapri list""Neveljaven vnos""Pojavno okno""Spustni meni""Poteka""Niti potrjeno niti nepotrjeno""Meni za krmarjenje""Ni izbrano""Izklopljeno""Vklopljeno""Izbrano""Zavihek""%1$d odstotkov""Mbyll menynĂ« e navigimit""Mbyll fletĂ«n""Hyrje e pavlefshme""Dritare kĂ«rcyese""Menyja me lĂ«shim poshtĂ«""NĂ« vazhdim""As e zgjedhur as e pazgjedhur""Menyja e navigimit""Nuk Ă«shtĂ« zgjedhur""Joaktiv""Aktiv""Zgjedhur""Tab""%1$d pĂ«r qind.""Затвори мени за навигациŃŃ""Затворите табелŃ""ĐŁĐ˝ĐľŃ Ńе неважећи""ĐŃкачŃћи прозор""ПадаŃŃћи мени""ĐŁ токŃ""НиŃе означено нити пониŃтено""Мени за навигациŃŃ""НиŃе изабрано""ĐŃкљŃчено""УкљŃчено""Đзабрано""Картица""%1$d поŃто.""Stäng navigeringsmenyn""Stäng kalkylarket""Ogiltiga indata""Popup-fönster""Rullgardinsmeny""PĂĄgĂĄr""Varken markerad eller avmarkerad""Navigeringsmeny""Inte vald""Av""PĂĄ""Valt""Flik""%1$d procent.""Funga menyu ya kusogeza""Funga laha""Ulichoweka si sahihi""Dirisha Ibukizi""Menyu kunjuzi""Inaendelea""Hujateua wala kubatilisha uteuzi""Menyu ya kusogeza""Hujachagua""Imezimwa""Imewashwa""Umechagua""Kichupo""Asilimia %1$d.""வழிசெலŕŻŕ®¤ŕŻŤŕ®¤ŕ®˛ŕŻŤ மெனŕŻŕ®µŕŻ ŕ®®ŕŻ‚ŕ®źŕŻŕ®®ŕŻŤ""ஷீட்ட௠மூடŕŻŕ®®ŕŻŤ""தவறான உள்ளீடŕŻ""பாப்-அப் சாளரம்""கீழ்த்தோன்றல் மெனŕŻ""செயலிலŕŻŕ®łŕŻŤŕ®łŕ®¤ŕŻ""தேர்வŕŻŕ®šŕŻ†ŕ®ŻŕŻŤŕ®Żŕ®ŞŕŻŤŕ®Şŕ®źŕŻŤŕ®źŕ®¤ŕŻ ŕ®®ŕ®±ŕŻŤŕ®±ŕŻŕ®®ŕŻŤ தேர்வŕŻŕ®šŕŻ†ŕ®ŻŕŻŤŕ®Żŕ®ŞŕŻŤŕ®Şŕ®źŕ®ľŕ®¤ŕ®¤ŕŻ""வழிசெலŕŻŕ®¤ŕŻŤŕ®¤ŕ®˛ŕŻŤ மெனŕŻ""தேர்ந்தெடŕŻŕ®•்கப்படவில்லŕŻ""ŕ®®ŕŻŕ®źŕ®•்கப்பட்டŕŻŕ®łŕŻŤŕ®łŕ®¤ŕŻ""இயக்கப்பட்டŕŻŕ®łŕŻŤŕ®łŕ®¤ŕŻ""தேர்ந்தெடŕŻŕ®•்கப்பட்டŕŻŕ®łŕŻŤŕ®łŕ®¤ŕŻ""பிரிவŕŻ""%1$d சதவீதம்.""నావిగేషన్ మెనూనౠమూసివేయి""షీట్‌నౠమూసివేయి""ఇన్‌పŕ±ŕ°źŕ±Ť చెల్లదŕ±""పాప్-అప్ విండో""డ్రాప్‌డౌన్ మెనూ""ప్రోగ్రెస్‌లో ఉంది""చెక్ చేయబడలేదౠఅలాగే చెక్ చేయబడదŕ±""నావిగేషన్ మెనూ""ŕ°Žŕ°‚ŕ°šŕ±ŕ°•ోబడలేదŕ±""ఆఫ్‌లో ఉంది""ఆన్‌లో ఉంది""ŕ°Žŕ°‚ŕ°šŕ±ŕ°•ోబడింది""ట్యాబ్""%1$d శాతం.""ปิดเมนูŕ¸ŕ¸˛ŕ¸Łŕ¸™ŕ¸łŕ¸—าง""ปิดชีต""อินพุตไมŕąŕ¸–ูŕ¸ŕ¸•้อง""หน้าตŕąŕ¸˛ŕ¸‡ŕ¸›ŕąŠŕ¸­ŕ¸›ŕ¸­ŕ¸±ŕ¸›""เมนูŕąŕ¸šŕ¸šŕą€ŕ¸Ąŕ¸·ŕąŕ¸­ŕ¸™ŕ¸Ąŕ¸‡""ŕ¸ŕ¸łŕ¸Ąŕ¸±ŕ¸‡ŕ¸”ำเนินŕ¸ŕ¸˛ŕ¸Ł""ไมŕąŕą„ด้เลือŕ¸ŕ¸«ŕ¸Łŕ¸·ŕ¸­ŕ¸˘ŕ¸ŕą€ŕ¸Ąŕ¸´ŕ¸ŕ¸ŕ¸˛ŕ¸Łŕą€ŕ¸Ąŕ¸·ŕ¸­ŕ¸""เมนูŕ¸ŕ¸˛ŕ¸Łŕ¸™ŕ¸łŕ¸—าง""ไมŕąŕą„ด้เลือŕ¸""ปิด""เปิด""เลือŕ¸ŕą„ว้""ŕąŕ¸—็บ""%1$d เปอร์เซ็นต์""Isara ang menu ng navigation""Isara ang sheet""Invalid na input""Window ng Pop-Up""Drop-down na menu""Isinasagawa""Hindi may check o walang check""Menu ng navigation""Hindi napili""Naka-off""Naka-on""Napili""Tab""%1$d (na) porsyento.""Gezinme menĂĽsĂĽnĂĽ kapat""Sayfayı kapat""Geçersiz giriĹź""Pop-up Pencere""Açılır menĂĽ""Devam ediyor""Ne iĹźaretli ne de iĹźaretli deÄźil""Gezinme menĂĽsĂĽ""Seçili deÄźil""Kapalı""Açık""Seçili""Sekme""YĂĽzde %1$d.""Закрити меню навігації""Закрити аркŃŃ""Введено недійŃні дані""Спливаюче вікно""Спадне меню""ВиконŃєтьŃŃŹ""Прапорець ані поŃтавлено, ані знято""Меню навігації""Не вибрано""Вимкнено""Увімкнено""Вибрано""Вкладка""Đ’Ń–Đ´Ńотків: %1$d.""نیŮیگیشن مین٠بند کریں""Ř´ŰŚŮą بند کریں""غلط ان پٹ""پاپ اپ ŮنÚŮ""Úراپ Úاؤن مینŮ""پیشرŮŘŞ Ů…ŰŚÚş""Ů†Ű ŘŞŮ Ů†Ř´Ř§Ů† زد کیا گیا Ů†Ű ŰŰŚ نشان Űٹایا گیا""نیŮیگیشن مینŮ""غیر منتخب کردŰ""آ٠ŰŰ’""آن ŰŰ’""منتخب کردŰ""ٹیب""%1$d Ůیصد۔""Navigatsiya menyusini yopish""Varaqni yopish""Kiritilgan axborot xato""Qalqib chiquvchi oyna""Pastga ochiluvchi menyu""Bajarilmoqda""Belgilanmagan va belgi olib tashlanmagan""Navigatsiya menyusi""Tanlanmagan""OĘ»chiq""Yoniq""Tanlangan""Varaq""%1$d foiz.""ÄĂłng trình đơn Ä‘iá»u hướng""ÄĂłng trang tĂ­nh""Giá trị nháş­p khĂ´ng hợp lệ""Cá»­a sổ báş­t lĂŞn""Trình đơn thả xuống""Äang thá»±c hiện""KhĂ´ng đánh dấu cĹ©ng khĂ´ng bỏ đánh dấu""Trình đơn Ä‘iá»u hướng""Chưa chọn""Äang tắt""Äang báş­t""ÄĂŁ chọn""Tháş»""关闭导čŞčŹśĺŤ•""关闭工作表""输入无ć•""弹出式窗口""下拉菜单""进行中""既没有勾选也没有取ć¶é€‰ä¸­""导čŞčŹśĺŤ•""未选择""已关闭""已开ĺŻ""已选择""标签页""百ĺ†äą‹ %1$d。""閂導覽é¸ĺ–®""閂表單""輸入ĺ…資料無ć•""ĺ˝ĺ‡şĺĽŹč¦–窗""下拉式é¸ĺ–®""進行中""未勾é¸ć–者未取ć¶ĺ‹ľé¸""導覽é¸ĺ–®""未揀""é–‚""é–‹""揀咗""ĺ†é ""百ĺ†äą‹ %1$d。""關閉導覽é¸ĺ–®""關閉功č˝čˇ¨""輸入內容無ć•""ĺ˝ĺ‡şĺĽŹč¦–窗""下拉式é¸ĺ–®""處ç†ä¸­""沒有勾é¸äąźć˛’有取ć¶ĺ‹ľé¸""導覽é¸ĺ–®""未é¸ĺŹ–""已關閉""已開啟""ĺ·˛é¸ĺŹ–""Tab 鍵""百ĺ†äą‹ %1$d。""Vala imenyu yokuzulazula""Vala ishidi""Okufakwayo okungalungile""Iwindi Lesikhashana""Imenyu eya phansi""Kuyaqhubeka""Lutho oluhloliwe nolungahlolwanga""Imenyu yokuzulazula""Ayikhethiwe""Valiwe""Vuliwe""Okukhethiwe""Ithebhu""%1$d amaphesenti."#FFBB86FC#FF6200EE#FF3700B3#FF03DAC5#FF018786#FF000000#FFFFFFFF#FF03324ALocalNetworkingAndroidApp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000..fd2aa8c --- /dev/null +++ b/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties @@ -0,0 +1,17 @@ +#Sat Jan 28 09:06:31 CET 2023 +com.mobilegame.localnetworkingandroidapp-main-6\:/mipmap-xxhdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\mipmap-xxhdpi-v4\\ic_launcher_round.webp +com.mobilegame.localnetworkingandroidapp-main-6\:/mipmap-anydpi-v26/ic_launcher_round.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\mipmap-anydpi-v26\\ic_launcher_round.xml +com.mobilegame.localnetworkingandroidapp-main-6\:/mipmap-anydpi-v26/ic_launcher.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\mipmap-anydpi-v26\\ic_launcher.xml +com.mobilegame.localnetworkingandroidapp-main-6\:/mipmap-xhdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\mipmap-xhdpi-v4\\ic_launcher.webp +com.mobilegame.localnetworkingandroidapp-main-6\:/drawable/ic_launcher_background.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\drawable\\ic_launcher_background.xml +com.mobilegame.localnetworkingandroidapp-main-6\:/drawable-v24/ic_launcher_foreground.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\drawable-v24\\ic_launcher_foreground.xml +com.mobilegame.localnetworkingandroidapp-main-6\:/mipmap-mdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\mipmap-mdpi-v4\\ic_launcher_round.webp +com.mobilegame.localnetworkingandroidapp-main-6\:/mipmap-hdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\mipmap-hdpi-v4\\ic_launcher_round.webp +com.mobilegame.localnetworkingandroidapp-main-6\:/mipmap-xxhdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\mipmap-xxhdpi-v4\\ic_launcher.webp +com.mobilegame.localnetworkingandroidapp-main-6\:/mipmap-hdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\mipmap-hdpi-v4\\ic_launcher.webp +com.mobilegame.localnetworkingandroidapp-main-6\:/xml/data_extraction_rules.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\xml\\data_extraction_rules.xml +com.mobilegame.localnetworkingandroidapp-main-6\:/mipmap-mdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\mipmap-mdpi-v4\\ic_launcher.webp +com.mobilegame.localnetworkingandroidapp-main-6\:/mipmap-xhdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\mipmap-xhdpi-v4\\ic_launcher_round.webp +com.mobilegame.localnetworkingandroidapp-main-6\:/mipmap-xxxhdpi/ic_launcher_round.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\mipmap-xxxhdpi-v4\\ic_launcher_round.webp +com.mobilegame.localnetworkingandroidapp-main-6\:/xml/backup_rules.xml=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\xml\\backup_rules.xml +com.mobilegame.localnetworkingandroidapp-main-6\:/mipmap-xxxhdpi/ic_launcher.webp=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\packaged_res\\debug\\mipmap-xxxhdpi-v4\\ic_launcher.webp diff --git a/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml new file mode 100644 index 0000000..bbe8f5a --- /dev/null +++ b/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml @@ -0,0 +1,4 @@ + +#FFBB86FC#FF6200EE#FF3700B3#FF03DAC5#FF018786#FF000000#FFFFFFFF#FF03324ALocalNetworkingAndroidApp \ No newline at end of file diff --git a/app/build/intermediates/incremental/mergeDebugAssets/merger.xml b/app/build/intermediates/incremental/mergeDebugAssets/merger.xml new file mode 100644 index 0000000..0df7a56 --- /dev/null +++ b/app/build/intermediates/incremental/mergeDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000..cde50eb --- /dev/null +++ b/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/mergeDebugShaders/merger.xml b/app/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000..11e8902 --- /dev/null +++ b/app/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt b/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt new file mode 100644 index 0000000..7a74c5c --- /dev/null +++ b/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt @@ -0,0 +1,28 @@ +#Mon Jan 30 13:15:13 CET 2023 +path.4=1/classes.dex +path.3=14/classes.dex +path.2=10/classes.dex +path.1=0/classes.dex +renamed.8=classes9.dex +path.8=6/classes.dex +path.7=5/classes.dex +path.6=3/classes.dex +path.5=2/classes.dex +path.0=classes.dex +base.4=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\1\\classes.dex +base.3=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\14\\classes.dex +base.2=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\10\\classes.dex +base.1=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\0\\classes.dex +base.0=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\dex\\debug\\mergeExtDexDebug\\classes.dex +renamed.3=classes4.dex +renamed.2=classes3.dex +renamed.1=classes2.dex +renamed.0=classes.dex +renamed.7=classes8.dex +base.8=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\6\\classes.dex +renamed.6=classes7.dex +base.7=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\5\\classes.dex +renamed.5=classes6.dex +base.6=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\3\\classes.dex +renamed.4=classes5.dex +base.5=D\:\\Android\\LocalNetworkingAndroidApp\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\2\\classes.dex diff --git a/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources b/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources new file mode 100644 index 0000000..875aa49 Binary files /dev/null and b/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources differ diff --git a/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 b/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 new file mode 100644 index 0000000..167f269 Binary files /dev/null and b/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 differ diff --git a/app/build/intermediates/incremental/processDebugResources/resources-list-for-resources-debug.ap_.txt b/app/build/intermediates/incremental/processDebugResources/resources-list-for-resources-debug.ap_.txt new file mode 100644 index 0000000..732fd6d --- /dev/null +++ b/app/build/intermediates/incremental/processDebugResources/resources-list-for-resources-debug.ap_.txt @@ -0,0 +1 @@ +D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\drawable-v24_ic_launcher_foreground.xml.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\drawable_ic_launcher_background.xml.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\mipmap-anydpi-v26_ic_launcher.xml.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\mipmap-anydpi-v26_ic_launcher_round.xml.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\mipmap-hdpi_ic_launcher.webp.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\mipmap-hdpi_ic_launcher_round.webp.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\mipmap-mdpi_ic_launcher.webp.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\mipmap-mdpi_ic_launcher_round.webp.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\mipmap-xhdpi_ic_launcher.webp.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\mipmap-xhdpi_ic_launcher_round.webp.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\mipmap-xxhdpi_ic_launcher.webp.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\mipmap-xxhdpi_ic_launcher_round.webp.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\mipmap-xxxhdpi_ic_launcher.webp.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\mipmap-xxxhdpi_ic_launcher_round.webp.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-af_values-af.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-am_values-am.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-ar_values-ar.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-as_values-as.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-az_values-az.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-b+sr+Latn_values-b+sr+Latn.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-be_values-be.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-bg_values-bg.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-bn_values-bn.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-bs_values-bs.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-ca_values-ca.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-cs_values-cs.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-da_values-da.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-de_values-de.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-el_values-el.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-en-rAU_values-en-rAU.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-en-rCA_values-en-rCA.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-en-rGB_values-en-rGB.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-en-rIN_values-en-rIN.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-en-rXC_values-en-rXC.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-es-rUS_values-es-rUS.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-es_values-es.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-et_values-et.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-eu_values-eu.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-fa_values-fa.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-fi_values-fi.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-fr-rCA_values-fr-rCA.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-fr_values-fr.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-gl_values-gl.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-gu_values-gu.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-hi_values-hi.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-hr_values-hr.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-hu_values-hu.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-hy_values-hy.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-in_values-in.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-is_values-is.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-it_values-it.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-iw_values-iw.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-ja_values-ja.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-ka_values-ka.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-kk_values-kk.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-km_values-km.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-kn_values-kn.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-ko_values-ko.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-ky_values-ky.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-land_values-land.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-lo_values-lo.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-lt_values-lt.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-lv_values-lv.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-mk_values-mk.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-ml_values-ml.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-mn_values-mn.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-mr_values-mr.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-ms_values-ms.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-my_values-my.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-nb_values-nb.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-ne_values-ne.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-nl_values-nl.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-or_values-or.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-pa_values-pa.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-pl_values-pl.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-pt-rBR_values-pt-rBR.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-pt-rPT_values-pt-rPT.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-pt_values-pt.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-ro_values-ro.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-ru_values-ru.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-si_values-si.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-sk_values-sk.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-sl_values-sl.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-sq_values-sq.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-sr_values-sr.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-sv_values-sv.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-sw_values-sw.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-ta_values-ta.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-te_values-te.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-th_values-th.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-tl_values-tl.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-tr_values-tr.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-uk_values-uk.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-ur_values-ur.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-uz_values-uz.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-v16_values-v16.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-v21_values-v21.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-vi_values-vi.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-zh-rCN_values-zh-rCN.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-zh-rHK_values-zh-rHK.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-zh-rTW_values-zh-rTW.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values-zu_values-zu.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\values_values.arsc.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\xml_backup_rules.xml.flat D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug\xml_data_extraction_rules.xml.flat \ No newline at end of file diff --git a/app/build/intermediates/javac/debug/classes/com/mobilegame/localnetworkingandroidapp/BuildConfig.class b/app/build/intermediates/javac/debug/classes/com/mobilegame/localnetworkingandroidapp/BuildConfig.class new file mode 100644 index 0000000..760873e Binary files /dev/null and b/app/build/intermediates/javac/debug/classes/com/mobilegame/localnetworkingandroidapp/BuildConfig.class differ diff --git a/app/build/intermediates/local_only_symbol_list/debug/R-def.txt b/app/build/intermediates/local_only_symbol_list/debug/R-def.txt new file mode 100644 index 0000000..8a421f5 --- /dev/null +++ b/app/build/intermediates/local_only_symbol_list/debug/R-def.txt @@ -0,0 +1,18 @@ +R_DEF: Internal format may change without notice +local +color black +color prussianBlue +color purple_200 +color purple_500 +color purple_700 +color teal_200 +color teal_700 +color white +drawable ic_launcher_background +drawable ic_launcher_foreground +mipmap ic_launcher +mipmap ic_launcher_round +string app_name +style Theme.LocalNetworkingAndroidApp +xml backup_rules +xml data_extraction_rules diff --git a/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000..be81120 --- /dev/null +++ b/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,118 @@ +1 +2 +6 +7 D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml +9 android:targetSdkVersion="33" /> +9-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml +10 +11 +11-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:5:5-67 +11-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:5:22-64 +12 +13 D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:7:5-33:19 +14 android:allowBackup="true" +14-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:8:9-35 +15 android:appComponentFactory="androidx.core.app.CoreComponentFactory" +15-->[androidx.core:core:1.7.0] C:\Users\valen\.gradle\caches\transforms-3\2157ea49cdc3c5b2f06f3fe4a50dab4f\transformed\core-1.7.0\AndroidManifest.xml:24:18-86 +16 android:dataExtractionRules="@xml/data_extraction_rules" +16-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:9:9-65 +17 android:debuggable="true" +18 android:fullBackupContent="@xml/backup_rules" +18-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:10:9-54 +19 android:icon="@mipmap/ic_launcher" +19-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:11:9-43 +20 android:label="@string/app_name" +20-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:12:9-41 +21 android:roundIcon="@mipmap/ic_launcher_round" +21-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:13:9-54 +22 android:supportsRtl="true" +22-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:14:9-35 +23 android:theme="@style/Theme.LocalNetworkingAndroidApp" > +23-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:15:9-63 +24 D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:17:9-32:20 +25 android:name="com.mobilegame.localnetworkingandroidapp.MainActivity" +25-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:18:13-41 +26 android:exported="true" +26-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:19:13-36 +27 android:label="@string/app_name" +27-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:20:13-45 +28 android:theme="@style/Theme.LocalNetworkingAndroidApp" +28-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:22:13-67 +29 android:windowSoftInputMode="adjustResize" > +29-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:21:13-55 +30 +30-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:23:13-27:29 +31 +31-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:24:17-69 +31-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:24:25-66 +32 +33 +33-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:26:17-77 +33-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:26:27-74 +34 +35 +36 D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:29:13-31:36 +37 android:name="android.app.lib_name" +37-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:30:17-52 +38 android:value="" /> +38-->D:\Android\LocalNetworkingAndroidApp\app\src\main\AndroidManifest.xml:31:17-33 +39 +40 [androidx.compose.ui:ui-tooling:1.1.1] C:\Users\valen\.gradle\caches\transforms-3\5203297084e57ffb9f94571a20ff8f2b\transformed\ui-tooling-1.1.1\AndroidManifest.xml:25:9-27:39 +41 android:name="androidx.compose.ui.tooling.PreviewActivity" +41-->[androidx.compose.ui:ui-tooling:1.1.1] C:\Users\valen\.gradle\caches\transforms-3\5203297084e57ffb9f94571a20ff8f2b\transformed\ui-tooling-1.1.1\AndroidManifest.xml:26:13-71 +42 android:exported="true" /> +42-->[androidx.compose.ui:ui-tooling:1.1.1] C:\Users\valen\.gradle\caches\transforms-3\5203297084e57ffb9f94571a20ff8f2b\transformed\ui-tooling-1.1.1\AndroidManifest.xml:27:13-36 +43 [androidx.compose.ui:ui-test-manifest:1.1.1] C:\Users\valen\.gradle\caches\transforms-3\b44f2e4f1d45b4060c6ebe524b35bff6\transformed\ui-test-manifest-1.1.1\AndroidManifest.xml:25:9-27:39 +44 android:name="androidx.activity.ComponentActivity" +44-->[androidx.compose.ui:ui-test-manifest:1.1.1] C:\Users\valen\.gradle\caches\transforms-3\b44f2e4f1d45b4060c6ebe524b35bff6\transformed\ui-test-manifest-1.1.1\AndroidManifest.xml:26:13-63 +45 android:exported="true" /> +45-->[androidx.compose.ui:ui-test-manifest:1.1.1] C:\Users\valen\.gradle\caches\transforms-3\b44f2e4f1d45b4060c6ebe524b35bff6\transformed\ui-test-manifest-1.1.1\AndroidManifest.xml:27:13-36 +46 +47 [androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:26:9-34:20 +48 android:name="androidx.startup.InitializationProvider" +48-->[androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:27:13-67 +49 android:authorities="com.mobilegame.localnetworkingandroidapp.androidx-startup" +49-->[androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:28:13-68 +50 android:exported="false" > +50-->[androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:29:13-37 +51 [androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:31:13-33:52 +52 android:name="androidx.profileinstaller.ProfileInstallerInitializer" +52-->[androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:32:17-85 +53 android:value="androidx.startup" /> +53-->[androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:33:17-49 +54 +55 +56 [androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:36:9-45:20 +57 android:name="androidx.profileinstaller.ProfileInstallReceiver" +57-->[androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:37:13-76 +58 android:directBootAware="false" +58-->[androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:38:13-44 +59 android:enabled="true" +59-->[androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:39:13-35 +60 android:exported="true" +60-->[androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:40:13-36 +61 android:permission="android.permission.DUMP" > +61-->[androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:41:13-57 +62 +62-->[androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:42:13-44:29 +63 +63-->[androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:43:17-91 +63-->[androidx.profileinstaller:profileinstaller:1.1.0] C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\AndroidManifest.xml:43:25-88 +64 +65 +66 +67 +68 diff --git a/app/build/intermediates/merged_java_res/debug/base.jar b/app/build/intermediates/merged_java_res/debug/base.jar new file mode 100644 index 0000000..61faaf8 Binary files /dev/null and b/app/build/intermediates/merged_java_res/debug/base.jar differ diff --git a/app/build/intermediates/merged_manifest/debug/AndroidManifest.xml b/app/build/intermediates/merged_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000..626ebae --- /dev/null +++ b/app/build/intermediates/merged_manifest/debug/AndroidManifest.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/merged_manifests/debug/AndroidManifest.xml b/app/build/intermediates/merged_manifests/debug/AndroidManifest.xml new file mode 100644 index 0000000..626ebae --- /dev/null +++ b/app/build/intermediates/merged_manifests/debug/AndroidManifest.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/merged_manifests/debug/output-metadata.json b/app/build/intermediates/merged_manifests/debug/output-metadata.json new file mode 100644 index 0000000..41478f7 --- /dev/null +++ b/app/build/intermediates/merged_manifests/debug/output-metadata.json @@ -0,0 +1,20 @@ +{ + "version": 3, + "artifactType": { + "type": "MERGED_MANIFESTS", + "kind": "Directory" + }, + "applicationId": "com.mobilegame.localnetworkingandroidapp", + "variantName": "debug", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0", + "outputFile": "AndroidManifest.xml" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res/debug/drawable-v24_ic_launcher_foreground.xml.flat b/app/build/intermediates/merged_res/debug/drawable-v24_ic_launcher_foreground.xml.flat new file mode 100644 index 0000000..32f824d Binary files /dev/null and b/app/build/intermediates/merged_res/debug/drawable-v24_ic_launcher_foreground.xml.flat differ diff --git a/app/build/intermediates/merged_res/debug/drawable_ic_launcher_background.xml.flat b/app/build/intermediates/merged_res/debug/drawable_ic_launcher_background.xml.flat new file mode 100644 index 0000000..f9fd075 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/drawable_ic_launcher_background.xml.flat differ diff --git a/app/build/intermediates/merged_res/debug/mipmap-anydpi-v26_ic_launcher.xml.flat b/app/build/intermediates/merged_res/debug/mipmap-anydpi-v26_ic_launcher.xml.flat new file mode 100644 index 0000000..69b87b3 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mipmap-anydpi-v26_ic_launcher.xml.flat differ diff --git a/app/build/intermediates/merged_res/debug/mipmap-anydpi-v26_ic_launcher_round.xml.flat b/app/build/intermediates/merged_res/debug/mipmap-anydpi-v26_ic_launcher_round.xml.flat new file mode 100644 index 0000000..51f85f2 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mipmap-anydpi-v26_ic_launcher_round.xml.flat differ diff --git a/app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher.webp.flat b/app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher.webp.flat new file mode 100644 index 0000000..6b52825 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher.webp.flat differ diff --git a/app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher_round.webp.flat b/app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher_round.webp.flat new file mode 100644 index 0000000..882d283 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher_round.webp.flat differ diff --git a/app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher.webp.flat b/app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher.webp.flat new file mode 100644 index 0000000..31a902b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher.webp.flat differ diff --git a/app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher_round.webp.flat b/app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher_round.webp.flat new file mode 100644 index 0000000..847409d Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher_round.webp.flat differ diff --git a/app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher.webp.flat b/app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher.webp.flat new file mode 100644 index 0000000..d393b6e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher.webp.flat differ diff --git a/app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher_round.webp.flat b/app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher_round.webp.flat new file mode 100644 index 0000000..cad48c1 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher_round.webp.flat differ diff --git a/app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher.webp.flat b/app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher.webp.flat new file mode 100644 index 0000000..97eab76 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher.webp.flat differ diff --git a/app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher_round.webp.flat b/app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher_round.webp.flat new file mode 100644 index 0000000..2cfd751 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher_round.webp.flat differ diff --git a/app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher.webp.flat b/app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher.webp.flat new file mode 100644 index 0000000..01834ca Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher.webp.flat differ diff --git a/app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher_round.webp.flat b/app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher_round.webp.flat new file mode 100644 index 0000000..8b22a69 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher_round.webp.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-af_values-af.arsc.flat b/app/build/intermediates/merged_res/debug/values-af_values-af.arsc.flat new file mode 100644 index 0000000..bd49210 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-af_values-af.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-am_values-am.arsc.flat b/app/build/intermediates/merged_res/debug/values-am_values-am.arsc.flat new file mode 100644 index 0000000..41f6e67 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-am_values-am.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-ar_values-ar.arsc.flat b/app/build/intermediates/merged_res/debug/values-ar_values-ar.arsc.flat new file mode 100644 index 0000000..f95793c Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-ar_values-ar.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-as_values-as.arsc.flat b/app/build/intermediates/merged_res/debug/values-as_values-as.arsc.flat new file mode 100644 index 0000000..541272a Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-as_values-as.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-az_values-az.arsc.flat b/app/build/intermediates/merged_res/debug/values-az_values-az.arsc.flat new file mode 100644 index 0000000..0bd98f9 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-az_values-az.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat b/app/build/intermediates/merged_res/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat new file mode 100644 index 0000000..f6ad89c Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-be_values-be.arsc.flat b/app/build/intermediates/merged_res/debug/values-be_values-be.arsc.flat new file mode 100644 index 0000000..4847f3e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-be_values-be.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-bg_values-bg.arsc.flat b/app/build/intermediates/merged_res/debug/values-bg_values-bg.arsc.flat new file mode 100644 index 0000000..7baaa36 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-bg_values-bg.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-bn_values-bn.arsc.flat b/app/build/intermediates/merged_res/debug/values-bn_values-bn.arsc.flat new file mode 100644 index 0000000..fbce7e2 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-bn_values-bn.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-bs_values-bs.arsc.flat b/app/build/intermediates/merged_res/debug/values-bs_values-bs.arsc.flat new file mode 100644 index 0000000..6d32450 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-bs_values-bs.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-ca_values-ca.arsc.flat b/app/build/intermediates/merged_res/debug/values-ca_values-ca.arsc.flat new file mode 100644 index 0000000..e09ed5c Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-ca_values-ca.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-cs_values-cs.arsc.flat b/app/build/intermediates/merged_res/debug/values-cs_values-cs.arsc.flat new file mode 100644 index 0000000..f408177 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-cs_values-cs.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-da_values-da.arsc.flat b/app/build/intermediates/merged_res/debug/values-da_values-da.arsc.flat new file mode 100644 index 0000000..5915bc7 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-da_values-da.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-de_values-de.arsc.flat b/app/build/intermediates/merged_res/debug/values-de_values-de.arsc.flat new file mode 100644 index 0000000..7edb216 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-de_values-de.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-el_values-el.arsc.flat b/app/build/intermediates/merged_res/debug/values-el_values-el.arsc.flat new file mode 100644 index 0000000..66600cb Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-el_values-el.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-en-rAU_values-en-rAU.arsc.flat b/app/build/intermediates/merged_res/debug/values-en-rAU_values-en-rAU.arsc.flat new file mode 100644 index 0000000..4d0e76c Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-en-rAU_values-en-rAU.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-en-rCA_values-en-rCA.arsc.flat b/app/build/intermediates/merged_res/debug/values-en-rCA_values-en-rCA.arsc.flat new file mode 100644 index 0000000..f43234b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-en-rCA_values-en-rCA.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-en-rGB_values-en-rGB.arsc.flat b/app/build/intermediates/merged_res/debug/values-en-rGB_values-en-rGB.arsc.flat new file mode 100644 index 0000000..546f90e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-en-rGB_values-en-rGB.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-en-rIN_values-en-rIN.arsc.flat b/app/build/intermediates/merged_res/debug/values-en-rIN_values-en-rIN.arsc.flat new file mode 100644 index 0000000..3b39d01 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-en-rIN_values-en-rIN.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-en-rXC_values-en-rXC.arsc.flat b/app/build/intermediates/merged_res/debug/values-en-rXC_values-en-rXC.arsc.flat new file mode 100644 index 0000000..d2804d1 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-en-rXC_values-en-rXC.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-es-rUS_values-es-rUS.arsc.flat b/app/build/intermediates/merged_res/debug/values-es-rUS_values-es-rUS.arsc.flat new file mode 100644 index 0000000..1853d72 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-es-rUS_values-es-rUS.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-es_values-es.arsc.flat b/app/build/intermediates/merged_res/debug/values-es_values-es.arsc.flat new file mode 100644 index 0000000..ae62fa0 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-es_values-es.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-et_values-et.arsc.flat b/app/build/intermediates/merged_res/debug/values-et_values-et.arsc.flat new file mode 100644 index 0000000..be50ae4 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-et_values-et.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-eu_values-eu.arsc.flat b/app/build/intermediates/merged_res/debug/values-eu_values-eu.arsc.flat new file mode 100644 index 0000000..41b3b83 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-eu_values-eu.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-fa_values-fa.arsc.flat b/app/build/intermediates/merged_res/debug/values-fa_values-fa.arsc.flat new file mode 100644 index 0000000..25ec942 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-fa_values-fa.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-fi_values-fi.arsc.flat b/app/build/intermediates/merged_res/debug/values-fi_values-fi.arsc.flat new file mode 100644 index 0000000..6673bcb Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-fi_values-fi.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-fr-rCA_values-fr-rCA.arsc.flat b/app/build/intermediates/merged_res/debug/values-fr-rCA_values-fr-rCA.arsc.flat new file mode 100644 index 0000000..9b02644 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-fr-rCA_values-fr-rCA.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-fr_values-fr.arsc.flat b/app/build/intermediates/merged_res/debug/values-fr_values-fr.arsc.flat new file mode 100644 index 0000000..f1a9a2e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-fr_values-fr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-gl_values-gl.arsc.flat b/app/build/intermediates/merged_res/debug/values-gl_values-gl.arsc.flat new file mode 100644 index 0000000..852b347 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-gl_values-gl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-gu_values-gu.arsc.flat b/app/build/intermediates/merged_res/debug/values-gu_values-gu.arsc.flat new file mode 100644 index 0000000..09175ac Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-gu_values-gu.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-hi_values-hi.arsc.flat b/app/build/intermediates/merged_res/debug/values-hi_values-hi.arsc.flat new file mode 100644 index 0000000..cdd4596 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-hi_values-hi.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-hr_values-hr.arsc.flat b/app/build/intermediates/merged_res/debug/values-hr_values-hr.arsc.flat new file mode 100644 index 0000000..4ac6b46 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-hr_values-hr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-hu_values-hu.arsc.flat b/app/build/intermediates/merged_res/debug/values-hu_values-hu.arsc.flat new file mode 100644 index 0000000..633cff2 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-hu_values-hu.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-hy_values-hy.arsc.flat b/app/build/intermediates/merged_res/debug/values-hy_values-hy.arsc.flat new file mode 100644 index 0000000..38a8b1e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-hy_values-hy.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-in_values-in.arsc.flat b/app/build/intermediates/merged_res/debug/values-in_values-in.arsc.flat new file mode 100644 index 0000000..7e2c21d Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-in_values-in.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-is_values-is.arsc.flat b/app/build/intermediates/merged_res/debug/values-is_values-is.arsc.flat new file mode 100644 index 0000000..498eea0 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-is_values-is.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-it_values-it.arsc.flat b/app/build/intermediates/merged_res/debug/values-it_values-it.arsc.flat new file mode 100644 index 0000000..7ccb305 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-it_values-it.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-iw_values-iw.arsc.flat b/app/build/intermediates/merged_res/debug/values-iw_values-iw.arsc.flat new file mode 100644 index 0000000..e9d61a1 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-iw_values-iw.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-ja_values-ja.arsc.flat b/app/build/intermediates/merged_res/debug/values-ja_values-ja.arsc.flat new file mode 100644 index 0000000..9754225 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-ja_values-ja.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-ka_values-ka.arsc.flat b/app/build/intermediates/merged_res/debug/values-ka_values-ka.arsc.flat new file mode 100644 index 0000000..e423436 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-ka_values-ka.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-kk_values-kk.arsc.flat b/app/build/intermediates/merged_res/debug/values-kk_values-kk.arsc.flat new file mode 100644 index 0000000..96cd631 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-kk_values-kk.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-km_values-km.arsc.flat b/app/build/intermediates/merged_res/debug/values-km_values-km.arsc.flat new file mode 100644 index 0000000..5b1ddb5 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-km_values-km.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-kn_values-kn.arsc.flat b/app/build/intermediates/merged_res/debug/values-kn_values-kn.arsc.flat new file mode 100644 index 0000000..8f8ae9e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-kn_values-kn.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-ko_values-ko.arsc.flat b/app/build/intermediates/merged_res/debug/values-ko_values-ko.arsc.flat new file mode 100644 index 0000000..cb4bb04 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-ko_values-ko.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-ky_values-ky.arsc.flat b/app/build/intermediates/merged_res/debug/values-ky_values-ky.arsc.flat new file mode 100644 index 0000000..c72e42c Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-ky_values-ky.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-land_values-land.arsc.flat b/app/build/intermediates/merged_res/debug/values-land_values-land.arsc.flat new file mode 100644 index 0000000..fc495c2 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-land_values-land.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-lo_values-lo.arsc.flat b/app/build/intermediates/merged_res/debug/values-lo_values-lo.arsc.flat new file mode 100644 index 0000000..00492c1 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-lo_values-lo.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-lt_values-lt.arsc.flat b/app/build/intermediates/merged_res/debug/values-lt_values-lt.arsc.flat new file mode 100644 index 0000000..403d431 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-lt_values-lt.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-lv_values-lv.arsc.flat b/app/build/intermediates/merged_res/debug/values-lv_values-lv.arsc.flat new file mode 100644 index 0000000..89e3817 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-lv_values-lv.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-mk_values-mk.arsc.flat b/app/build/intermediates/merged_res/debug/values-mk_values-mk.arsc.flat new file mode 100644 index 0000000..6003a93 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-mk_values-mk.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-ml_values-ml.arsc.flat b/app/build/intermediates/merged_res/debug/values-ml_values-ml.arsc.flat new file mode 100644 index 0000000..01e4d09 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-ml_values-ml.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-mn_values-mn.arsc.flat b/app/build/intermediates/merged_res/debug/values-mn_values-mn.arsc.flat new file mode 100644 index 0000000..e756c78 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-mn_values-mn.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-mr_values-mr.arsc.flat b/app/build/intermediates/merged_res/debug/values-mr_values-mr.arsc.flat new file mode 100644 index 0000000..b37d56b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-mr_values-mr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-ms_values-ms.arsc.flat b/app/build/intermediates/merged_res/debug/values-ms_values-ms.arsc.flat new file mode 100644 index 0000000..5328044 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-ms_values-ms.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-my_values-my.arsc.flat b/app/build/intermediates/merged_res/debug/values-my_values-my.arsc.flat new file mode 100644 index 0000000..157cdca Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-my_values-my.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-nb_values-nb.arsc.flat b/app/build/intermediates/merged_res/debug/values-nb_values-nb.arsc.flat new file mode 100644 index 0000000..6eee7cc Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-nb_values-nb.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-ne_values-ne.arsc.flat b/app/build/intermediates/merged_res/debug/values-ne_values-ne.arsc.flat new file mode 100644 index 0000000..fba7e92 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-ne_values-ne.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-nl_values-nl.arsc.flat b/app/build/intermediates/merged_res/debug/values-nl_values-nl.arsc.flat new file mode 100644 index 0000000..d934610 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-nl_values-nl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-or_values-or.arsc.flat b/app/build/intermediates/merged_res/debug/values-or_values-or.arsc.flat new file mode 100644 index 0000000..5d173b7 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-or_values-or.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-pa_values-pa.arsc.flat b/app/build/intermediates/merged_res/debug/values-pa_values-pa.arsc.flat new file mode 100644 index 0000000..a887377 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-pa_values-pa.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-pl_values-pl.arsc.flat b/app/build/intermediates/merged_res/debug/values-pl_values-pl.arsc.flat new file mode 100644 index 0000000..be22150 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-pl_values-pl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-pt-rBR_values-pt-rBR.arsc.flat b/app/build/intermediates/merged_res/debug/values-pt-rBR_values-pt-rBR.arsc.flat new file mode 100644 index 0000000..9cb37a4 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-pt-rBR_values-pt-rBR.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-pt-rPT_values-pt-rPT.arsc.flat b/app/build/intermediates/merged_res/debug/values-pt-rPT_values-pt-rPT.arsc.flat new file mode 100644 index 0000000..4923f61 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-pt-rPT_values-pt-rPT.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-pt_values-pt.arsc.flat b/app/build/intermediates/merged_res/debug/values-pt_values-pt.arsc.flat new file mode 100644 index 0000000..aa490fc Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-pt_values-pt.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-ro_values-ro.arsc.flat b/app/build/intermediates/merged_res/debug/values-ro_values-ro.arsc.flat new file mode 100644 index 0000000..6723f70 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-ro_values-ro.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-ru_values-ru.arsc.flat b/app/build/intermediates/merged_res/debug/values-ru_values-ru.arsc.flat new file mode 100644 index 0000000..f65cffe Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-ru_values-ru.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-si_values-si.arsc.flat b/app/build/intermediates/merged_res/debug/values-si_values-si.arsc.flat new file mode 100644 index 0000000..868ceda Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-si_values-si.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-sk_values-sk.arsc.flat b/app/build/intermediates/merged_res/debug/values-sk_values-sk.arsc.flat new file mode 100644 index 0000000..e8417d0 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-sk_values-sk.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-sl_values-sl.arsc.flat b/app/build/intermediates/merged_res/debug/values-sl_values-sl.arsc.flat new file mode 100644 index 0000000..0cd96c2 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-sl_values-sl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-sq_values-sq.arsc.flat b/app/build/intermediates/merged_res/debug/values-sq_values-sq.arsc.flat new file mode 100644 index 0000000..22ac254 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-sq_values-sq.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-sr_values-sr.arsc.flat b/app/build/intermediates/merged_res/debug/values-sr_values-sr.arsc.flat new file mode 100644 index 0000000..aa4568b Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-sr_values-sr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-sv_values-sv.arsc.flat b/app/build/intermediates/merged_res/debug/values-sv_values-sv.arsc.flat new file mode 100644 index 0000000..041c203 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-sv_values-sv.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-sw_values-sw.arsc.flat b/app/build/intermediates/merged_res/debug/values-sw_values-sw.arsc.flat new file mode 100644 index 0000000..d97a7bb Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-sw_values-sw.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-ta_values-ta.arsc.flat b/app/build/intermediates/merged_res/debug/values-ta_values-ta.arsc.flat new file mode 100644 index 0000000..d4feef1 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-ta_values-ta.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-te_values-te.arsc.flat b/app/build/intermediates/merged_res/debug/values-te_values-te.arsc.flat new file mode 100644 index 0000000..b6be6d9 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-te_values-te.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-th_values-th.arsc.flat b/app/build/intermediates/merged_res/debug/values-th_values-th.arsc.flat new file mode 100644 index 0000000..3f6d1d1 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-th_values-th.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-tl_values-tl.arsc.flat b/app/build/intermediates/merged_res/debug/values-tl_values-tl.arsc.flat new file mode 100644 index 0000000..a0bfb13 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-tl_values-tl.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-tr_values-tr.arsc.flat b/app/build/intermediates/merged_res/debug/values-tr_values-tr.arsc.flat new file mode 100644 index 0000000..0fd3a4e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-tr_values-tr.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-uk_values-uk.arsc.flat b/app/build/intermediates/merged_res/debug/values-uk_values-uk.arsc.flat new file mode 100644 index 0000000..9f17874 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-uk_values-uk.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-ur_values-ur.arsc.flat b/app/build/intermediates/merged_res/debug/values-ur_values-ur.arsc.flat new file mode 100644 index 0000000..8e87c69 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-ur_values-ur.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-uz_values-uz.arsc.flat b/app/build/intermediates/merged_res/debug/values-uz_values-uz.arsc.flat new file mode 100644 index 0000000..9380495 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-uz_values-uz.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-v16_values-v16.arsc.flat b/app/build/intermediates/merged_res/debug/values-v16_values-v16.arsc.flat new file mode 100644 index 0000000..3d8e6b3 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-v16_values-v16.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-v21_values-v21.arsc.flat b/app/build/intermediates/merged_res/debug/values-v21_values-v21.arsc.flat new file mode 100644 index 0000000..085876e Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-v21_values-v21.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-vi_values-vi.arsc.flat b/app/build/intermediates/merged_res/debug/values-vi_values-vi.arsc.flat new file mode 100644 index 0000000..47003af Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-vi_values-vi.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-zh-rCN_values-zh-rCN.arsc.flat b/app/build/intermediates/merged_res/debug/values-zh-rCN_values-zh-rCN.arsc.flat new file mode 100644 index 0000000..7a0bc3f Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-zh-rCN_values-zh-rCN.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-zh-rHK_values-zh-rHK.arsc.flat b/app/build/intermediates/merged_res/debug/values-zh-rHK_values-zh-rHK.arsc.flat new file mode 100644 index 0000000..ba22111 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-zh-rHK_values-zh-rHK.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-zh-rTW_values-zh-rTW.arsc.flat b/app/build/intermediates/merged_res/debug/values-zh-rTW_values-zh-rTW.arsc.flat new file mode 100644 index 0000000..b757fc5 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-zh-rTW_values-zh-rTW.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values-zu_values-zu.arsc.flat b/app/build/intermediates/merged_res/debug/values-zu_values-zu.arsc.flat new file mode 100644 index 0000000..bc1b406 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values-zu_values-zu.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/values_values.arsc.flat b/app/build/intermediates/merged_res/debug/values_values.arsc.flat new file mode 100644 index 0000000..63a9b6a Binary files /dev/null and b/app/build/intermediates/merged_res/debug/values_values.arsc.flat differ diff --git a/app/build/intermediates/merged_res/debug/xml_backup_rules.xml.flat b/app/build/intermediates/merged_res/debug/xml_backup_rules.xml.flat new file mode 100644 index 0000000..ac9cf05 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/xml_backup_rules.xml.flat differ diff --git a/app/build/intermediates/merged_res/debug/xml_data_extraction_rules.xml.flat b/app/build/intermediates/merged_res/debug/xml_data_extraction_rules.xml.flat new file mode 100644 index 0000000..c72c531 Binary files /dev/null and b/app/build/intermediates/merged_res/debug/xml_data_extraction_rules.xml.flat differ diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/debug.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/debug.json new file mode 100644 index 0000000..869da1f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/debug.json @@ -0,0 +1,3677 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-fi_values-fi.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-fi\\values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,284,383,484,573,650,751,842,924,990,1058,1130,1202", + "endColumns": "93,84,98,100,88,76,100,90,81,65,67,71,71,121", + "endOffsets": "194,279,378,479,568,645,746,837,919,985,1053,1125,1197,1319" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,284,383,484,573,650,751,842,924,990,1058,1231,1303", + "endColumns": "93,84,98,100,88,76,100,90,81,65,67,71,71,121", + "endOffsets": "194,279,378,479,568,645,746,837,919,985,1053,1125,1298,1420" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-fi\\values-fi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1130", + "endColumns": "100", + "endOffsets": "1226" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-ja_values-ja.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ja\\values-ja.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1059", + "endColumns": "100", + "endOffsets": "1155" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ja\\values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,191,269,358,455,538,616,702,787,862,926,990,1059,1124", + "endColumns": "85,77,88,96,82,77,85,84,74,63,63,68,64,116", + "endOffsets": "186,264,353,450,533,611,697,782,857,921,985,1054,1119,1236" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,191,269,358,455,538,616,702,787,862,926,990,1160,1225", + "endColumns": "85,77,88,96,82,77,85,84,74,63,63,68,64,116", + "endOffsets": "186,264,353,450,533,611,697,782,857,921,985,1054,1220,1337" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-iw_values-iw.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-iw\\values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,194,278,371,466,549,626,718,804,883,949,1015,1084,1155", + "endColumns": "88,83,92,94,82,76,91,85,78,65,65,68,70,118", + "endOffsets": "189,273,366,461,544,621,713,799,878,944,1010,1079,1150,1269" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,194,278,371,466,549,626,718,804,883,949,1015,1185,1256", + "endColumns": "88,83,92,94,82,76,91,85,78,65,65,68,70,118", + "endOffsets": "189,273,366,461,544,621,713,799,878,944,1010,1079,1251,1370" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-iw\\values-iw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1084", + "endColumns": "100", + "endOffsets": "1180" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-nb_values-nb.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-nb\\values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,279,376,476,564,640,748,837,919,983,1047,1117,1184", + "endColumns": "92,80,96,99,87,75,107,88,81,63,63,69,66,119", + "endOffsets": "193,274,371,471,559,635,743,832,914,978,1042,1112,1179,1299" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,279,376,476,564,640,748,837,919,983,1047,1218,1285", + "endColumns": "92,80,96,99,87,75,107,88,81,63,63,69,66,119", + "endOffsets": "193,274,371,471,559,635,743,832,914,978,1042,1112,1280,1400" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-nb\\values-nb.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1117", + "endColumns": "100", + "endOffsets": "1213" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-in_values-in.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-in\\values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,195,277,375,475,561,644,756,843,928,998,1065,1137,1203", + "endColumns": "89,81,97,99,85,82,111,86,84,69,66,71,65,118", + "endOffsets": "190,272,370,470,556,639,751,838,923,993,1060,1132,1198,1317" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,195,277,375,475,561,644,756,843,928,998,1065,1238,1304", + "endColumns": "89,81,97,99,85,82,111,86,84,69,66,71,65,118", + "endOffsets": "190,272,370,470,556,639,751,838,923,993,1060,1132,1299,1418" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-in\\values-in.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1137", + "endColumns": "100", + "endOffsets": "1233" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-sw_values-sw.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-sw\\values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,280,381,482,568,649,754,845,927,997,1068,1142,1212", + "endColumns": "93,80,100,100,85,80,104,90,81,69,70,73,69,120", + "endOffsets": "194,275,376,477,563,644,749,840,922,992,1063,1137,1207,1328" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,280,381,482,568,649,754,845,927,997,1068,1243,1313", + "endColumns": "93,80,100,100,85,80,104,90,81,69,70,73,69,120", + "endOffsets": "194,275,376,477,563,644,749,840,922,992,1063,1137,1308,1429" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-sw\\values-sw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1142", + "endColumns": "100", + "endOffsets": "1238" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-ta_values-ta.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ta\\values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,286,380,481,572,655,775,866,961,1041,1120,1210,1279", + "endColumns": "96,83,93,100,90,82,119,90,94,79,78,89,68,119", + "endOffsets": "197,281,375,476,567,650,770,861,956,1036,1115,1205,1274,1394" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,286,380,481,572,655,775,866,961,1041,1120,1311,1380", + "endColumns": "96,83,93,100,90,82,119,90,94,79,78,89,68,119", + "endOffsets": "197,281,375,476,567,650,770,861,956,1036,1115,1205,1375,1495" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ta\\values-ta.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1210", + "endColumns": "100", + "endOffsets": "1306" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-land_values-land.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-land\\values-land.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "48", + "endOffsets": "99" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-et_values-et.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-et\\values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,278,374,469,551,629,727,818,902,970,1036,1108,1179", + "endColumns": "92,79,95,94,81,77,97,90,83,67,65,71,70,121", + "endOffsets": "193,273,369,464,546,624,722,813,897,965,1031,1103,1174,1296" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,278,374,469,551,629,727,818,902,970,1036,1209,1280", + "endColumns": "92,79,95,94,81,77,97,90,83,67,65,71,70,121", + "endOffsets": "193,273,369,464,546,624,722,813,897,965,1031,1103,1275,1397" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-et\\values-et.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1108", + "endColumns": "100", + "endOffsets": "1204" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-v16_values-v16.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-v16\\values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "65", + "endOffsets": "116" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-ru_values-ru.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ru\\values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,379,481,573,655,758,846,928,999,1069,1141,1211", + "endColumns": "92,82,97,101,91,81,102,87,81,70,69,71,69,122", + "endOffsets": "193,276,374,476,568,650,753,841,923,994,1064,1136,1206,1329" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,379,481,573,655,758,846,928,999,1069,1242,1312", + "endColumns": "92,82,97,101,91,81,102,87,81,70,69,71,69,122", + "endOffsets": "193,276,374,476,568,650,753,841,923,994,1064,1136,1307,1430" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ru\\values-ru.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1141", + "endColumns": "100", + "endOffsets": "1237" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-az_values-az.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-az\\values-az.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1159", + "endColumns": "100", + "endOffsets": "1255" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-az\\values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,293,390,491,582,663,777,869,951,1020,1087,1159,1225", + "endColumns": "99,87,96,100,90,80,113,91,81,68,66,71,65,116", + "endOffsets": "200,288,385,486,577,658,772,864,946,1015,1082,1154,1220,1337" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,293,390,491,582,663,777,869,951,1020,1087,1260,1326", + "endColumns": "99,87,96,100,90,80,113,91,81,68,66,71,65,116", + "endOffsets": "200,288,385,486,577,658,772,864,946,1015,1082,1154,1321,1438" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values_values.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\ae5b546ca0349d0bf7744393b38f6f9a\\transformed\\savedstate-1.1.0\\res\\values\\values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "53", + "endOffsets": "104" + }, + "to": { + "startLines": "95", + "startColumns": "4", + "startOffsets": "5665", + "endColumns": "53", + "endOffsets": "5714" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\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,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,89,90,94,95,96,97,104,114,162,194,231", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,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,115,187,275,344,407,477,545,617,687,748,822,895,956,1017,1079,1143,1205,1266,1334,1434,1494,1560,1633,1702,1759,1811,1873,1945,2021,3996,4031,4066,4121,4184,4239,4297,4355,4416,4479,4536,4587,4637,4698,4755,4821,4855,4890,4925,4995,5066,5183,5384,5494,5695,5824,5896,5963,6400,6859,10159,12224,13984", + "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,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,88,89,93,94,95,96,103,113,161,193,230,237", + "endColumns": "59,71,87,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,64,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", + "endOffsets": "110,182,270,339,402,472,540,612,682,743,817,890,951,1012,1074,1138,1200,1261,1329,1429,1489,1555,1628,1697,1754,1806,1868,1940,2016,2081,4026,4061,4116,4179,4234,4292,4350,4411,4474,4531,4582,4632,4693,4750,4816,4850,4885,4920,4990,5061,5178,5379,5489,5690,5819,5891,5958,6395,6854,10154,12219,13979,14356" + }, + "to": { + "startLines": "2,3,4,6,7,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,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,98,113,119,120,124,125,129,133,134,135,141,151,184,205,238", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,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,210,282,412,481,866,936,1004,1076,1146,1207,1281,1354,1415,1476,1538,1602,1664,1725,1793,1893,1953,2019,2092,2161,2218,2270,2332,2404,2480,4693,4728,4763,4818,4881,4936,4994,5052,5113,5176,5233,5284,5334,5395,5452,5518,5552,5587,5822,6738,7047,7164,7365,7475,7676,7988,8060,8127,8330,8631,10362,11043,11725", + "endLines": "2,3,4,6,7,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,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,98,113,119,123,124,128,129,133,134,140,150,183,204,237,243", + "endColumns": "59,71,87,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,64,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", + "endOffsets": "205,277,365,476,539,931,999,1071,1141,1202,1276,1349,1410,1471,1533,1597,1659,1720,1788,1888,1948,2014,2087,2156,2213,2265,2327,2399,2475,2540,4723,4758,4813,4876,4931,4989,5047,5108,5171,5228,5279,5329,5390,5447,5513,5547,5582,5617,5887,6804,7159,7360,7470,7671,7800,8055,8122,8325,8626,10357,11038,11720,11887" + } + }, + { + "source": "D:\\Android\\LocalNetworkingAndroidApp\\app\\src\\main\\res\\values\\colors.xml", + "from": { + "startLines": "7,2,3,4,5,6,8", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "286,55,102,149,196,241,328", + "endColumns": "41,46,46,46,44,44,41", + "endOffsets": "323,97,144,191,236,281,365" + }, + "to": { + "startLines": "5,8,9,10,11,12,14", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "370,544,591,638,685,730,824", + "endColumns": "41,46,46,46,44,44,41", + "endOffsets": "407,586,633,680,725,770,861" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2c9a2ac417e45d5bc9fc76d7fb881e15\\transformed\\lifecycle-runtime-2.3.1\\res\\values\\values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "42", + "endOffsets": "93" + }, + "to": { + "startLines": "94", + "startColumns": "4", + "startOffsets": "5622", + "endColumns": "42", + "endOffsets": "5660" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\5785e2bd253743983765e138bae06908\\transformed\\startup-runtime-1.0.0\\res\\values\\values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "82", + "endOffsets": "133" + }, + "to": { + "startLines": "99", + "startColumns": "4", + "startOffsets": "5892", + "endColumns": "82", + "endOffsets": "5970" + } + }, + { + "source": "D:\\Android\\LocalNetworkingAndroidApp\\app\\src\\main\\res\\values\\strings.xml", + "from": { + "startLines": "1", + "startColumns": "4", + "startOffsets": "16", + "endColumns": "62", + "endOffsets": "74" + }, + "to": { + "startLines": "100", + "startColumns": "4", + "startOffsets": "5975", + "endColumns": "62", + "endOffsets": "6033" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2613d72639618055e5f0b853c3c1719f\\transformed\\lifecycle-viewmodel-2.3.1\\res\\values\\values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "49", + "endOffsets": "100" + }, + "to": { + "startLines": "96", + "startColumns": "4", + "startOffsets": "5719", + "endColumns": "49", + "endOffsets": "5764" + } + }, + { + "source": "D:\\Android\\LocalNetworkingAndroidApp\\app\\src\\main\\res\\values\\themes.xml", + "from": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "56", + "endLines": "5", + "endColumns": "12", + "endOffsets": "234" + }, + "to": { + "startLines": "130", + "startColumns": "4", + "startOffsets": "7805", + "endLines": "132", + "endColumns": "12", + "endOffsets": "7983" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\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", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,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,199,258,317,377,437,497,557,617,677,737,797,857,917,976,1036,1096,1156,1216,1276,1336,1396,1456,1516,1576,1635,1695,1755,1814,1873,1932,1991,2050,2109,2183,2241,2292,2347,2400,2465,2519,2585,2686,2744,2796,2868,2930,2984,3020,3054,3100,3136,3226", + "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,56", + "endColumns": "48,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,73,57,50,54,52,64,53,65,100,57,51,71,61,53,35,33,45,35,89,12", + "endOffsets": "194,253,312,372,432,492,552,612,672,732,792,852,912,971,1031,1091,1151,1211,1271,1331,1391,1451,1511,1571,1630,1690,1750,1809,1868,1927,1986,2045,2104,2178,2236,2287,2342,2395,2460,2514,2580,2681,2739,2791,2863,2925,2979,3015,3049,3095,3131,3221,3333" + }, + "to": { + "startLines": "13,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,69,70,71,72,73,74,75,97,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "775,2545,2604,2663,2723,2783,2843,2903,2963,3023,3083,3143,3203,3263,3322,3382,3442,3502,3562,3622,3682,3742,3802,3862,3922,3981,4041,4101,4160,4219,4278,4337,4396,4455,4529,4587,4638,5769,6038,6103,6157,6223,6324,6382,6434,6506,6568,6622,6658,6692,6809,6845,6935", + "endLines": "13,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,69,70,71,72,73,74,75,97,101,102,103,104,105,106,107,108,109,110,111,112,114,115,118", + "endColumns": "48,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,73,57,50,54,52,64,53,65,100,57,51,71,61,53,35,33,45,35,89,12", + "endOffsets": "819,2599,2658,2718,2778,2838,2898,2958,3018,3078,3138,3198,3258,3317,3377,3437,3497,3557,3617,3677,3737,3797,3857,3917,3976,4036,4096,4155,4214,4273,4332,4391,4450,4524,4582,4633,4688,5817,6098,6152,6218,6319,6377,6429,6501,6563,6617,6653,6687,6733,6840,6930,7042" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-bs_values-bs.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-bs\\values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,206,294,388,487,573,650,749,841,926,998,1069,1142,1212", + "endColumns": "100,87,93,98,85,76,98,91,84,71,70,72,69,117", + "endOffsets": "201,289,383,482,568,645,744,836,921,993,1064,1137,1207,1325" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,206,294,388,487,573,650,749,841,926,998,1069,1243,1313", + "endColumns": "100,87,93,98,85,76,98,91,84,71,70,72,69,117", + "endOffsets": "201,289,383,482,568,645,744,836,921,993,1064,1137,1308,1426" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-bs\\values-bs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1142", + "endColumns": "100", + "endOffsets": "1238" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-or_values-or.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-or\\values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,289,381,481,567,644,755,843,930,1000,1070,1140,1207", + "endColumns": "96,86,91,99,85,76,110,87,86,69,69,69,66,118", + "endOffsets": "197,284,376,476,562,639,750,838,925,995,1065,1135,1202,1321" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,289,381,481,567,644,755,843,930,1000,1070,1241,1308", + "endColumns": "96,86,91,99,85,76,110,87,86,69,69,69,66,118", + "endOffsets": "197,284,376,476,562,639,750,838,925,995,1065,1135,1303,1422" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-or\\values-or.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1140", + "endColumns": "100", + "endOffsets": "1236" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-hr_values-hr.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-hr\\values-hr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1154", + "endColumns": "100", + "endOffsets": "1250" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-hr\\values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,297,391,490,580,659,758,853,938,1010,1081,1154,1224", + "endColumns": "104,86,93,98,89,78,98,94,84,71,70,72,69,117", + "endOffsets": "205,292,386,485,575,654,753,848,933,1005,1076,1149,1219,1337" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,297,391,490,580,659,758,853,938,1010,1081,1255,1325", + "endColumns": "104,86,93,98,89,78,98,94,84,71,70,72,69,117", + "endOffsets": "205,292,386,485,575,654,753,848,933,1005,1076,1149,1320,1438" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-uz_values-uz.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-uz\\values-uz.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1177", + "endColumns": "100", + "endOffsets": "1273" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-uz\\values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,289,393,500,596,679,792,885,968,1036,1103,1177,1245", + "endColumns": "98,84,103,106,95,82,112,92,82,67,66,73,67,116", + "endOffsets": "199,284,388,495,591,674,787,880,963,1031,1098,1172,1240,1357" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,289,393,500,596,679,792,885,968,1036,1103,1278,1346", + "endColumns": "98,84,103,106,95,82,112,92,82,67,66,73,67,116", + "endOffsets": "199,284,388,495,591,674,787,880,963,1031,1098,1172,1341,1458" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-lo_values-lo.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-lo\\values-lo.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1139", + "endColumns": "100", + "endOffsets": "1235" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-lo\\values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,195,272,381,479,568,657,765,851,934,999,1065,1139,1205", + "endColumns": "89,76,108,97,88,88,107,85,82,64,65,73,65,120", + "endOffsets": "190,267,376,474,563,652,760,846,929,994,1060,1134,1200,1321" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,195,272,381,479,568,657,765,851,934,999,1065,1240,1306", + "endColumns": "89,76,108,97,88,88,107,85,82,64,65,73,65,120", + "endOffsets": "190,267,376,474,563,652,760,846,929,994,1060,1134,1301,1422" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-hy_values-hy.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-hy\\values-hy.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1145", + "endColumns": "100", + "endOffsets": "1241" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-hy\\values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,286,380,480,563,645,751,846,928,1000,1071,1145,1214", + "endColumns": "98,81,93,99,82,81,105,94,81,71,70,73,68,117", + "endOffsets": "199,281,375,475,558,640,746,841,923,995,1066,1140,1209,1327" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,286,380,480,563,645,751,846,928,1000,1071,1246,1315", + "endColumns": "98,81,93,99,82,81,105,94,81,71,70,73,68,117", + "endOffsets": "199,281,375,475,558,640,746,841,923,995,1066,1140,1310,1428" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-th_values-th.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-th\\values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,191,268,365,466,554,639,741,827,910,975,1041,1114,1181", + "endColumns": "85,76,96,100,87,84,101,85,82,64,65,72,66,122", + "endOffsets": "186,263,360,461,549,634,736,822,905,970,1036,1109,1176,1299" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,191,268,365,466,554,639,741,827,910,975,1041,1215,1282", + "endColumns": "85,76,96,100,87,84,101,85,82,64,65,72,66,122", + "endOffsets": "186,263,360,461,549,634,736,822,905,970,1036,1109,1277,1400" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-th\\values-th.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1114", + "endColumns": "100", + "endOffsets": "1210" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-as_values-as.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-as\\values-as.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1164", + "endColumns": "100", + "endOffsets": "1260" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-as\\values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,285,378,476,563,660,766,855,945,1013,1085,1164,1230", + "endColumns": "94,84,92,97,86,96,105,88,89,67,71,78,65,117", + "endOffsets": "195,280,373,471,558,655,761,850,940,1008,1080,1159,1225,1343" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,285,378,476,563,660,766,855,945,1013,1085,1265,1331", + "endColumns": "94,84,92,97,86,96,105,88,89,67,71,78,65,117", + "endOffsets": "195,280,373,471,558,655,761,850,940,1008,1080,1159,1326,1444" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-pt-rBR_values-pt-rBR.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-pt-rBR\\values-pt-rBR.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1095", + "endColumns": "100", + "endOffsets": "1191" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,236,333,432,518,601,700,791,878,950,1019,1095", + "endColumns": "94,85,96,98,85,82,98,90,86,71,68,75,66", + "endOffsets": "145,231,328,427,513,596,695,786,873,945,1014,1090,1157" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,236,333,432,518,601,700,791,878,950,1019,1196", + "endColumns": "94,85,96,98,85,82,98,90,86,71,68,75,66", + "endOffsets": "145,231,328,427,513,596,695,786,873,945,1014,1090,1258" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-ms_values-ms.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ms\\values-ms.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1105", + "endColumns": "100", + "endOffsets": "1201" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ms\\values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,195,279,375,477,562,645,728,815,900,966,1033,1105,1171", + "endColumns": "89,83,95,101,84,82,82,86,84,65,66,71,65,119", + "endOffsets": "190,274,370,472,557,640,723,810,895,961,1028,1100,1166,1286" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,195,279,375,477,562,645,728,815,900,966,1033,1206,1272", + "endColumns": "89,83,95,101,84,82,82,86,84,65,66,71,65,119", + "endOffsets": "190,274,370,472,557,640,723,810,895,961,1028,1100,1267,1387" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-ca_values-ca.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ca\\values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,286,390,493,582,660,757,848,934,1006,1075,1151,1222", + "endColumns": "96,83,103,102,88,77,96,90,85,71,68,75,70,119", + "endOffsets": "197,281,385,488,577,655,752,843,929,1001,1070,1146,1217,1337" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,286,390,493,582,660,757,848,934,1006,1075,1252,1323", + "endColumns": "96,83,103,102,88,77,96,90,85,71,68,75,70,119", + "endOffsets": "197,281,385,488,577,655,752,843,929,1001,1070,1146,1318,1438" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ca\\values-ca.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1151", + "endColumns": "100", + "endOffsets": "1247" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-v21_values-v21.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\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,173,237,304,368,484,610,736,864,1036", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "117,63,66,63,115,125,125,127,12,12", + "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-kn_values-kn.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-kn\\values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,286,382,482,571,655,778,869,954,1025,1096,1175,1244", + "endColumns": "96,83,95,99,88,83,122,90,84,70,70,78,68,117", + "endOffsets": "197,281,377,477,566,650,773,864,949,1020,1091,1170,1239,1357" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,286,382,482,571,655,778,869,954,1025,1096,1276,1345", + "endColumns": "96,83,95,99,88,83,122,90,84,70,70,78,68,117", + "endOffsets": "197,281,377,477,566,650,773,864,949,1020,1091,1170,1340,1458" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-kn\\values-kn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1175", + "endColumns": "100", + "endOffsets": "1271" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-hi_values-hi.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-hi\\values-hi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1178", + "endColumns": "100", + "endOffsets": "1274" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-hi\\values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,283,376,474,563,641,794,883,968,1036,1105,1178,1244", + "endColumns": "94,82,92,97,88,77,152,88,84,67,68,72,65,119", + "endOffsets": "195,278,371,469,558,636,789,878,963,1031,1100,1173,1239,1359" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,283,376,474,563,641,794,883,968,1036,1105,1279,1345", + "endColumns": "94,82,92,97,88,77,152,88,84,67,68,72,65,119", + "endOffsets": "195,278,371,469,558,636,789,878,963,1031,1100,1173,1340,1460" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-lv_values-lv.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-lv\\values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,203,292,388,491,581,667,770,863,947,1017,1087,1160,1228", + "endColumns": "97,88,95,102,89,85,102,92,83,69,69,72,67,121", + "endOffsets": "198,287,383,486,576,662,765,858,942,1012,1082,1155,1223,1345" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,203,292,388,491,581,667,770,863,947,1017,1087,1261,1329", + "endColumns": "97,88,95,102,89,85,102,92,83,69,69,72,67,121", + "endOffsets": "198,287,383,486,576,662,765,858,942,1012,1082,1155,1324,1446" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-lv\\values-lv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1160", + "endColumns": "100", + "endOffsets": "1256" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-is_values-is.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-is\\values-is.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1113", + "endColumns": "100", + "endOffsets": "1209" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-is\\values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,196,277,376,475,560,640,736,825,907,975,1043,1113,1181", + "endColumns": "90,80,98,98,84,79,95,88,81,67,67,69,67,119", + "endOffsets": "191,272,371,470,555,635,731,820,902,970,1038,1108,1176,1296" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,196,277,376,475,560,640,736,825,907,975,1043,1214,1282", + "endColumns": "90,80,98,98,84,79,95,88,81,67,67,69,67,119", + "endOffsets": "191,272,371,470,555,635,731,820,902,970,1038,1108,1277,1397" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-gu_values-gu.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-gu\\values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,372,471,558,644,747,834,920,988,1057,1132,1198", + "endColumns": "91,81,92,98,86,85,102,86,85,67,68,74,65,115", + "endOffsets": "192,274,367,466,553,639,742,829,915,983,1052,1127,1193,1309" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,372,471,558,644,747,834,920,988,1057,1233,1299", + "endColumns": "91,81,92,98,86,85,102,86,85,67,68,74,65,115", + "endOffsets": "192,274,367,466,553,639,742,829,915,983,1052,1127,1294,1410" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-gu\\values-gu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1132", + "endColumns": "100", + "endOffsets": "1228" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-ml_values-ml.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ml\\values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,287,386,490,580,666,791,878,966,1033,1100,1178,1245", + "endColumns": "94,86,98,103,89,85,124,86,87,66,66,77,66,118", + "endOffsets": "195,282,381,485,575,661,786,873,961,1028,1095,1173,1240,1359" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,287,386,490,580,666,791,878,966,1033,1100,1279,1346", + "endColumns": "94,86,98,103,89,85,124,86,87,66,66,77,66,118", + "endOffsets": "195,282,381,485,575,661,786,873,961,1028,1095,1173,1341,1460" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ml\\values-ml.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1178", + "endColumns": "100", + "endOffsets": "1274" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-ne_values-ne.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ne\\values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,294,388,485,571,653,766,853,939,1005,1071,1148,1216", + "endColumns": "98,89,93,96,85,81,112,86,85,65,65,76,67,119", + "endOffsets": "199,289,383,480,566,648,761,848,934,1000,1066,1143,1211,1331" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,294,388,485,571,653,766,853,939,1005,1071,1249,1317", + "endColumns": "98,89,93,96,85,81,112,86,85,65,65,76,67,119", + "endOffsets": "199,289,383,480,566,648,761,848,934,1000,1066,1143,1312,1432" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ne\\values-ne.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1148", + "endColumns": "100", + "endOffsets": "1244" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-da_values-da.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-da\\values-da.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1105", + "endColumns": "100", + "endOffsets": "1201" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-da\\values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,277,372,471,553,630,734,823,905,970,1035,1105,1172", + "endColumns": "91,79,94,98,81,76,103,88,81,64,64,69,66,119", + "endOffsets": "192,272,367,466,548,625,729,818,900,965,1030,1100,1167,1287" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,277,372,471,553,630,734,823,905,970,1035,1206,1273", + "endColumns": "91,79,94,98,81,76,103,88,81,64,64,69,66,119", + "endOffsets": "192,272,367,466,548,625,729,818,900,965,1030,1100,1268,1388" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-tr_values-tr.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-tr\\values-tr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1126", + "endColumns": "100", + "endOffsets": "1222" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-tr\\values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,377,477,561,644,749,837,921,989,1055,1126,1194", + "endColumns": "92,83,94,99,83,82,104,87,83,67,65,70,67,117", + "endOffsets": "193,277,372,472,556,639,744,832,916,984,1050,1121,1189,1307" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,377,477,561,644,749,837,921,989,1055,1227,1295", + "endColumns": "92,83,94,99,83,82,104,87,83,67,65,70,67,117", + "endOffsets": "193,277,372,472,556,639,744,832,916,984,1050,1121,1290,1408" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-hu_values-hu.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-hu\\values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,288,385,484,571,653,764,853,940,1004,1068,1142,1208", + "endColumns": "94,87,96,98,86,81,110,88,86,63,63,73,65,120", + "endOffsets": "195,283,380,479,566,648,759,848,935,999,1063,1137,1203,1324" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,288,385,484,571,653,764,853,940,1004,1068,1243,1309", + "endColumns": "94,87,96,98,86,81,110,88,86,63,63,73,65,120", + "endOffsets": "195,283,380,479,566,648,759,848,935,999,1063,1137,1304,1425" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-hu\\values-hu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1142", + "endColumns": "100", + "endOffsets": "1238" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-pt_values-pt.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-pt\\values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,236,333,432,518,601,700,791,878,950,1019,1095", + "endColumns": "94,85,96,98,85,82,98,90,86,71,68,75,66", + "endOffsets": "145,231,328,427,513,596,695,786,873,945,1014,1090,1157" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,236,333,432,518,601,700,791,878,950,1019,1196", + "endColumns": "94,85,96,98,85,82,98,90,86,71,68,75,66", + "endOffsets": "145,231,328,427,513,596,695,786,873,945,1014,1090,1258" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-pt\\values-pt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1095", + "endColumns": "100", + "endOffsets": "1191" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-uk_values-uk.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-uk\\values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,384,485,569,651,759,847,929,999,1070,1142,1212", + "endColumns": "92,83,101,100,83,81,107,87,81,69,70,71,69,122", + "endOffsets": "193,277,379,480,564,646,754,842,924,994,1065,1137,1207,1330" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,384,485,569,651,759,847,929,999,1070,1243,1313", + "endColumns": "92,83,101,100,83,81,107,87,81,69,70,71,69,122", + "endOffsets": "193,277,379,480,564,646,754,842,924,994,1065,1137,1308,1431" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-uk\\values-uk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1142", + "endColumns": "100", + "endOffsets": "1238" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-sr_values-sr.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-sr\\values-sr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1142", + "endColumns": "100", + "endOffsets": "1238" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-sr\\values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,289,386,487,573,650,751,843,928,999,1069,1142,1212", + "endColumns": "96,86,96,100,85,76,100,91,84,70,69,72,69,117", + "endOffsets": "197,284,381,482,568,645,746,838,923,994,1064,1137,1207,1325" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,289,386,487,573,650,751,843,928,999,1069,1243,1313", + "endColumns": "96,86,96,100,85,76,100,91,84,70,69,72,69,117", + "endOffsets": "197,284,381,482,568,645,746,838,923,994,1064,1137,1308,1426" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-fr_values-fr.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-fr\\values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,292,392,492,579,658,753,845,932,1003,1071,1147,1216", + "endColumns": "98,87,99,99,86,78,94,91,86,70,67,75,68,121", + "endOffsets": "199,287,387,487,574,653,748,840,927,998,1066,1142,1211,1333" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,292,392,492,579,658,753,845,932,1003,1071,1248,1317", + "endColumns": "98,87,99,99,86,78,94,91,86,70,67,75,68,121", + "endOffsets": "199,287,387,487,574,653,748,840,927,998,1066,1142,1312,1434" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-fr\\values-fr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1147", + "endColumns": "100", + "endOffsets": "1243" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-vi_values-vi.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-vi\\values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,151,237,343,443,535,620,730,824,905,975,1045,1117", + "endColumns": "95,85,105,99,91,84,109,93,80,69,69,71,65", + "endOffsets": "146,232,338,438,530,615,725,819,900,970,1040,1112,1178" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,151,237,343,443,535,620,730,824,905,975,1045,1218", + "endColumns": "95,85,105,99,91,84,109,93,80,69,69,71,65", + "endOffsets": "146,232,338,438,530,615,725,819,900,970,1040,1112,1279" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-vi\\values-vi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1117", + "endColumns": "100", + "endOffsets": "1213" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-mn_values-mn.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-mn\\values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,283,375,471,554,640,761,848,929,1002,1073,1146,1212", + "endColumns": "91,85,91,95,82,85,120,86,80,72,70,72,65,116", + "endOffsets": "192,278,370,466,549,635,756,843,924,997,1068,1141,1207,1324" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,283,375,471,554,640,761,848,929,1002,1073,1247,1313", + "endColumns": "91,85,91,95,82,85,120,86,80,72,70,72,65,116", + "endOffsets": "192,278,370,466,549,635,756,843,924,997,1068,1141,1308,1425" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-mn\\values-mn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1146", + "endColumns": "100", + "endOffsets": "1242" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-eu_values-eu.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-eu\\values-eu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1149", + "endColumns": "100", + "endOffsets": "1245" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-eu\\values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,196,277,378,482,574,650,755,844,928,1003,1075,1149,1217", + "endColumns": "90,80,100,103,91,75,104,88,83,74,71,73,67,119", + "endOffsets": "191,272,373,477,569,645,750,839,923,998,1070,1144,1212,1332" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,196,277,378,482,574,650,755,844,928,1003,1075,1250,1318", + "endColumns": "90,80,100,103,91,75,104,88,83,74,71,73,67,119", + "endOffsets": "191,272,373,477,569,645,750,839,923,998,1070,1144,1313,1433" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-bg_values-bg.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-bg\\values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,301,404,507,591,667,777,868,952,1019,1085,1157,1226", + "endColumns": "102,92,102,102,83,75,109,90,83,66,65,71,68,120", + "endOffsets": "203,296,399,502,586,662,772,863,947,1014,1080,1152,1221,1342" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,301,404,507,591,667,777,868,952,1019,1085,1258,1327", + "endColumns": "102,92,102,102,83,75,109,90,83,66,65,71,68,120", + "endOffsets": "203,296,399,502,586,662,772,863,947,1014,1080,1152,1322,1443" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-bg\\values-bg.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1157", + "endColumns": "100", + "endOffsets": "1253" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-sv_values-sv.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-sv\\values-sv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1117", + "endColumns": "100", + "endOffsets": "1213" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-sv\\values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,286,382,481,569,645,750,839,920,984,1048,1117,1184", + "endColumns": "92,87,95,98,87,75,104,88,80,63,63,68,66,119", + "endOffsets": "193,281,377,476,564,640,745,834,915,979,1043,1112,1179,1299" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,286,382,481,569,645,750,839,920,984,1048,1218,1285", + "endColumns": "92,87,95,98,87,75,104,88,80,63,63,68,66,119", + "endOffsets": "193,281,377,476,564,640,745,834,915,979,1043,1112,1280,1400" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-ar_values-ar.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ar\\values-ar.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1109", + "endColumns": "100", + "endOffsets": "1205" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ar\\values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,194,277,372,470,555,636,736,820,901,972,1039,1109,1183", + "endColumns": "88,82,94,97,84,80,99,83,80,70,66,69,73,120", + "endOffsets": "189,272,367,465,550,631,731,815,896,967,1034,1104,1178,1299" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,194,277,372,470,555,636,736,820,901,972,1039,1210,1284", + "endColumns": "88,82,94,97,84,80,99,83,80,70,66,69,73,120", + "endOffsets": "189,272,367,465,550,631,731,815,896,967,1034,1104,1279,1400" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-en-rAU_values-en-rAU.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-en-rAU\\values-en-rAU.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1116", + "endColumns": "100", + "endOffsets": "1212" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1116,1182", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1177,1298" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1217,1283", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1278,1399" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-ro_values-ro.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ro\\values-ro.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1091", + "endColumns": "100", + "endOffsets": "1187" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ro\\values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,154,240,337,439,527,605,704,795,877,949,1018,1091", + "endColumns": "98,85,96,101,87,77,98,90,81,71,68,72,66", + "endOffsets": "149,235,332,434,522,600,699,790,872,944,1013,1086,1153" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,154,240,337,439,527,605,704,795,877,949,1018,1192", + "endColumns": "98,85,96,101,87,77,98,90,81,71,68,72,66", + "endOffsets": "149,235,332,434,522,600,699,790,872,944,1013,1086,1254" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-sk_values-sk.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-sk\\values-sk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1090", + "endColumns": "100", + "endOffsets": "1186" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-sk\\values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,234,329,432,524,603,709,799,880,949,1018,1090", + "endColumns": "94,83,94,102,91,78,105,89,80,68,68,71,67", + "endOffsets": "145,229,324,427,519,598,704,794,875,944,1013,1085,1153" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,234,329,432,524,603,709,799,880,949,1018,1191", + "endColumns": "94,83,94,102,91,78,105,89,80,68,68,71,67", + "endOffsets": "145,229,324,427,519,598,704,794,875,944,1013,1085,1254" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-es-rUS_values-es-rUS.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,286,384,487,576,655,752,844,931,995,1059,1136,1206", + "endColumns": "98,81,97,102,88,78,96,91,86,63,63,76,69,122", + "endOffsets": "199,281,379,482,571,650,747,839,926,990,1054,1131,1201,1324" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,286,384,487,576,655,752,844,931,995,1059,1237,1307", + "endColumns": "98,81,97,102,88,78,96,91,86,63,63,76,69,122", + "endOffsets": "199,281,379,482,571,650,747,839,926,990,1054,1131,1302,1425" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-es-rUS\\values-es-rUS.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1136", + "endColumns": "100", + "endOffsets": "1232" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-ur_values-ur.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ur\\values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,371,468,555,636,751,838,924,991,1058,1133,1199", + "endColumns": "92,82,89,96,86,80,114,86,85,66,66,74,65,116", + "endOffsets": "193,276,366,463,550,631,746,833,919,986,1053,1128,1194,1311" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,371,468,555,636,751,838,924,991,1058,1234,1300", + "endColumns": "92,82,89,96,86,80,114,86,85,66,66,74,65,116", + "endOffsets": "193,276,366,463,550,631,746,833,919,986,1053,1128,1295,1412" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ur\\values-ur.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1133", + "endColumns": "100", + "endOffsets": "1229" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-zh-rTW_values-zh-rTW.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,182,258,345,436,514,588,672,750,825,890,955,1023,1091", + "endColumns": "76,75,86,90,77,73,83,77,74,64,64,67,67,115", + "endOffsets": "177,253,340,431,509,583,667,745,820,885,950,1018,1086,1202" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,182,258,345,436,514,588,672,750,825,890,955,1124,1192", + "endColumns": "76,75,86,90,77,73,83,77,74,64,64,67,67,115", + "endOffsets": "177,253,340,431,509,583,667,745,820,885,950,1018,1187,1303" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-zh-rTW\\values-zh-rTW.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1023", + "endColumns": "100", + "endOffsets": "1119" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-my_values-my.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-my\\values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,287,391,495,578,662,771,860,942,1008,1075,1150,1216", + "endColumns": "93,87,103,103,82,83,108,88,81,65,66,74,65,125", + "endOffsets": "194,282,386,490,573,657,766,855,937,1003,1070,1145,1211,1337" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,287,391,495,578,662,771,860,942,1008,1075,1251,1317", + "endColumns": "93,87,103,103,82,83,108,88,81,65,66,74,65,125", + "endOffsets": "194,282,386,490,573,657,766,855,937,1003,1070,1145,1312,1438" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-my\\values-my.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1150", + "endColumns": "100", + "endOffsets": "1246" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-fa_values-fa.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-fa\\values-fa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1125", + "endColumns": "100", + "endOffsets": "1221" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-fa\\values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,192,271,365,463,549,631,750,835,918,985,1051,1125,1192", + "endColumns": "86,78,93,97,85,81,118,84,82,66,65,73,66,116", + "endOffsets": "187,266,360,458,544,626,745,830,913,980,1046,1120,1187,1304" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,192,271,365,463,549,631,750,835,918,985,1051,1226,1293", + "endColumns": "86,78,93,97,85,81,118,84,82,66,65,73,66,116", + "endOffsets": "187,266,360,458,544,626,745,830,913,980,1046,1120,1288,1405" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-nl_values-nl.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-nl\\values-nl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1122", + "endColumns": "100", + "endOffsets": "1218" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-nl\\values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,280,377,476,561,637,739,826,915,980,1045,1122,1192", + "endColumns": "91,82,96,98,84,75,101,86,88,64,64,76,69,119", + "endOffsets": "192,275,372,471,556,632,734,821,910,975,1040,1117,1187,1307" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,280,377,476,561,637,739,826,915,980,1045,1223,1293", + "endColumns": "91,82,96,98,84,75,101,86,88,64,64,76,69,119", + "endOffsets": "192,275,372,471,556,632,734,821,910,975,1040,1117,1288,1408" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-pa_values-pa.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-pa\\values-pa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1134", + "endColumns": "100", + "endOffsets": "1230" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-pa\\values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,373,472,560,638,753,841,925,993,1062,1134,1200", + "endColumns": "92,82,91,98,87,77,114,87,83,67,68,71,65,117", + "endOffsets": "193,276,368,467,555,633,748,836,920,988,1057,1129,1195,1313" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,373,472,560,638,753,841,925,993,1062,1235,1301", + "endColumns": "92,82,91,98,87,77,114,87,83,67,68,71,65,117", + "endOffsets": "193,276,368,467,555,633,748,836,920,988,1057,1129,1296,1414" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-kk_values-kk.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-kk\\values-kk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1147", + "endColumns": "100", + "endOffsets": "1243" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-kk\\values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,386,488,575,656,765,855,937,1006,1074,1147,1217", + "endColumns": "92,82,104,101,86,80,108,89,81,68,67,72,69,117", + "endOffsets": "193,276,381,483,570,651,760,850,932,1001,1069,1142,1212,1330" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,386,488,575,656,765,855,937,1006,1074,1248,1318", + "endColumns": "92,82,104,101,86,80,108,89,81,68,67,72,69,117", + "endOffsets": "193,276,381,483,570,651,760,850,932,1001,1069,1142,1313,1431" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-be_values-be.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-be\\values-be.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1132", + "endColumns": "100", + "endOffsets": "1228" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-be\\values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,376,479,565,645,749,837,919,990,1060,1132,1202", + "endColumns": "92,83,93,102,85,79,103,87,81,70,69,71,69,122", + "endOffsets": "193,277,371,474,560,640,744,832,914,985,1055,1127,1197,1320" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,376,479,565,645,749,837,919,990,1060,1233,1303", + "endColumns": "92,83,93,102,85,79,103,87,81,70,69,71,69,122", + "endOffsets": "193,277,371,474,560,640,744,832,914,985,1055,1127,1298,1421" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-zh-rHK_values-zh-rHK.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-zh-rHK\\values-zh-rHK.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1014", + "endColumns": "100", + "endOffsets": "1110" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,181,255,343,434,512,586,669,747,821,884,947,1014,1079", + "endColumns": "75,73,87,90,77,73,82,77,73,62,62,66,64,115", + "endOffsets": "176,250,338,429,507,581,664,742,816,879,942,1009,1074,1190" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,181,255,343,434,512,586,669,747,821,884,947,1115,1180", + "endColumns": "75,73,87,90,77,73,82,77,73,62,62,66,64,115", + "endOffsets": "176,250,338,429,507,581,664,742,816,879,942,1009,1175,1291" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-fr-rCA_values-fr-rCA.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,292,390,496,583,663,757,849,936,1007,1075,1151,1220", + "endColumns": "98,87,97,105,86,79,93,91,86,70,67,75,68,121", + "endOffsets": "199,287,385,491,578,658,752,844,931,1002,1070,1146,1215,1337" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,292,390,496,583,663,757,849,936,1007,1075,1252,1321", + "endColumns": "98,87,97,105,86,79,93,91,86,70,67,75,68,121", + "endOffsets": "199,287,385,491,578,658,752,844,931,1002,1070,1146,1316,1438" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-fr-rCA\\values-fr-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1151", + "endColumns": "100", + "endOffsets": "1247" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-pt-rPT_values-pt-rPT.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-pt-rPT\\values-pt-rPT.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1146", + "endColumns": "100", + "endOffsets": "1242" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,283,380,479,565,644,751,842,929,1001,1070,1146,1218", + "endColumns": "94,82,96,98,85,78,106,90,86,71,68,75,71,121", + "endOffsets": "195,278,375,474,560,639,746,837,924,996,1065,1141,1213,1335" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,283,380,479,565,644,751,842,929,1001,1070,1247,1319", + "endColumns": "94,82,96,98,85,78,106,90,86,71,68,75,71,121", + "endOffsets": "195,278,375,474,560,639,746,837,924,996,1065,1141,1314,1436" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-de_values-de.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-de\\values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,289,387,487,574,659,767,856,944,1009,1073,1148,1214", + "endColumns": "95,87,97,99,86,84,107,88,87,64,63,74,65,119", + "endOffsets": "196,284,382,482,569,654,762,851,939,1004,1068,1143,1209,1329" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,289,387,487,574,659,767,856,944,1009,1073,1249,1315", + "endColumns": "95,87,97,99,86,84,107,88,87,64,63,74,65,119", + "endOffsets": "196,284,382,482,569,654,762,851,939,1004,1068,1143,1310,1430" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-de\\values-de.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1148", + "endColumns": "100", + "endOffsets": "1244" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-pl_values-pl.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-pl\\values-pl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1150", + "endColumns": "100", + "endOffsets": "1246" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-pl\\values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,285,394,499,576,653,764,854,937,1008,1078,1150,1218", + "endColumns": "94,84,108,104,76,76,110,89,82,70,69,71,67,119", + "endOffsets": "195,280,389,494,571,648,759,849,932,1003,1073,1145,1213,1333" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,285,394,499,576,653,764,854,937,1008,1078,1251,1319", + "endColumns": "94,84,108,104,76,76,110,89,82,70,69,71,67,119", + "endOffsets": "195,280,389,494,571,648,759,849,932,1003,1073,1145,1314,1434" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-b+sr+Latn_values-b+sr+Latn.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1144", + "endColumns": "100", + "endOffsets": "1240" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\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", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,289,386,487,573,650,751,843,928,1000,1071,1144,1214", + "endColumns": "96,86,96,100,85,76,100,91,84,71,70,72,69,117", + "endOffsets": "197,284,381,482,568,645,746,838,923,995,1066,1139,1209,1327" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,289,386,487,573,650,751,843,928,1000,1071,1245,1315", + "endColumns": "96,86,96,100,85,76,100,91,84,71,70,72,69,117", + "endOffsets": "197,284,381,482,568,645,746,838,923,995,1066,1139,1310,1428" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-zu_values-zu.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-zu\\values-zu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1158", + "endColumns": "100", + "endOffsets": "1254" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-zu\\values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,282,387,492,582,664,770,863,946,1014,1082,1158,1228", + "endColumns": "94,81,104,104,89,81,105,92,82,67,67,75,69,123", + "endOffsets": "195,277,382,487,577,659,765,858,941,1009,1077,1153,1223,1347" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,282,387,492,582,664,770,863,946,1014,1082,1259,1329", + "endColumns": "94,81,104,104,89,81,105,92,82,67,67,75,69,123", + "endOffsets": "195,277,382,487,577,659,765,858,941,1009,1077,1153,1324,1448" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-am_values-am.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-am\\values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,188,265,357,453,535,613,709,791,869,935,1001,1071,1136", + "endColumns": "82,76,91,95,81,77,95,81,77,65,65,69,64,115", + "endOffsets": "183,260,352,448,530,608,704,786,864,930,996,1066,1131,1247" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,188,265,357,453,535,613,709,791,869,935,1001,1172,1237", + "endColumns": "82,76,91,95,81,77,95,81,77,65,65,69,64,115", + "endOffsets": "183,260,352,448,530,608,704,786,864,930,996,1066,1232,1348" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-am\\values-am.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1071", + "endColumns": "100", + "endOffsets": "1167" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-si_values-si.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-si\\values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,194,277,376,475,557,642,760,846,926,1003,1078,1151,1218", + "endColumns": "88,82,98,98,81,84,117,85,79,76,74,72,66,117", + "endOffsets": "189,272,371,470,552,637,755,841,921,998,1073,1146,1213,1331" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,194,277,376,475,557,642,760,846,926,1003,1078,1252,1319", + "endColumns": "88,82,98,98,81,84,117,85,79,76,74,72,66,117", + "endOffsets": "189,272,371,470,552,637,755,841,921,998,1073,1146,1314,1432" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-si\\values-si.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1151", + "endColumns": "100", + "endOffsets": "1247" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-gl_values-gl.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-gl\\values-gl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1161", + "endColumns": "100", + "endOffsets": "1257" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-gl\\values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,284,393,494,583,662,761,853,941,1014,1084,1161,1233", + "endColumns": "95,82,108,100,88,78,98,91,87,72,69,76,71,121", + "endOffsets": "196,279,388,489,578,657,756,848,936,1009,1079,1156,1228,1350" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,284,393,494,583,662,761,853,941,1014,1084,1262,1334", + "endColumns": "95,82,108,100,88,78,98,91,87,72,69,76,71,121", + "endOffsets": "196,279,388,489,578,657,756,848,936,1009,1079,1156,1329,1451" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-te_values-te.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-te\\values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,288,385,485,574,663,769,857,941,1014,1087,1164,1233", + "endColumns": "95,86,96,99,88,88,105,87,83,72,72,76,68,116", + "endOffsets": "196,283,380,480,569,658,764,852,936,1009,1082,1159,1228,1345" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,288,385,485,574,663,769,857,941,1014,1087,1265,1334", + "endColumns": "95,86,96,99,88,88,105,87,83,72,72,76,68,116", + "endOffsets": "196,283,380,480,569,658,764,852,936,1009,1082,1159,1329,1446" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-te\\values-te.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1164", + "endColumns": "100", + "endOffsets": "1260" + } + } + ] + }, + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/values_values.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\ae5b546ca0349d0bf7744393b38f6f9a\\transformed\\savedstate-1.1.0\\res\\values\\values.xml", + "from": { + "startLines": "-1", + "startColumns": "-1", + "startOffsets": "-1" + }, + "to": { + "startLines": "96", + "startColumns": "4", + "startOffsets": "5714", + "endColumns": "53", + "endOffsets": "5763" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values\\values.xml", + "from": { + "startLines": "-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1", + "startColumns": "-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1", + "startOffsets": "-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1" + }, + "to": { + "startLines": "2,3,4,6,7,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,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,99,114,120,121,125,126,130,134,135", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,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,210,282,412,481,915,985,1053,1125,1195,1256,1330,1403,1464,1525,1587,1651,1713,1774,1842,1942,2002,2068,2141,2210,2267,2319,2381,2453,2529,4742,4777,4812,4867,4930,4985,5043,5101,5162,5225,5282,5333,5383,5444,5501,5567,5601,5636,5871,6787,7096,7213,7414,7524,7725,8039,8111", + "endLines": "2,3,4,6,7,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,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,99,114,120,124,125,129,130,134,135", + "endColumns": "59,71,87,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,64,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66", + "endOffsets": "205,277,365,476,539,980,1048,1120,1190,1251,1325,1398,1459,1520,1582,1646,1708,1769,1837,1937,1997,2063,2136,2205,2262,2314,2376,2448,2524,2589,4772,4807,4862,4925,4980,5038,5096,5157,5220,5277,5328,5378,5439,5496,5562,5596,5631,5666,5936,6853,7208,7409,7519,7720,7849,8106,8173" + } + }, + { + "source": "D:\\Android\\LocalNetworkingAndroidApp\\app\\src\\main\\res\\values\\colors.xml", + "from": { + "startLines": "-1,8,-1,-1,-1,-1,-1,-1", + "startColumns": "-1,4,-1,-1,-1,-1,-1,-1", + "startOffsets": "-1,328,-1,-1,-1,-1,-1,-1", + "endColumns": "-1,48,-1,-1,-1,-1,-1,-1", + "endOffsets": "-1,372,-1,-1,-1,-1,-1,-1" + }, + "to": { + "startLines": "5,8,9,10,11,12,13,15", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "370,544,593,640,687,734,779,873", + "endColumns": "41,48,46,46,46,44,44,41", + "endOffsets": "407,588,635,682,729,774,819,910" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2c9a2ac417e45d5bc9fc76d7fb881e15\\transformed\\lifecycle-runtime-2.3.1\\res\\values\\values.xml", + "from": { + "startLines": "-1", + "startColumns": "-1", + "startOffsets": "-1" + }, + "to": { + "startLines": "95", + "startColumns": "4", + "startOffsets": "5671", + "endColumns": "42", + "endOffsets": "5709" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\5785e2bd253743983765e138bae06908\\transformed\\startup-runtime-1.0.0\\res\\values\\values.xml", + "from": { + "startLines": "-1", + "startColumns": "-1", + "startOffsets": "-1" + }, + "to": { + "startLines": "100", + "startColumns": "4", + "startOffsets": "5941", + "endColumns": "82", + "endOffsets": "6019" + } + }, + { + "source": "D:\\Android\\LocalNetworkingAndroidApp\\app\\src\\main\\res\\values\\strings.xml", + "from": { + "startLines": "-1", + "startColumns": "-1", + "startOffsets": "-1" + }, + "to": { + "startLines": "101", + "startColumns": "4", + "startOffsets": "6024", + "endColumns": "62", + "endOffsets": "6082" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2613d72639618055e5f0b853c3c1719f\\transformed\\lifecycle-viewmodel-2.3.1\\res\\values\\values.xml", + "from": { + "startLines": "-1", + "startColumns": "-1", + "startOffsets": "-1" + }, + "to": { + "startLines": "97", + "startColumns": "4", + "startOffsets": "5768", + "endColumns": "49", + "endOffsets": "5813" + } + }, + { + "source": "D:\\Android\\LocalNetworkingAndroidApp\\app\\src\\main\\res\\values\\themes.xml", + "from": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "56", + "endLines": "5", + "endColumns": "12", + "endOffsets": "236" + }, + "to": { + "startLines": "131", + "startColumns": "4", + "startOffsets": "7854", + "endLines": "133", + "endColumns": "12", + "endOffsets": "8034" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values\\values.xml", + "from": { + "startLines": "-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1", + "startColumns": "-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1", + "startOffsets": "-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1" + }, + "to": { + "startLines": "14,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,69,70,71,72,73,74,75,76,98,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "824,2594,2653,2712,2772,2832,2892,2952,3012,3072,3132,3192,3252,3312,3371,3431,3491,3551,3611,3671,3731,3791,3851,3911,3971,4030,4090,4150,4209,4268,4327,4386,4445,4504,4578,4636,4687,5818,6087,6152,6206,6272,6373,6431,6483,6555,6617,6671,6707,6741,6858,6894,6984", + "endLines": "14,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,69,70,71,72,73,74,75,76,98,102,103,104,105,106,107,108,109,110,111,112,113,115,116,119", + "endColumns": "48,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,73,57,50,54,52,64,53,65,100,57,51,71,61,53,35,33,45,35,89,12", + "endOffsets": "868,2648,2707,2767,2827,2887,2947,3007,3067,3127,3187,3247,3307,3366,3426,3486,3546,3606,3666,3726,3786,3846,3906,3966,4025,4085,4145,4204,4263,4322,4381,4440,4499,4573,4631,4682,4737,5866,6147,6201,6267,6368,6426,6478,6550,6612,6666,6702,6736,6782,6889,6979,7091" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-sq_values-sq.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-sq\\values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,283,382,484,580,661,763,855,945,1014,1081,1154,1220", + "endColumns": "94,82,98,101,95,80,101,91,89,68,66,72,65,120", + "endOffsets": "195,278,377,479,575,656,758,850,940,1009,1076,1149,1215,1336" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,283,382,484,580,661,763,855,945,1014,1081,1255,1321", + "endColumns": "94,82,98,101,95,80,101,91,89,68,66,72,65,120", + "endOffsets": "195,278,377,479,575,656,758,850,940,1009,1076,1149,1316,1437" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-sq\\values-sq.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1154", + "endColumns": "100", + "endOffsets": "1250" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-zh-rCN_values-zh-rCN.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-zh-rCN\\values-zh-rCN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1021", + "endColumns": "100", + "endOffsets": "1117" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,182,258,343,434,511,585,670,748,823,888,953,1021,1087", + "endColumns": "76,75,84,90,76,73,84,77,74,64,64,67,65,115", + "endOffsets": "177,253,338,429,506,580,665,743,818,883,948,1016,1082,1198" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,182,258,343,434,511,585,670,748,823,888,953,1122,1188", + "endColumns": "76,75,84,90,76,73,84,77,74,64,64,67,65,115", + "endOffsets": "177,253,338,429,506,580,665,743,818,883,948,1016,1183,1299" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-af_values-af.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-af\\values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,288,385,486,572,648,746,836,922,986,1051,1122,1192", + "endColumns": "95,86,96,100,85,75,97,89,85,63,64,70,69,119", + "endOffsets": "196,283,380,481,567,643,741,831,917,981,1046,1117,1187,1307" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,288,385,486,572,648,746,836,922,986,1051,1223,1293", + "endColumns": "95,86,96,100,85,75,97,89,85,63,64,70,69,119", + "endOffsets": "196,283,380,481,567,643,741,831,917,981,1046,1117,1288,1408" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-af\\values-af.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1122", + "endColumns": "100", + "endOffsets": "1218" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-lt_values-lt.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-lt\\values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,380,485,580,657,758,845,929,999,1068,1143,1226", + "endColumns": "92,83,97,104,94,76,100,86,83,69,68,74,82,121", + "endOffsets": "193,277,375,480,575,652,753,840,924,994,1063,1138,1221,1343" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,380,485,580,657,758,845,929,999,1068,1244,1327", + "endColumns": "92,83,97,104,94,76,100,86,83,69,68,74,82,121", + "endOffsets": "193,277,375,480,575,652,753,840,924,994,1063,1138,1322,1444" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-lt\\values-lt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1143", + "endColumns": "100", + "endOffsets": "1239" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-bn_values-bn.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-bn\\values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,283,373,471,557,636,748,835,924,994,1064,1147,1215", + "endColumns": "93,83,89,97,85,78,111,86,88,69,69,82,67,117", + "endOffsets": "194,278,368,466,552,631,743,830,919,989,1059,1142,1210,1328" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,283,373,471,557,636,748,835,924,994,1064,1248,1316", + "endColumns": "93,83,89,97,85,78,111,86,88,69,69,82,67,117", + "endOffsets": "194,278,368,466,552,631,743,830,919,989,1059,1142,1311,1429" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-bn\\values-bn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1147", + "endColumns": "100", + "endOffsets": "1243" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-ko_values-ko.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ko\\values-ko.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1036", + "endColumns": "100", + "endOffsets": "1132" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ko\\values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,184,260,348,438,518,593,682,761,840,904,968,1036,1100", + "endColumns": "78,75,87,89,79,74,88,78,78,63,63,67,63,113", + "endOffsets": "179,255,343,433,513,588,677,756,835,899,963,1031,1095,1209" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,184,260,348,438,518,593,682,761,840,904,968,1137,1201", + "endColumns": "78,75,87,89,79,74,88,78,78,63,63,67,63,113", + "endOffsets": "179,255,343,433,513,588,677,756,835,899,963,1031,1196,1310" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-cs_values-cs.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-cs\\values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,375,477,569,647,752,843,924,989,1054,1126,1194", + "endColumns": "92,82,93,101,91,77,104,90,80,64,64,71,67,119", + "endOffsets": "193,276,370,472,564,642,747,838,919,984,1049,1121,1189,1309" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,375,477,569,647,752,843,924,989,1054,1227,1295", + "endColumns": "92,82,93,101,91,77,104,90,80,64,64,71,67,119", + "endOffsets": "193,276,370,472,564,642,747,838,919,984,1049,1121,1290,1410" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-cs\\values-cs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1126", + "endColumns": "100", + "endOffsets": "1222" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-en-rCA_values-en-rCA.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-en-rCA\\values-en-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1116", + "endColumns": "100", + "endOffsets": "1212" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-en-rCA\\values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1116,1182", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1177,1298" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1217,1283", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1278,1399" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-en-rGB_values-en-rGB.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1116,1182", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1177,1298" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1217,1283", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1278,1399" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-en-rGB\\values-en-rGB.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1116", + "endColumns": "100", + "endOffsets": "1212" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-it_values-it.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-it\\values-it.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1183", + "endColumns": "100", + "endOffsets": "1279" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-it\\values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,292,390,490,577,656,781,874,969,1034,1098,1183,1252", + "endColumns": "99,86,97,99,86,78,124,92,94,64,63,84,68,120", + "endOffsets": "200,287,385,485,572,651,776,869,964,1029,1093,1178,1247,1368" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,292,390,490,577,656,781,874,969,1034,1098,1284,1353", + "endColumns": "99,86,97,99,86,78,124,92,94,64,63,84,68,120", + "endOffsets": "200,287,385,485,572,651,776,869,964,1029,1093,1178,1348,1469" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-en-rXC_values-en-rXC.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-en-rXC\\values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,296,481,678,880,1067,1252,1456,1644,1831,1996,2163,2329,2496", + "endColumns": "190,184,196,201,186,184,203,187,186,164,166,165,166,237", + "endOffsets": "291,476,673,875,1062,1247,1451,1639,1826,1991,2158,2324,2491,2729" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,296,481,678,880,1067,1252,1456,1644,1831,1996,2163,2533,2700", + "endColumns": "190,184,196,201,186,184,203,187,186,164,166,165,166,237", + "endOffsets": "291,476,673,875,1062,1247,1451,1639,1826,1991,2158,2324,2695,2933" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-en-rXC\\values-en-rXC.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "203", + "endOffsets": "254" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "2329", + "endColumns": "203", + "endOffsets": "2528" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-es_values-es.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-es\\values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,283,381,484,573,652,749,841,928,1001,1071,1148,1218", + "endColumns": "95,81,97,102,88,78,96,91,86,72,69,76,69,120", + "endOffsets": "196,278,376,479,568,647,744,836,923,996,1066,1143,1213,1334" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,283,381,484,573,652,749,841,928,1001,1071,1249,1319", + "endColumns": "95,81,97,102,88,78,96,91,86,72,69,76,69,120", + "endOffsets": "196,278,376,479,568,647,744,836,923,996,1066,1143,1314,1435" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-es\\values-es.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1148", + "endColumns": "100", + "endOffsets": "1244" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-tl_values-tl.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-tl\\values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,290,387,489,579,661,764,856,940,1010,1079,1150,1216", + "endColumns": "98,85,96,101,89,81,102,91,83,69,68,70,65,126", + "endOffsets": "199,285,382,484,574,656,759,851,935,1005,1074,1145,1211,1338" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,290,387,489,579,661,764,856,940,1010,1079,1251,1317", + "endColumns": "98,85,96,101,89,81,102,91,83,69,68,70,65,126", + "endOffsets": "199,285,382,484,574,656,759,851,935,1005,1074,1145,1312,1439" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-tl\\values-tl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1150", + "endColumns": "100", + "endOffsets": "1246" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-en-rIN_values-en-rIN.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-en-rIN\\values-en-rIN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1116", + "endColumns": "100", + "endOffsets": "1212" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1116,1182", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1177,1298" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1217,1283", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1278,1399" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-mr_values-mr.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-mr\\values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,281,378,476,563,649,756,845,928,997,1067,1138,1204", + "endColumns": "93,81,96,97,86,85,106,88,82,68,69,70,65,117", + "endOffsets": "194,276,373,471,558,644,751,840,923,992,1062,1133,1199,1317" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,281,378,476,563,649,756,845,928,997,1067,1239,1305", + "endColumns": "93,81,96,97,86,85,106,88,82,68,69,70,65,117", + "endOffsets": "194,276,373,471,558,644,751,840,923,992,1062,1133,1300,1418" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-mr\\values-mr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1138", + "endColumns": "100", + "endOffsets": "1234" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-mk_values-mk.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-mk\\values-mk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1156", + "endColumns": "100", + "endOffsets": "1252" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-mk\\values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,299,395,498,583,660,767,859,943,1014,1084,1156,1227", + "endColumns": "103,89,95,102,84,76,106,91,83,70,69,71,70,120", + "endOffsets": "204,294,390,493,578,655,762,854,938,1009,1079,1151,1222,1343" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,299,395,498,583,660,767,859,943,1014,1084,1257,1328", + "endColumns": "103,89,95,102,84,76,106,91,83,70,69,71,70,120", + "endOffsets": "204,294,390,493,578,655,762,854,938,1009,1079,1151,1323,1444" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-el_values-el.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-el\\values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,290,391,496,588,669,776,865,955,1025,1093,1168,1238", + "endColumns": "98,85,100,104,91,80,106,88,89,69,67,74,69,122", + "endOffsets": "199,285,386,491,583,664,771,860,950,1020,1088,1163,1233,1356" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,290,391,496,588,669,776,865,955,1025,1093,1269,1339", + "endColumns": "98,85,100,104,91,80,106,88,89,69,67,74,69,122", + "endOffsets": "199,285,386,491,583,664,771,860,950,1020,1088,1163,1334,1457" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-el\\values-el.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1168", + "endColumns": "100", + "endOffsets": "1264" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-km_values-km.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-km\\values-km.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1126", + "endColumns": "100", + "endOffsets": "1222" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-km\\values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,190,270,374,472,560,644,748,833,920,985,1050,1126,1192", + "endColumns": "84,79,103,97,87,83,103,84,86,64,64,75,65,117", + "endOffsets": "185,265,369,467,555,639,743,828,915,980,1045,1121,1187,1305" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,190,270,374,472,560,644,748,833,920,985,1050,1227,1293", + "endColumns": "84,79,103,97,87,83,103,84,86,64,64,75,65,117", + "endOffsets": "185,265,369,467,555,639,743,828,915,980,1045,1121,1288,1406" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-ky_values-ky.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ky\\values-ky.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1145", + "endColumns": "100", + "endOffsets": "1241" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ky\\values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,392,492,577,659,765,854,939,1005,1072,1145,1213", + "endColumns": "92,83,109,99,84,81,105,88,84,65,66,72,67,117", + "endOffsets": "193,277,387,487,572,654,760,849,934,1000,1067,1140,1208,1326" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,392,492,577,659,765,854,939,1005,1072,1246,1314", + "endColumns": "92,83,109,99,84,81,105,88,84,65,66,72,67,117", + "endOffsets": "193,277,387,487,572,654,760,849,934,1000,1067,1140,1309,1427" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-ka_values-ka.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ka\\values-ka.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1153", + "endColumns": "100", + "endOffsets": "1249" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ka\\values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,287,386,489,579,659,764,854,941,1012,1081,1153,1223", + "endColumns": "95,85,98,102,89,79,104,89,86,70,68,71,69,120", + "endOffsets": "196,282,381,484,574,654,759,849,936,1007,1076,1148,1218,1339" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,287,386,489,579,659,764,854,941,1012,1081,1254,1324", + "endColumns": "95,85,98,102,89,79,104,89,86,70,68,71,69,120", + "endOffsets": "196,282,381,484,574,654,759,849,936,1007,1076,1148,1319,1440" + } + } + ] + }, + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-merged_res-35:\\values-sl_values-sl.arsc.flat", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-sl\\values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,281,377,475,560,637,739,831,913,986,1058,1130,1200", + "endColumns": "94,80,95,97,84,76,101,91,81,72,71,71,69,120", + "endOffsets": "195,276,372,470,555,632,734,826,908,981,1053,1125,1195,1316" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,281,377,475,560,637,739,831,913,986,1058,1231,1301", + "endColumns": "94,80,95,97,84,76,101,91,81,72,71,71,69,120", + "endOffsets": "195,276,372,470,555,632,734,826,908,981,1053,1125,1296,1417" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-sl\\values-sl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1130", + "endColumns": "100", + "endOffsets": "1226" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-af.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-af.json new file mode 100644 index 0000000..d3bb002 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-af.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-af/values-af.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-af\\values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,288,385,486,572,648,746,836,922,986,1051,1122,1192", + "endColumns": "95,86,96,100,85,75,97,89,85,63,64,70,69,119", + "endOffsets": "196,283,380,481,567,643,741,831,917,981,1046,1117,1187,1307" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,288,385,486,572,648,746,836,922,986,1051,1223,1293", + "endColumns": "95,86,96,100,85,75,97,89,85,63,64,70,69,119", + "endOffsets": "196,283,380,481,567,643,741,831,917,981,1046,1117,1288,1408" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-af\\values-af.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1122", + "endColumns": "100", + "endOffsets": "1218" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-am.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-am.json new file mode 100644 index 0000000..275d696 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-am.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-am/values-am.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-am\\values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,188,265,357,453,535,613,709,791,869,935,1001,1071,1136", + "endColumns": "82,76,91,95,81,77,95,81,77,65,65,69,64,115", + "endOffsets": "183,260,352,448,530,608,704,786,864,930,996,1066,1131,1247" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,188,265,357,453,535,613,709,791,869,935,1001,1172,1237", + "endColumns": "82,76,91,95,81,77,95,81,77,65,65,69,64,115", + "endOffsets": "183,260,352,448,530,608,704,786,864,930,996,1066,1232,1348" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-am\\values-am.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1071", + "endColumns": "100", + "endOffsets": "1167" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ar.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ar.json new file mode 100644 index 0000000..3f8518f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ar.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-ar/values-ar.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ar\\values-ar.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1109", + "endColumns": "100", + "endOffsets": "1205" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ar\\values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,194,277,372,470,555,636,736,820,901,972,1039,1109,1183", + "endColumns": "88,82,94,97,84,80,99,83,80,70,66,69,73,120", + "endOffsets": "189,272,367,465,550,631,731,815,896,967,1034,1104,1178,1299" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,194,277,372,470,555,636,736,820,901,972,1039,1210,1284", + "endColumns": "88,82,94,97,84,80,99,83,80,70,66,69,73,120", + "endOffsets": "189,272,367,465,550,631,731,815,896,967,1034,1104,1279,1400" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-as.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-as.json new file mode 100644 index 0000000..81adb47 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-as.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-as/values-as.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-as\\values-as.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1164", + "endColumns": "100", + "endOffsets": "1260" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-as\\values-as.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,285,378,476,563,660,766,855,945,1013,1085,1164,1230", + "endColumns": "94,84,92,97,86,96,105,88,89,67,71,78,65,117", + "endOffsets": "195,280,373,471,558,655,761,850,940,1008,1080,1159,1225,1343" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,285,378,476,563,660,766,855,945,1013,1085,1265,1331", + "endColumns": "94,84,92,97,86,96,105,88,89,67,71,78,65,117", + "endOffsets": "195,280,373,471,558,655,761,850,940,1008,1080,1159,1326,1444" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-az.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-az.json new file mode 100644 index 0000000..9f34a63 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-az.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-az/values-az.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-az\\values-az.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1159", + "endColumns": "100", + "endOffsets": "1255" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-az\\values-az.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,293,390,491,582,663,777,869,951,1020,1087,1159,1225", + "endColumns": "99,87,96,100,90,80,113,91,81,68,66,71,65,116", + "endOffsets": "200,288,385,486,577,658,772,864,946,1015,1082,1154,1220,1337" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,293,390,491,582,663,777,869,951,1020,1087,1260,1326", + "endColumns": "99,87,96,100,90,80,113,91,81,68,66,71,65,116", + "endOffsets": "200,288,385,486,577,658,772,864,946,1015,1082,1154,1321,1438" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-b+sr+Latn.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-b+sr+Latn.json new file mode 100644 index 0000000..6d5f50f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-b+sr+Latn.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-b+sr+Latn/values-b+sr+Latn.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1144", + "endColumns": "100", + "endOffsets": "1240" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\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", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,289,386,487,573,650,751,843,928,1000,1071,1144,1214", + "endColumns": "96,86,96,100,85,76,100,91,84,71,70,72,69,117", + "endOffsets": "197,284,381,482,568,645,746,838,923,995,1066,1139,1209,1327" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,289,386,487,573,650,751,843,928,1000,1071,1245,1315", + "endColumns": "96,86,96,100,85,76,100,91,84,71,70,72,69,117", + "endOffsets": "197,284,381,482,568,645,746,838,923,995,1066,1139,1310,1428" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-be.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-be.json new file mode 100644 index 0000000..fd75357 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-be.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-be/values-be.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-be\\values-be.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1132", + "endColumns": "100", + "endOffsets": "1228" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-be\\values-be.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,376,479,565,645,749,837,919,990,1060,1132,1202", + "endColumns": "92,83,93,102,85,79,103,87,81,70,69,71,69,122", + "endOffsets": "193,277,371,474,560,640,744,832,914,985,1055,1127,1197,1320" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,376,479,565,645,749,837,919,990,1060,1233,1303", + "endColumns": "92,83,93,102,85,79,103,87,81,70,69,71,69,122", + "endOffsets": "193,277,371,474,560,640,744,832,914,985,1055,1127,1298,1421" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bg.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bg.json new file mode 100644 index 0000000..50a9fc0 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bg.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-bg/values-bg.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-bg\\values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,301,404,507,591,667,777,868,952,1019,1085,1157,1226", + "endColumns": "102,92,102,102,83,75,109,90,83,66,65,71,68,120", + "endOffsets": "203,296,399,502,586,662,772,863,947,1014,1080,1152,1221,1342" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,208,301,404,507,591,667,777,868,952,1019,1085,1258,1327", + "endColumns": "102,92,102,102,83,75,109,90,83,66,65,71,68,120", + "endOffsets": "203,296,399,502,586,662,772,863,947,1014,1080,1152,1322,1443" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-bg\\values-bg.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1157", + "endColumns": "100", + "endOffsets": "1253" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bn.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bn.json new file mode 100644 index 0000000..88c2e2e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bn.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-bn/values-bn.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-bn\\values-bn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,283,373,471,557,636,748,835,924,994,1064,1147,1215", + "endColumns": "93,83,89,97,85,78,111,86,88,69,69,82,67,117", + "endOffsets": "194,278,368,466,552,631,743,830,919,989,1059,1142,1210,1328" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,283,373,471,557,636,748,835,924,994,1064,1248,1316", + "endColumns": "93,83,89,97,85,78,111,86,88,69,69,82,67,117", + "endOffsets": "194,278,368,466,552,631,743,830,919,989,1059,1142,1311,1429" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-bn\\values-bn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1147", + "endColumns": "100", + "endOffsets": "1243" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bs.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bs.json new file mode 100644 index 0000000..cba67e7 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bs.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-bs/values-bs.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-bs\\values-bs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,206,294,388,487,573,650,749,841,926,998,1069,1142,1212", + "endColumns": "100,87,93,98,85,76,98,91,84,71,70,72,69,117", + "endOffsets": "201,289,383,482,568,645,744,836,921,993,1064,1137,1207,1325" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,206,294,388,487,573,650,749,841,926,998,1069,1243,1313", + "endColumns": "100,87,93,98,85,76,98,91,84,71,70,72,69,117", + "endOffsets": "201,289,383,482,568,645,744,836,921,993,1064,1137,1308,1426" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-bs\\values-bs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1142", + "endColumns": "100", + "endOffsets": "1238" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ca.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ca.json new file mode 100644 index 0000000..5ad2b12 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ca.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-ca/values-ca.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ca\\values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,286,390,493,582,660,757,848,934,1006,1075,1151,1222", + "endColumns": "96,83,103,102,88,77,96,90,85,71,68,75,70,119", + "endOffsets": "197,281,385,488,577,655,752,843,929,1001,1070,1146,1217,1337" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,286,390,493,582,660,757,848,934,1006,1075,1252,1323", + "endColumns": "96,83,103,102,88,77,96,90,85,71,68,75,70,119", + "endOffsets": "197,281,385,488,577,655,752,843,929,1001,1070,1146,1318,1438" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ca\\values-ca.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1151", + "endColumns": "100", + "endOffsets": "1247" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-cs.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-cs.json new file mode 100644 index 0000000..4de3f27 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-cs.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-cs/values-cs.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-cs\\values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,375,477,569,647,752,843,924,989,1054,1126,1194", + "endColumns": "92,82,93,101,91,77,104,90,80,64,64,71,67,119", + "endOffsets": "193,276,370,472,564,642,747,838,919,984,1049,1121,1189,1309" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,375,477,569,647,752,843,924,989,1054,1227,1295", + "endColumns": "92,82,93,101,91,77,104,90,80,64,64,71,67,119", + "endOffsets": "193,276,370,472,564,642,747,838,919,984,1049,1121,1290,1410" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-cs\\values-cs.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1126", + "endColumns": "100", + "endOffsets": "1222" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-da.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-da.json new file mode 100644 index 0000000..3fbfe4d --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-da.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-da/values-da.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-da\\values-da.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1105", + "endColumns": "100", + "endOffsets": "1201" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-da\\values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,277,372,471,553,630,734,823,905,970,1035,1105,1172", + "endColumns": "91,79,94,98,81,76,103,88,81,64,64,69,66,119", + "endOffsets": "192,272,367,466,548,625,729,818,900,965,1030,1100,1167,1287" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,277,372,471,553,630,734,823,905,970,1035,1206,1273", + "endColumns": "91,79,94,98,81,76,103,88,81,64,64,69,66,119", + "endOffsets": "192,272,367,466,548,625,729,818,900,965,1030,1100,1268,1388" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-de.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-de.json new file mode 100644 index 0000000..208dd2b --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-de.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-de/values-de.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-de\\values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,289,387,487,574,659,767,856,944,1009,1073,1148,1214", + "endColumns": "95,87,97,99,86,84,107,88,87,64,63,74,65,119", + "endOffsets": "196,284,382,482,569,654,762,851,939,1004,1068,1143,1209,1329" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,289,387,487,574,659,767,856,944,1009,1073,1249,1315", + "endColumns": "95,87,97,99,86,84,107,88,87,64,63,74,65,119", + "endOffsets": "196,284,382,482,569,654,762,851,939,1004,1068,1143,1310,1430" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-de\\values-de.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1148", + "endColumns": "100", + "endOffsets": "1244" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-el.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-el.json new file mode 100644 index 0000000..e19cd28 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-el.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-el/values-el.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-el\\values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,290,391,496,588,669,776,865,955,1025,1093,1168,1238", + "endColumns": "98,85,100,104,91,80,106,88,89,69,67,74,69,122", + "endOffsets": "199,285,386,491,583,664,771,860,950,1020,1088,1163,1233,1356" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,290,391,496,588,669,776,865,955,1025,1093,1269,1339", + "endColumns": "98,85,100,104,91,80,106,88,89,69,67,74,69,122", + "endOffsets": "199,285,386,491,583,664,771,860,950,1020,1088,1163,1334,1457" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-el\\values-el.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1168", + "endColumns": "100", + "endOffsets": "1264" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rAU.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rAU.json new file mode 100644 index 0000000..fcca84f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rAU.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-en-rAU/values-en-rAU.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-en-rAU\\values-en-rAU.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1116", + "endColumns": "100", + "endOffsets": "1212" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-en-rAU\\values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1116,1182", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1177,1298" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1217,1283", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1278,1399" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rCA.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rCA.json new file mode 100644 index 0000000..2a9ce92 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rCA.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-en-rCA/values-en-rCA.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-en-rCA\\values-en-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1116", + "endColumns": "100", + "endOffsets": "1212" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-en-rCA\\values-en-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1116,1182", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1177,1298" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1217,1283", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1278,1399" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rGB.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rGB.json new file mode 100644 index 0000000..6e05bc0 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rGB.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-en-rGB/values-en-rGB.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-en-rGB\\values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1116,1182", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1177,1298" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1217,1283", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1278,1399" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-en-rGB\\values-en-rGB.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1116", + "endColumns": "100", + "endOffsets": "1212" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rIN.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rIN.json new file mode 100644 index 0000000..2099753 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rIN.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-en-rIN/values-en-rIN.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-en-rIN\\values-en-rIN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1116", + "endColumns": "100", + "endOffsets": "1212" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-en-rIN\\values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1116,1182", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1177,1298" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,373,472,559,641,741,830,914,979,1043,1217,1283", + "endColumns": "91,81,93,98,86,81,99,88,83,64,63,72,65,120", + "endOffsets": "192,274,368,467,554,636,736,825,909,974,1038,1111,1278,1399" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rXC.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rXC.json new file mode 100644 index 0000000..652e0e5 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rXC.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-en-rXC/values-en-rXC.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-en-rXC\\values-en-rXC.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,296,481,678,880,1067,1252,1456,1644,1831,1996,2163,2329,2496", + "endColumns": "190,184,196,201,186,184,203,187,186,164,166,165,166,237", + "endOffsets": "291,476,673,875,1062,1247,1451,1639,1826,1991,2158,2324,2491,2729" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,296,481,678,880,1067,1252,1456,1644,1831,1996,2163,2533,2700", + "endColumns": "190,184,196,201,186,184,203,187,186,164,166,165,166,237", + "endOffsets": "291,476,673,875,1062,1247,1451,1639,1826,1991,2158,2324,2695,2933" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-en-rXC\\values-en-rXC.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "203", + "endOffsets": "254" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "2329", + "endColumns": "203", + "endOffsets": "2528" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es-rUS.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es-rUS.json new file mode 100644 index 0000000..6a7cadc --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es-rUS.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-es-rUS/values-es-rUS.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-es-rUS\\values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,286,384,487,576,655,752,844,931,995,1059,1136,1206", + "endColumns": "98,81,97,102,88,78,96,91,86,63,63,76,69,122", + "endOffsets": "199,281,379,482,571,650,747,839,926,990,1054,1131,1201,1324" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,286,384,487,576,655,752,844,931,995,1059,1237,1307", + "endColumns": "98,81,97,102,88,78,96,91,86,63,63,76,69,122", + "endOffsets": "199,281,379,482,571,650,747,839,926,990,1054,1131,1302,1425" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-es-rUS\\values-es-rUS.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1136", + "endColumns": "100", + "endOffsets": "1232" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es.json new file mode 100644 index 0000000..e65bd83 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-es/values-es.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-es\\values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,283,381,484,573,652,749,841,928,1001,1071,1148,1218", + "endColumns": "95,81,97,102,88,78,96,91,86,72,69,76,69,120", + "endOffsets": "196,278,376,479,568,647,744,836,923,996,1066,1143,1213,1334" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,283,381,484,573,652,749,841,928,1001,1071,1249,1319", + "endColumns": "95,81,97,102,88,78,96,91,86,72,69,76,69,120", + "endOffsets": "196,278,376,479,568,647,744,836,923,996,1066,1143,1314,1435" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-es\\values-es.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1148", + "endColumns": "100", + "endOffsets": "1244" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-et.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-et.json new file mode 100644 index 0000000..1961c92 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-et.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-et/values-et.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-et\\values-et.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,278,374,469,551,629,727,818,902,970,1036,1108,1179", + "endColumns": "92,79,95,94,81,77,97,90,83,67,65,71,70,121", + "endOffsets": "193,273,369,464,546,624,722,813,897,965,1031,1103,1174,1296" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,278,374,469,551,629,727,818,902,970,1036,1209,1280", + "endColumns": "92,79,95,94,81,77,97,90,83,67,65,71,70,121", + "endOffsets": "193,273,369,464,546,624,722,813,897,965,1031,1103,1275,1397" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-et\\values-et.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1108", + "endColumns": "100", + "endOffsets": "1204" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-eu.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-eu.json new file mode 100644 index 0000000..593a50e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-eu.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-eu/values-eu.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-eu\\values-eu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1149", + "endColumns": "100", + "endOffsets": "1245" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-eu\\values-eu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,196,277,378,482,574,650,755,844,928,1003,1075,1149,1217", + "endColumns": "90,80,100,103,91,75,104,88,83,74,71,73,67,119", + "endOffsets": "191,272,373,477,569,645,750,839,923,998,1070,1144,1212,1332" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,196,277,378,482,574,650,755,844,928,1003,1075,1250,1318", + "endColumns": "90,80,100,103,91,75,104,88,83,74,71,73,67,119", + "endOffsets": "191,272,373,477,569,645,750,839,923,998,1070,1144,1313,1433" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fa.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fa.json new file mode 100644 index 0000000..d404e35 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fa.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-fa/values-fa.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-fa\\values-fa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1125", + "endColumns": "100", + "endOffsets": "1221" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-fa\\values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,192,271,365,463,549,631,750,835,918,985,1051,1125,1192", + "endColumns": "86,78,93,97,85,81,118,84,82,66,65,73,66,116", + "endOffsets": "187,266,360,458,544,626,745,830,913,980,1046,1120,1187,1304" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,192,271,365,463,549,631,750,835,918,985,1051,1226,1293", + "endColumns": "86,78,93,97,85,81,118,84,82,66,65,73,66,116", + "endOffsets": "187,266,360,458,544,626,745,830,913,980,1046,1120,1288,1405" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fi.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fi.json new file mode 100644 index 0000000..84b463a --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fi.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-fi/values-fi.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-fi\\values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,284,383,484,573,650,751,842,924,990,1058,1130,1202", + "endColumns": "93,84,98,100,88,76,100,90,81,65,67,71,71,121", + "endOffsets": "194,279,378,479,568,645,746,837,919,985,1053,1125,1197,1319" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,284,383,484,573,650,751,842,924,990,1058,1231,1303", + "endColumns": "93,84,98,100,88,76,100,90,81,65,67,71,71,121", + "endOffsets": "194,279,378,479,568,645,746,837,919,985,1053,1125,1298,1420" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-fi\\values-fi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1130", + "endColumns": "100", + "endOffsets": "1226" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr-rCA.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr-rCA.json new file mode 100644 index 0000000..b5e073e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr-rCA.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-fr-rCA/values-fr-rCA.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-fr-rCA\\values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,292,390,496,583,663,757,849,936,1007,1075,1151,1220", + "endColumns": "98,87,97,105,86,79,93,91,86,70,67,75,68,121", + "endOffsets": "199,287,385,491,578,658,752,844,931,1002,1070,1146,1215,1337" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,292,390,496,583,663,757,849,936,1007,1075,1252,1321", + "endColumns": "98,87,97,105,86,79,93,91,86,70,67,75,68,121", + "endOffsets": "199,287,385,491,578,658,752,844,931,1002,1070,1146,1316,1438" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-fr-rCA\\values-fr-rCA.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1151", + "endColumns": "100", + "endOffsets": "1247" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr.json new file mode 100644 index 0000000..10c4628 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-fr/values-fr.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-fr\\values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,292,392,492,579,658,753,845,932,1003,1071,1147,1216", + "endColumns": "98,87,99,99,86,78,94,91,86,70,67,75,68,121", + "endOffsets": "199,287,387,487,574,653,748,840,927,998,1066,1142,1211,1333" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,292,392,492,579,658,753,845,932,1003,1071,1248,1317", + "endColumns": "98,87,99,99,86,78,94,91,86,70,67,75,68,121", + "endOffsets": "199,287,387,487,574,653,748,840,927,998,1066,1142,1312,1434" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-fr\\values-fr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1147", + "endColumns": "100", + "endOffsets": "1243" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gl.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gl.json new file mode 100644 index 0000000..4ea53a9 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gl.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-gl/values-gl.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-gl\\values-gl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1161", + "endColumns": "100", + "endOffsets": "1257" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-gl\\values-gl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,284,393,494,583,662,761,853,941,1014,1084,1161,1233", + "endColumns": "95,82,108,100,88,78,98,91,87,72,69,76,71,121", + "endOffsets": "196,279,388,489,578,657,756,848,936,1009,1079,1156,1228,1350" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,284,393,494,583,662,761,853,941,1014,1084,1262,1334", + "endColumns": "95,82,108,100,88,78,98,91,87,72,69,76,71,121", + "endOffsets": "196,279,388,489,578,657,756,848,936,1009,1079,1156,1329,1451" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gu.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gu.json new file mode 100644 index 0000000..0717833 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gu.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-gu/values-gu.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-gu\\values-gu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,372,471,558,644,747,834,920,988,1057,1132,1198", + "endColumns": "91,81,92,98,86,85,102,86,85,67,68,74,65,115", + "endOffsets": "192,274,367,466,553,639,742,829,915,983,1052,1127,1193,1309" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,279,372,471,558,644,747,834,920,988,1057,1233,1299", + "endColumns": "91,81,92,98,86,85,102,86,85,67,68,74,65,115", + "endOffsets": "192,274,367,466,553,639,742,829,915,983,1052,1127,1294,1410" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-gu\\values-gu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1132", + "endColumns": "100", + "endOffsets": "1228" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hi.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hi.json new file mode 100644 index 0000000..5929a69 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hi.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-hi/values-hi.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-hi\\values-hi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1178", + "endColumns": "100", + "endOffsets": "1274" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-hi\\values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,283,376,474,563,641,794,883,968,1036,1105,1178,1244", + "endColumns": "94,82,92,97,88,77,152,88,84,67,68,72,65,119", + "endOffsets": "195,278,371,469,558,636,789,878,963,1031,1100,1173,1239,1359" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,283,376,474,563,641,794,883,968,1036,1105,1279,1345", + "endColumns": "94,82,92,97,88,77,152,88,84,67,68,72,65,119", + "endOffsets": "195,278,371,469,558,636,789,878,963,1031,1100,1173,1340,1460" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hr.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hr.json new file mode 100644 index 0000000..6146ef9 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hr.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-hr/values-hr.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-hr\\values-hr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1154", + "endColumns": "100", + "endOffsets": "1250" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-hr\\values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,297,391,490,580,659,758,853,938,1010,1081,1154,1224", + "endColumns": "104,86,93,98,89,78,98,94,84,71,70,72,69,117", + "endOffsets": "205,292,386,485,575,654,753,848,933,1005,1076,1149,1219,1337" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,210,297,391,490,580,659,758,853,938,1010,1081,1255,1325", + "endColumns": "104,86,93,98,89,78,98,94,84,71,70,72,69,117", + "endOffsets": "205,292,386,485,575,654,753,848,933,1005,1076,1149,1320,1438" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hu.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hu.json new file mode 100644 index 0000000..40a4109 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hu.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-hu/values-hu.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-hu\\values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,288,385,484,571,653,764,853,940,1004,1068,1142,1208", + "endColumns": "94,87,96,98,86,81,110,88,86,63,63,73,65,120", + "endOffsets": "195,283,380,479,566,648,759,848,935,999,1063,1137,1203,1324" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,288,385,484,571,653,764,853,940,1004,1068,1243,1309", + "endColumns": "94,87,96,98,86,81,110,88,86,63,63,73,65,120", + "endOffsets": "195,283,380,479,566,648,759,848,935,999,1063,1137,1304,1425" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-hu\\values-hu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1142", + "endColumns": "100", + "endOffsets": "1238" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hy.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hy.json new file mode 100644 index 0000000..7746076 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hy.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-hy/values-hy.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-hy\\values-hy.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1145", + "endColumns": "100", + "endOffsets": "1241" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-hy\\values-hy.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,286,380,480,563,645,751,846,928,1000,1071,1145,1214", + "endColumns": "98,81,93,99,82,81,105,94,81,71,70,73,68,117", + "endOffsets": "199,281,375,475,558,640,746,841,923,995,1066,1140,1209,1327" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,286,380,480,563,645,751,846,928,1000,1071,1246,1315", + "endColumns": "98,81,93,99,82,81,105,94,81,71,70,73,68,117", + "endOffsets": "199,281,375,475,558,640,746,841,923,995,1066,1140,1310,1428" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-in.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-in.json new file mode 100644 index 0000000..f732afb --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-in.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-in/values-in.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-in\\values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,195,277,375,475,561,644,756,843,928,998,1065,1137,1203", + "endColumns": "89,81,97,99,85,82,111,86,84,69,66,71,65,118", + "endOffsets": "190,272,370,470,556,639,751,838,923,993,1060,1132,1198,1317" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,195,277,375,475,561,644,756,843,928,998,1065,1238,1304", + "endColumns": "89,81,97,99,85,82,111,86,84,69,66,71,65,118", + "endOffsets": "190,272,370,470,556,639,751,838,923,993,1060,1132,1299,1418" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-in\\values-in.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1137", + "endColumns": "100", + "endOffsets": "1233" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-is.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-is.json new file mode 100644 index 0000000..15fbbb2 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-is.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-is/values-is.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-is\\values-is.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1113", + "endColumns": "100", + "endOffsets": "1209" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-is\\values-is.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,196,277,376,475,560,640,736,825,907,975,1043,1113,1181", + "endColumns": "90,80,98,98,84,79,95,88,81,67,67,69,67,119", + "endOffsets": "191,272,371,470,555,635,731,820,902,970,1038,1108,1176,1296" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,196,277,376,475,560,640,736,825,907,975,1043,1214,1282", + "endColumns": "90,80,98,98,84,79,95,88,81,67,67,69,67,119", + "endOffsets": "191,272,371,470,555,635,731,820,902,970,1038,1108,1277,1397" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-it.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-it.json new file mode 100644 index 0000000..7eb8fb8 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-it.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-it/values-it.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-it\\values-it.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1183", + "endColumns": "100", + "endOffsets": "1279" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-it\\values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,292,390,490,577,656,781,874,969,1034,1098,1183,1252", + "endColumns": "99,86,97,99,86,78,124,92,94,64,63,84,68,120", + "endOffsets": "200,287,385,485,572,651,776,869,964,1029,1093,1178,1247,1368" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,205,292,390,490,577,656,781,874,969,1034,1098,1284,1353", + "endColumns": "99,86,97,99,86,78,124,92,94,64,63,84,68,120", + "endOffsets": "200,287,385,485,572,651,776,869,964,1029,1093,1178,1348,1469" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-iw.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-iw.json new file mode 100644 index 0000000..4eef321 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-iw.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-iw/values-iw.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-iw\\values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,194,278,371,466,549,626,718,804,883,949,1015,1084,1155", + "endColumns": "88,83,92,94,82,76,91,85,78,65,65,68,70,118", + "endOffsets": "189,273,366,461,544,621,713,799,878,944,1010,1079,1150,1269" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,194,278,371,466,549,626,718,804,883,949,1015,1185,1256", + "endColumns": "88,83,92,94,82,76,91,85,78,65,65,68,70,118", + "endOffsets": "189,273,366,461,544,621,713,799,878,944,1010,1079,1251,1370" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-iw\\values-iw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1084", + "endColumns": "100", + "endOffsets": "1180" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ja.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ja.json new file mode 100644 index 0000000..fa98595 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ja.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-ja/values-ja.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ja\\values-ja.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1059", + "endColumns": "100", + "endOffsets": "1155" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ja\\values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,191,269,358,455,538,616,702,787,862,926,990,1059,1124", + "endColumns": "85,77,88,96,82,77,85,84,74,63,63,68,64,116", + "endOffsets": "186,264,353,450,533,611,697,782,857,921,985,1054,1119,1236" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,191,269,358,455,538,616,702,787,862,926,990,1160,1225", + "endColumns": "85,77,88,96,82,77,85,84,74,63,63,68,64,116", + "endOffsets": "186,264,353,450,533,611,697,782,857,921,985,1054,1220,1337" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ka.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ka.json new file mode 100644 index 0000000..6fb6367 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ka.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-ka/values-ka.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ka\\values-ka.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1153", + "endColumns": "100", + "endOffsets": "1249" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ka\\values-ka.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,287,386,489,579,659,764,854,941,1012,1081,1153,1223", + "endColumns": "95,85,98,102,89,79,104,89,86,70,68,71,69,120", + "endOffsets": "196,282,381,484,574,654,759,849,936,1007,1076,1148,1218,1339" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,287,386,489,579,659,764,854,941,1012,1081,1254,1324", + "endColumns": "95,85,98,102,89,79,104,89,86,70,68,71,69,120", + "endOffsets": "196,282,381,484,574,654,759,849,936,1007,1076,1148,1319,1440" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kk.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kk.json new file mode 100644 index 0000000..6794861 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kk.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-kk/values-kk.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-kk\\values-kk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1147", + "endColumns": "100", + "endOffsets": "1243" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-kk\\values-kk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,386,488,575,656,765,855,937,1006,1074,1147,1217", + "endColumns": "92,82,104,101,86,80,108,89,81,68,67,72,69,117", + "endOffsets": "193,276,381,483,570,651,760,850,932,1001,1069,1142,1212,1330" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,386,488,575,656,765,855,937,1006,1074,1248,1318", + "endColumns": "92,82,104,101,86,80,108,89,81,68,67,72,69,117", + "endOffsets": "193,276,381,483,570,651,760,850,932,1001,1069,1142,1313,1431" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-km.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-km.json new file mode 100644 index 0000000..a793f7e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-km.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-km/values-km.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-km\\values-km.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1126", + "endColumns": "100", + "endOffsets": "1222" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-km\\values-km.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,190,270,374,472,560,644,748,833,920,985,1050,1126,1192", + "endColumns": "84,79,103,97,87,83,103,84,86,64,64,75,65,117", + "endOffsets": "185,265,369,467,555,639,743,828,915,980,1045,1121,1187,1305" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,190,270,374,472,560,644,748,833,920,985,1050,1227,1293", + "endColumns": "84,79,103,97,87,83,103,84,86,64,64,75,65,117", + "endOffsets": "185,265,369,467,555,639,743,828,915,980,1045,1121,1288,1406" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kn.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kn.json new file mode 100644 index 0000000..dbe0835 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kn.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-kn/values-kn.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-kn\\values-kn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,286,382,482,571,655,778,869,954,1025,1096,1175,1244", + "endColumns": "96,83,95,99,88,83,122,90,84,70,70,78,68,117", + "endOffsets": "197,281,377,477,566,650,773,864,949,1020,1091,1170,1239,1357" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,286,382,482,571,655,778,869,954,1025,1096,1276,1345", + "endColumns": "96,83,95,99,88,83,122,90,84,70,70,78,68,117", + "endOffsets": "197,281,377,477,566,650,773,864,949,1020,1091,1170,1340,1458" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-kn\\values-kn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1175", + "endColumns": "100", + "endOffsets": "1271" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ko.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ko.json new file mode 100644 index 0000000..14b60b2 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ko.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-ko/values-ko.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ko\\values-ko.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1036", + "endColumns": "100", + "endOffsets": "1132" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ko\\values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,184,260,348,438,518,593,682,761,840,904,968,1036,1100", + "endColumns": "78,75,87,89,79,74,88,78,78,63,63,67,63,113", + "endOffsets": "179,255,343,433,513,588,677,756,835,899,963,1031,1095,1209" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,184,260,348,438,518,593,682,761,840,904,968,1137,1201", + "endColumns": "78,75,87,89,79,74,88,78,78,63,63,67,63,113", + "endOffsets": "179,255,343,433,513,588,677,756,835,899,963,1031,1196,1310" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ky.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ky.json new file mode 100644 index 0000000..372138f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ky.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-ky/values-ky.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ky\\values-ky.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1145", + "endColumns": "100", + "endOffsets": "1241" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ky\\values-ky.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,392,492,577,659,765,854,939,1005,1072,1145,1213", + "endColumns": "92,83,109,99,84,81,105,88,84,65,66,72,67,117", + "endOffsets": "193,277,387,487,572,654,760,849,934,1000,1067,1140,1208,1326" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,392,492,577,659,765,854,939,1005,1072,1246,1314", + "endColumns": "92,83,109,99,84,81,105,88,84,65,66,72,67,117", + "endOffsets": "193,277,387,487,572,654,760,849,934,1000,1067,1140,1309,1427" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-land.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-land.json new file mode 100644 index 0000000..c5bbbbc --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-land.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-land/values-land.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-land\\values-land.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "48", + "endOffsets": "99" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lo.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lo.json new file mode 100644 index 0000000..fa61012 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lo.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-lo/values-lo.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-lo\\values-lo.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1139", + "endColumns": "100", + "endOffsets": "1235" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-lo\\values-lo.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,195,272,381,479,568,657,765,851,934,999,1065,1139,1205", + "endColumns": "89,76,108,97,88,88,107,85,82,64,65,73,65,120", + "endOffsets": "190,267,376,474,563,652,760,846,929,994,1060,1134,1200,1321" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,195,272,381,479,568,657,765,851,934,999,1065,1240,1306", + "endColumns": "89,76,108,97,88,88,107,85,82,64,65,73,65,120", + "endOffsets": "190,267,376,474,563,652,760,846,929,994,1060,1134,1301,1422" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lt.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lt.json new file mode 100644 index 0000000..b314551 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lt.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-lt/values-lt.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-lt\\values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,380,485,580,657,758,845,929,999,1068,1143,1226", + "endColumns": "92,83,97,104,94,76,100,86,83,69,68,74,82,121", + "endOffsets": "193,277,375,480,575,652,753,840,924,994,1063,1138,1221,1343" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,380,485,580,657,758,845,929,999,1068,1244,1327", + "endColumns": "92,83,97,104,94,76,100,86,83,69,68,74,82,121", + "endOffsets": "193,277,375,480,575,652,753,840,924,994,1063,1138,1322,1444" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-lt\\values-lt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1143", + "endColumns": "100", + "endOffsets": "1239" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lv.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lv.json new file mode 100644 index 0000000..120f14a --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lv.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-lv/values-lv.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-lv\\values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,203,292,388,491,581,667,770,863,947,1017,1087,1160,1228", + "endColumns": "97,88,95,102,89,85,102,92,83,69,69,72,67,121", + "endOffsets": "198,287,383,486,576,662,765,858,942,1012,1082,1155,1223,1345" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,203,292,388,491,581,667,770,863,947,1017,1087,1261,1329", + "endColumns": "97,88,95,102,89,85,102,92,83,69,69,72,67,121", + "endOffsets": "198,287,383,486,576,662,765,858,942,1012,1082,1155,1324,1446" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-lv\\values-lv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1160", + "endColumns": "100", + "endOffsets": "1256" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mk.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mk.json new file mode 100644 index 0000000..aa2000b --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mk.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-mk/values-mk.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-mk\\values-mk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1156", + "endColumns": "100", + "endOffsets": "1252" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-mk\\values-mk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,299,395,498,583,660,767,859,943,1014,1084,1156,1227", + "endColumns": "103,89,95,102,84,76,106,91,83,70,69,71,70,120", + "endOffsets": "204,294,390,493,578,655,762,854,938,1009,1079,1151,1222,1343" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,209,299,395,498,583,660,767,859,943,1014,1084,1257,1328", + "endColumns": "103,89,95,102,84,76,106,91,83,70,69,71,70,120", + "endOffsets": "204,294,390,493,578,655,762,854,938,1009,1079,1151,1323,1444" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ml.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ml.json new file mode 100644 index 0000000..de05928 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ml.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-ml/values-ml.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ml\\values-ml.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,287,386,490,580,666,791,878,966,1033,1100,1178,1245", + "endColumns": "94,86,98,103,89,85,124,86,87,66,66,77,66,118", + "endOffsets": "195,282,381,485,575,661,786,873,961,1028,1095,1173,1240,1359" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,287,386,490,580,666,791,878,966,1033,1100,1279,1346", + "endColumns": "94,86,98,103,89,85,124,86,87,66,66,77,66,118", + "endOffsets": "195,282,381,485,575,661,786,873,961,1028,1095,1173,1341,1460" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ml\\values-ml.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1178", + "endColumns": "100", + "endOffsets": "1274" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mn.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mn.json new file mode 100644 index 0000000..1974ad0 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mn.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-mn/values-mn.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-mn\\values-mn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,283,375,471,554,640,761,848,929,1002,1073,1146,1212", + "endColumns": "91,85,91,95,82,85,120,86,80,72,70,72,65,116", + "endOffsets": "192,278,370,466,549,635,756,843,924,997,1068,1141,1207,1324" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,283,375,471,554,640,761,848,929,1002,1073,1247,1313", + "endColumns": "91,85,91,95,82,85,120,86,80,72,70,72,65,116", + "endOffsets": "192,278,370,466,549,635,756,843,924,997,1068,1141,1308,1425" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-mn\\values-mn.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1146", + "endColumns": "100", + "endOffsets": "1242" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mr.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mr.json new file mode 100644 index 0000000..13bbdf1 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mr.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-mr/values-mr.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-mr\\values-mr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,281,378,476,563,649,756,845,928,997,1067,1138,1204", + "endColumns": "93,81,96,97,86,85,106,88,82,68,69,70,65,117", + "endOffsets": "194,276,373,471,558,644,751,840,923,992,1062,1133,1199,1317" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,281,378,476,563,649,756,845,928,997,1067,1239,1305", + "endColumns": "93,81,96,97,86,85,106,88,82,68,69,70,65,117", + "endOffsets": "194,276,373,471,558,644,751,840,923,992,1062,1133,1300,1418" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-mr\\values-mr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1138", + "endColumns": "100", + "endOffsets": "1234" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ms.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ms.json new file mode 100644 index 0000000..e5dc946 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ms.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-ms/values-ms.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ms\\values-ms.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1105", + "endColumns": "100", + "endOffsets": "1201" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ms\\values-ms.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,195,279,375,477,562,645,728,815,900,966,1033,1105,1171", + "endColumns": "89,83,95,101,84,82,82,86,84,65,66,71,65,119", + "endOffsets": "190,274,370,472,557,640,723,810,895,961,1028,1100,1166,1286" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,195,279,375,477,562,645,728,815,900,966,1033,1206,1272", + "endColumns": "89,83,95,101,84,82,82,86,84,65,66,71,65,119", + "endOffsets": "190,274,370,472,557,640,723,810,895,961,1028,1100,1267,1387" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-my.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-my.json new file mode 100644 index 0000000..f060017 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-my.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-my/values-my.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-my\\values-my.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,287,391,495,578,662,771,860,942,1008,1075,1150,1216", + "endColumns": "93,87,103,103,82,83,108,88,81,65,66,74,65,125", + "endOffsets": "194,282,386,490,573,657,766,855,937,1003,1070,1145,1211,1337" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,287,391,495,578,662,771,860,942,1008,1075,1251,1317", + "endColumns": "93,87,103,103,82,83,108,88,81,65,66,74,65,125", + "endOffsets": "194,282,386,490,573,657,766,855,937,1003,1070,1145,1312,1438" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-my\\values-my.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1150", + "endColumns": "100", + "endOffsets": "1246" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nb.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nb.json new file mode 100644 index 0000000..9756cb8 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nb.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-nb/values-nb.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-nb\\values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,279,376,476,564,640,748,837,919,983,1047,1117,1184", + "endColumns": "92,80,96,99,87,75,107,88,81,63,63,69,66,119", + "endOffsets": "193,274,371,471,559,635,743,832,914,978,1042,1112,1179,1299" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,279,376,476,564,640,748,837,919,983,1047,1218,1285", + "endColumns": "92,80,96,99,87,75,107,88,81,63,63,69,66,119", + "endOffsets": "193,274,371,471,559,635,743,832,914,978,1042,1112,1280,1400" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-nb\\values-nb.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1117", + "endColumns": "100", + "endOffsets": "1213" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ne.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ne.json new file mode 100644 index 0000000..fb0d82d --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ne.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-ne/values-ne.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ne\\values-ne.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,294,388,485,571,653,766,853,939,1005,1071,1148,1216", + "endColumns": "98,89,93,96,85,81,112,86,85,65,65,76,67,119", + "endOffsets": "199,289,383,480,566,648,761,848,934,1000,1066,1143,1211,1331" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,294,388,485,571,653,766,853,939,1005,1071,1249,1317", + "endColumns": "98,89,93,96,85,81,112,86,85,65,65,76,67,119", + "endOffsets": "199,289,383,480,566,648,761,848,934,1000,1066,1143,1312,1432" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ne\\values-ne.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1148", + "endColumns": "100", + "endOffsets": "1244" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nl.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nl.json new file mode 100644 index 0000000..2f0860e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nl.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-nl/values-nl.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-nl\\values-nl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1122", + "endColumns": "100", + "endOffsets": "1218" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-nl\\values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,280,377,476,561,637,739,826,915,980,1045,1122,1192", + "endColumns": "91,82,96,98,84,75,101,86,88,64,64,76,69,119", + "endOffsets": "192,275,372,471,556,632,734,821,910,975,1040,1117,1187,1307" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,197,280,377,476,561,637,739,826,915,980,1045,1223,1293", + "endColumns": "91,82,96,98,84,75,101,86,88,64,64,76,69,119", + "endOffsets": "192,275,372,471,556,632,734,821,910,975,1040,1117,1288,1408" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-or.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-or.json new file mode 100644 index 0000000..962b1cb --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-or.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-or/values-or.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-or\\values-or.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,289,381,481,567,644,755,843,930,1000,1070,1140,1207", + "endColumns": "96,86,91,99,85,76,110,87,86,69,69,69,66,118", + "endOffsets": "197,284,376,476,562,639,750,838,925,995,1065,1135,1202,1321" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,289,381,481,567,644,755,843,930,1000,1070,1241,1308", + "endColumns": "96,86,91,99,85,76,110,87,86,69,69,69,66,118", + "endOffsets": "197,284,376,476,562,639,750,838,925,995,1065,1135,1303,1422" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-or\\values-or.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1140", + "endColumns": "100", + "endOffsets": "1236" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pa.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pa.json new file mode 100644 index 0000000..e24fd70 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pa.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-pa/values-pa.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-pa\\values-pa.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1134", + "endColumns": "100", + "endOffsets": "1230" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-pa\\values-pa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,373,472,560,638,753,841,925,993,1062,1134,1200", + "endColumns": "92,82,91,98,87,77,114,87,83,67,68,71,65,117", + "endOffsets": "193,276,368,467,555,633,748,836,920,988,1057,1129,1195,1313" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,373,472,560,638,753,841,925,993,1062,1235,1301", + "endColumns": "92,82,91,98,87,77,114,87,83,67,68,71,65,117", + "endOffsets": "193,276,368,467,555,633,748,836,920,988,1057,1129,1296,1414" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pl.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pl.json new file mode 100644 index 0000000..8500600 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pl.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-pl/values-pl.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-pl\\values-pl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1150", + "endColumns": "100", + "endOffsets": "1246" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-pl\\values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,285,394,499,576,653,764,854,937,1008,1078,1150,1218", + "endColumns": "94,84,108,104,76,76,110,89,82,70,69,71,67,119", + "endOffsets": "195,280,389,494,571,648,759,849,932,1003,1073,1145,1213,1333" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,285,394,499,576,653,764,854,937,1008,1078,1251,1319", + "endColumns": "94,84,108,104,76,76,110,89,82,70,69,71,67,119", + "endOffsets": "195,280,389,494,571,648,759,849,932,1003,1073,1145,1314,1434" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rBR.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rBR.json new file mode 100644 index 0000000..467b26b --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rBR.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-pt-rBR/values-pt-rBR.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-pt-rBR\\values-pt-rBR.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1095", + "endColumns": "100", + "endOffsets": "1191" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-pt-rBR\\values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,236,333,432,518,601,700,791,878,950,1019,1095", + "endColumns": "94,85,96,98,85,82,98,90,86,71,68,75,66", + "endOffsets": "145,231,328,427,513,596,695,786,873,945,1014,1090,1157" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,236,333,432,518,601,700,791,878,950,1019,1196", + "endColumns": "94,85,96,98,85,82,98,90,86,71,68,75,66", + "endOffsets": "145,231,328,427,513,596,695,786,873,945,1014,1090,1258" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rPT.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rPT.json new file mode 100644 index 0000000..a795b64 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rPT.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-pt-rPT/values-pt-rPT.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-pt-rPT\\values-pt-rPT.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1146", + "endColumns": "100", + "endOffsets": "1242" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-pt-rPT\\values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,283,380,479,565,644,751,842,929,1001,1070,1146,1218", + "endColumns": "94,82,96,98,85,78,106,90,86,71,68,75,71,121", + "endOffsets": "195,278,375,474,560,639,746,837,924,996,1065,1141,1213,1335" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,283,380,479,565,644,751,842,929,1001,1070,1247,1319", + "endColumns": "94,82,96,98,85,78,106,90,86,71,68,75,71,121", + "endOffsets": "195,278,375,474,560,639,746,837,924,996,1065,1141,1314,1436" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt.json new file mode 100644 index 0000000..f2e12e3 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-pt/values-pt.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-pt\\values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,236,333,432,518,601,700,791,878,950,1019,1095", + "endColumns": "94,85,96,98,85,82,98,90,86,71,68,75,66", + "endOffsets": "145,231,328,427,513,596,695,786,873,945,1014,1090,1157" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,236,333,432,518,601,700,791,878,950,1019,1196", + "endColumns": "94,85,96,98,85,82,98,90,86,71,68,75,66", + "endOffsets": "145,231,328,427,513,596,695,786,873,945,1014,1090,1258" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-pt\\values-pt.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1095", + "endColumns": "100", + "endOffsets": "1191" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ro.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ro.json new file mode 100644 index 0000000..09ac71e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ro.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-ro/values-ro.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ro\\values-ro.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1091", + "endColumns": "100", + "endOffsets": "1187" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ro\\values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,154,240,337,439,527,605,704,795,877,949,1018,1091", + "endColumns": "98,85,96,101,87,77,98,90,81,71,68,72,66", + "endOffsets": "149,235,332,434,522,600,699,790,872,944,1013,1086,1153" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,154,240,337,439,527,605,704,795,877,949,1018,1192", + "endColumns": "98,85,96,101,87,77,98,90,81,71,68,72,66", + "endOffsets": "149,235,332,434,522,600,699,790,872,944,1013,1086,1254" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ru.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ru.json new file mode 100644 index 0000000..e7349f0 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ru.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-ru/values-ru.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ru\\values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,379,481,573,655,758,846,928,999,1069,1141,1211", + "endColumns": "92,82,97,101,91,81,102,87,81,70,69,71,69,122", + "endOffsets": "193,276,374,476,568,650,753,841,923,994,1064,1136,1206,1329" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,379,481,573,655,758,846,928,999,1069,1242,1312", + "endColumns": "92,82,97,101,91,81,102,87,81,70,69,71,69,122", + "endOffsets": "193,276,374,476,568,650,753,841,923,994,1064,1136,1307,1430" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ru\\values-ru.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1141", + "endColumns": "100", + "endOffsets": "1237" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-si.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-si.json new file mode 100644 index 0000000..7f7bd50 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-si.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-si/values-si.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-si\\values-si.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,194,277,376,475,557,642,760,846,926,1003,1078,1151,1218", + "endColumns": "88,82,98,98,81,84,117,85,79,76,74,72,66,117", + "endOffsets": "189,272,371,470,552,637,755,841,921,998,1073,1146,1213,1331" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,194,277,376,475,557,642,760,846,926,1003,1078,1252,1319", + "endColumns": "88,82,98,98,81,84,117,85,79,76,74,72,66,117", + "endOffsets": "189,272,371,470,552,637,755,841,921,998,1073,1146,1314,1432" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-si\\values-si.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1151", + "endColumns": "100", + "endOffsets": "1247" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sk.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sk.json new file mode 100644 index 0000000..a6520bd --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sk.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-sk/values-sk.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-sk\\values-sk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1090", + "endColumns": "100", + "endOffsets": "1186" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-sk\\values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,234,329,432,524,603,709,799,880,949,1018,1090", + "endColumns": "94,83,94,102,91,78,105,89,80,68,68,71,67", + "endOffsets": "145,229,324,427,519,598,704,794,875,944,1013,1085,1153" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,234,329,432,524,603,709,799,880,949,1018,1191", + "endColumns": "94,83,94,102,91,78,105,89,80,68,68,71,67", + "endOffsets": "145,229,324,427,519,598,704,794,875,944,1013,1085,1254" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sl.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sl.json new file mode 100644 index 0000000..7d6debc --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sl.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-sl/values-sl.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-sl\\values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,281,377,475,560,637,739,831,913,986,1058,1130,1200", + "endColumns": "94,80,95,97,84,76,101,91,81,72,71,71,69,120", + "endOffsets": "195,276,372,470,555,632,734,826,908,981,1053,1125,1195,1316" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,281,377,475,560,637,739,831,913,986,1058,1231,1301", + "endColumns": "94,80,95,97,84,76,101,91,81,72,71,71,69,120", + "endOffsets": "195,276,372,470,555,632,734,826,908,981,1053,1125,1296,1417" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-sl\\values-sl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1130", + "endColumns": "100", + "endOffsets": "1226" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sq.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sq.json new file mode 100644 index 0000000..a612dcb --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sq.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-sq/values-sq.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-sq\\values-sq.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,283,382,484,580,661,763,855,945,1014,1081,1154,1220", + "endColumns": "94,82,98,101,95,80,101,91,89,68,66,72,65,120", + "endOffsets": "195,278,377,479,575,656,758,850,940,1009,1076,1149,1215,1336" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,283,382,484,580,661,763,855,945,1014,1081,1255,1321", + "endColumns": "94,82,98,101,95,80,101,91,89,68,66,72,65,120", + "endOffsets": "195,278,377,479,575,656,758,850,940,1009,1076,1149,1316,1437" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-sq\\values-sq.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1154", + "endColumns": "100", + "endOffsets": "1250" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sr.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sr.json new file mode 100644 index 0000000..103a2bd --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sr.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-sr/values-sr.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-sr\\values-sr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1142", + "endColumns": "100", + "endOffsets": "1238" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-sr\\values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,289,386,487,573,650,751,843,928,999,1069,1142,1212", + "endColumns": "96,86,96,100,85,76,100,91,84,70,69,72,69,117", + "endOffsets": "197,284,381,482,568,645,746,838,923,994,1064,1137,1207,1325" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,289,386,487,573,650,751,843,928,999,1069,1243,1313", + "endColumns": "96,86,96,100,85,76,100,91,84,70,69,72,69,117", + "endOffsets": "197,284,381,482,568,645,746,838,923,994,1064,1137,1308,1426" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sv.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sv.json new file mode 100644 index 0000000..f8038d9 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sv.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-sv/values-sv.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-sv\\values-sv.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1117", + "endColumns": "100", + "endOffsets": "1213" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-sv\\values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,286,382,481,569,645,750,839,920,984,1048,1117,1184", + "endColumns": "92,87,95,98,87,75,104,88,80,63,63,68,66,119", + "endOffsets": "193,281,377,476,564,640,745,834,915,979,1043,1112,1179,1299" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,286,382,481,569,645,750,839,920,984,1048,1218,1285", + "endColumns": "92,87,95,98,87,75,104,88,80,63,63,68,66,119", + "endOffsets": "193,281,377,476,564,640,745,834,915,979,1043,1112,1280,1400" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw.json new file mode 100644 index 0000000..027033d --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-sw/values-sw.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-sw\\values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,280,381,482,568,649,754,845,927,997,1068,1142,1212", + "endColumns": "93,80,100,100,85,80,104,90,81,69,70,73,69,120", + "endOffsets": "194,275,376,477,563,644,749,840,922,992,1063,1137,1207,1328" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,199,280,381,482,568,649,754,845,927,997,1068,1243,1313", + "endColumns": "93,80,100,100,85,80,104,90,81,69,70,73,69,120", + "endOffsets": "194,275,376,477,563,644,749,840,922,992,1063,1137,1308,1429" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-sw\\values-sw.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1142", + "endColumns": "100", + "endOffsets": "1238" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ta.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ta.json new file mode 100644 index 0000000..ed7aaed --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ta.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-ta/values-ta.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ta\\values-ta.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,286,380,481,572,655,775,866,961,1041,1120,1210,1279", + "endColumns": "96,83,93,100,90,82,119,90,94,79,78,89,68,119", + "endOffsets": "197,281,375,476,567,650,770,861,956,1036,1115,1205,1274,1394" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,202,286,380,481,572,655,775,866,961,1041,1120,1311,1380", + "endColumns": "96,83,93,100,90,82,119,90,94,79,78,89,68,119", + "endOffsets": "197,281,375,476,567,650,770,861,956,1036,1115,1205,1375,1495" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ta\\values-ta.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1210", + "endColumns": "100", + "endOffsets": "1306" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-te.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-te.json new file mode 100644 index 0000000..8199094 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-te.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-te/values-te.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-te\\values-te.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,288,385,485,574,663,769,857,941,1014,1087,1164,1233", + "endColumns": "95,86,96,99,88,88,105,87,83,72,72,76,68,116", + "endOffsets": "196,283,380,480,569,658,764,852,936,1009,1082,1159,1228,1345" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,201,288,385,485,574,663,769,857,941,1014,1087,1265,1334", + "endColumns": "95,86,96,99,88,88,105,87,83,72,72,76,68,116", + "endOffsets": "196,283,380,480,569,658,764,852,936,1009,1082,1159,1329,1446" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-te\\values-te.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1164", + "endColumns": "100", + "endOffsets": "1260" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-th.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-th.json new file mode 100644 index 0000000..577bc8e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-th.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-th/values-th.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-th\\values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,191,268,365,466,554,639,741,827,910,975,1041,1114,1181", + "endColumns": "85,76,96,100,87,84,101,85,82,64,65,72,66,122", + "endOffsets": "186,263,360,461,549,634,736,822,905,970,1036,1109,1176,1299" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,191,268,365,466,554,639,741,827,910,975,1041,1215,1282", + "endColumns": "85,76,96,100,87,84,101,85,82,64,65,72,66,122", + "endOffsets": "186,263,360,461,549,634,736,822,905,970,1036,1109,1277,1400" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-th\\values-th.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1114", + "endColumns": "100", + "endOffsets": "1210" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tl.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tl.json new file mode 100644 index 0000000..4c4c91a --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tl.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-tl/values-tl.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-tl\\values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,290,387,489,579,661,764,856,940,1010,1079,1150,1216", + "endColumns": "98,85,96,101,89,81,102,91,83,69,68,70,65,126", + "endOffsets": "199,285,382,484,574,656,759,851,935,1005,1074,1145,1211,1338" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,290,387,489,579,661,764,856,940,1010,1079,1251,1317", + "endColumns": "98,85,96,101,89,81,102,91,83,69,68,70,65,126", + "endOffsets": "199,285,382,484,574,656,759,851,935,1005,1074,1145,1312,1439" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-tl\\values-tl.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1150", + "endColumns": "100", + "endOffsets": "1246" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tr.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tr.json new file mode 100644 index 0000000..f54fbac --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tr.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-tr/values-tr.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-tr\\values-tr.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1126", + "endColumns": "100", + "endOffsets": "1222" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-tr\\values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,377,477,561,644,749,837,921,989,1055,1126,1194", + "endColumns": "92,83,94,99,83,82,104,87,83,67,65,70,67,117", + "endOffsets": "193,277,372,472,556,639,744,832,916,984,1050,1121,1189,1307" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,377,477,561,644,749,837,921,989,1055,1227,1295", + "endColumns": "92,83,94,99,83,82,104,87,83,67,65,70,67,117", + "endOffsets": "193,277,372,472,556,639,744,832,916,984,1050,1121,1290,1408" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uk.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uk.json new file mode 100644 index 0000000..6e0f4e3 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uk.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-uk/values-uk.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-uk\\values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,384,485,569,651,759,847,929,999,1070,1142,1212", + "endColumns": "92,83,101,100,83,81,107,87,81,69,70,71,69,122", + "endOffsets": "193,277,379,480,564,646,754,842,924,994,1065,1137,1207,1330" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,282,384,485,569,651,759,847,929,999,1070,1243,1313", + "endColumns": "92,83,101,100,83,81,107,87,81,69,70,71,69,122", + "endOffsets": "193,277,379,480,564,646,754,842,924,994,1065,1137,1308,1431" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-uk\\values-uk.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1142", + "endColumns": "100", + "endOffsets": "1238" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ur.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ur.json new file mode 100644 index 0000000..a0f0dfa --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ur.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-ur/values-ur.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-ur\\values-ur.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,371,468,555,636,751,838,924,991,1058,1133,1199", + "endColumns": "92,82,89,96,86,80,114,86,85,66,66,74,65,116", + "endOffsets": "193,276,366,463,550,631,746,833,919,986,1053,1128,1194,1311" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,198,281,371,468,555,636,751,838,924,991,1058,1234,1300", + "endColumns": "92,82,89,96,86,80,114,86,85,66,66,74,65,116", + "endOffsets": "193,276,366,463,550,631,746,833,919,986,1053,1128,1295,1412" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-ur\\values-ur.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1133", + "endColumns": "100", + "endOffsets": "1229" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uz.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uz.json new file mode 100644 index 0000000..31cb538 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uz.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-uz/values-uz.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-uz\\values-uz.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1177", + "endColumns": "100", + "endOffsets": "1273" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-uz\\values-uz.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,289,393,500,596,679,792,885,968,1036,1103,1177,1245", + "endColumns": "98,84,103,106,95,82,112,92,82,67,66,73,67,116", + "endOffsets": "199,284,388,495,591,674,787,880,963,1031,1098,1172,1240,1357" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,204,289,393,500,596,679,792,885,968,1036,1103,1278,1346", + "endColumns": "98,84,103,106,95,82,112,92,82,67,66,73,67,116", + "endOffsets": "199,284,388,495,591,674,787,880,963,1031,1098,1172,1341,1458" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v16.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v16.json new file mode 100644 index 0000000..65d523f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v16.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-v16/values-v16.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-v16\\values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "65", + "endOffsets": "116" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v21.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v21.json new file mode 100644 index 0000000..a83fa5e --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v21.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-v21/values-v21.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\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,173,237,304,368,484,610,736,864,1036", + "endLines": "2,3,4,5,6,7,8,9,12,17", + "endColumns": "117,63,66,63,115,125,125,127,12,12", + "endOffsets": "168,232,299,363,479,605,731,859,1031,1383" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-vi.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-vi.json new file mode 100644 index 0000000..a603b59 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-vi.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-vi/values-vi.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-vi\\values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,151,237,343,443,535,620,730,824,905,975,1045,1117", + "endColumns": "95,85,105,99,91,84,109,93,80,69,69,71,65", + "endOffsets": "146,232,338,438,530,615,725,819,900,970,1040,1112,1178" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,151,237,343,443,535,620,730,824,905,975,1045,1218", + "endColumns": "95,85,105,99,91,84,109,93,80,69,69,71,65", + "endOffsets": "146,232,338,438,530,615,725,819,900,970,1040,1112,1279" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-vi\\values-vi.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1117", + "endColumns": "100", + "endOffsets": "1213" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rCN.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rCN.json new file mode 100644 index 0000000..30a59cb --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rCN.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-zh-rCN/values-zh-rCN.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-zh-rCN\\values-zh-rCN.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1021", + "endColumns": "100", + "endOffsets": "1117" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-zh-rCN\\values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,182,258,343,434,511,585,670,748,823,888,953,1021,1087", + "endColumns": "76,75,84,90,76,73,84,77,74,64,64,67,65,115", + "endOffsets": "177,253,338,429,506,580,665,743,818,883,948,1016,1082,1198" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,182,258,343,434,511,585,670,748,823,888,953,1122,1188", + "endColumns": "76,75,84,90,76,73,84,77,74,64,64,67,65,115", + "endOffsets": "177,253,338,429,506,580,665,743,818,883,948,1016,1183,1299" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rHK.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rHK.json new file mode 100644 index 0000000..f6be681 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rHK.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-zh-rHK/values-zh-rHK.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-zh-rHK\\values-zh-rHK.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1014", + "endColumns": "100", + "endOffsets": "1110" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-zh-rHK\\values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,181,255,343,434,512,586,669,747,821,884,947,1014,1079", + "endColumns": "75,73,87,90,77,73,82,77,73,62,62,66,64,115", + "endOffsets": "176,250,338,429,507,581,664,742,816,879,942,1009,1074,1190" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,181,255,343,434,512,586,669,747,821,884,947,1115,1180", + "endColumns": "75,73,87,90,77,73,82,77,73,62,62,66,64,115", + "endOffsets": "176,250,338,429,507,581,664,742,816,879,942,1009,1175,1291" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rTW.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rTW.json new file mode 100644 index 0000000..b416b74 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rTW.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-zh-rTW/values-zh-rTW.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-zh-rTW\\values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,182,258,345,436,514,588,672,750,825,890,955,1023,1091", + "endColumns": "76,75,86,90,77,73,83,77,74,64,64,67,67,115", + "endOffsets": "177,253,340,431,509,583,667,745,820,885,950,1018,1086,1202" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,182,258,345,436,514,588,672,750,825,890,955,1124,1192", + "endColumns": "76,75,86,90,77,73,83,77,74,64,64,67,67,115", + "endOffsets": "177,253,340,431,509,583,667,745,820,885,950,1018,1187,1303" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-zh-rTW\\values-zh-rTW.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1023", + "endColumns": "100", + "endOffsets": "1119" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zu.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zu.json new file mode 100644 index 0000000..667f77f --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zu.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values-zu/values-zu.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values-zu\\values-zu.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "100", + "endOffsets": "151" + }, + "to": { + "startLines": "14", + "startColumns": "4", + "startOffsets": "1158", + "endColumns": "100", + "endOffsets": "1254" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values-zu\\values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,282,387,492,582,664,770,863,946,1014,1082,1158,1228", + "endColumns": "94,81,104,104,89,81,105,92,82,67,67,75,69,123", + "endOffsets": "195,277,382,487,577,659,765,858,941,1009,1077,1153,1223,1347" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,15,16", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "105,200,282,387,492,582,664,770,863,946,1014,1082,1259,1329", + "endColumns": "94,81,104,104,89,81,105,92,82,67,67,75,69,123", + "endOffsets": "195,277,382,487,577,659,765,858,941,1009,1077,1153,1324,1448" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values.json b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values.json new file mode 100644 index 0000000..809f2b6 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values.json @@ -0,0 +1,316 @@ +{ + "logs": [ + { + "outputFile": "C:\\Users\\valen\\.gradle\\daemon\\7.4\\com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:\\values\\values.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\ae5b546ca0349d0bf7744393b38f6f9a\\transformed\\savedstate-1.1.0\\res\\values\\values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "53", + "endOffsets": "104" + }, + "to": { + "startLines": "95", + "startColumns": "4", + "startOffsets": "5665", + "endColumns": "53", + "endOffsets": "5714" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\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,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,89,90,94,95,96,97,104,114,162,194,231", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,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,115,187,275,344,407,477,545,617,687,748,822,895,956,1017,1079,1143,1205,1266,1334,1434,1494,1560,1633,1702,1759,1811,1873,1945,2021,3996,4031,4066,4121,4184,4239,4297,4355,4416,4479,4536,4587,4637,4698,4755,4821,4855,4890,4925,4995,5066,5183,5384,5494,5695,5824,5896,5963,6400,6859,10159,12224,13984", + "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,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,88,89,93,94,95,96,103,113,161,193,230,237", + "endColumns": "59,71,87,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,64,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", + "endOffsets": "110,182,270,339,402,472,540,612,682,743,817,890,951,1012,1074,1138,1200,1261,1329,1429,1489,1555,1628,1697,1754,1806,1868,1940,2016,2081,4026,4061,4116,4179,4234,4292,4350,4411,4474,4531,4582,4632,4693,4750,4816,4850,4885,4920,4990,5061,5178,5379,5489,5690,5819,5891,5958,6395,6854,10154,12219,13979,14356" + }, + "to": { + "startLines": "2,3,4,6,7,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,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,98,113,119,120,124,125,129,133,134,135,141,151,184,205,238", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,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,210,282,412,481,866,936,1004,1076,1146,1207,1281,1354,1415,1476,1538,1602,1664,1725,1793,1893,1953,2019,2092,2161,2218,2270,2332,2404,2480,4693,4728,4763,4818,4881,4936,4994,5052,5113,5176,5233,5284,5334,5395,5452,5518,5552,5587,5822,6738,7047,7164,7365,7475,7676,7988,8060,8127,8330,8631,10362,11043,11725", + "endLines": "2,3,4,6,7,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,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,98,113,119,123,124,128,129,133,134,140,150,183,204,237,243", + "endColumns": "59,71,87,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,64,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66,24,24,24,24,24,24", + "endOffsets": "205,277,365,476,539,931,999,1071,1141,1202,1276,1349,1410,1471,1533,1597,1659,1720,1788,1888,1948,2014,2087,2156,2213,2265,2327,2399,2475,2540,4723,4758,4813,4876,4931,4989,5047,5108,5171,5228,5279,5329,5390,5447,5513,5547,5582,5617,5887,6804,7159,7360,7470,7671,7800,8055,8122,8325,8626,10357,11038,11720,11887" + } + }, + { + "source": "D:\\Android\\LocalNetworkingAndroidApp\\app\\src\\main\\res\\values\\colors.xml", + "from": { + "startLines": "7,2,3,4,5,6,8", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "286,55,102,149,196,241,328", + "endColumns": "41,46,46,46,44,44,41", + "endOffsets": "323,97,144,191,236,281,365" + }, + "to": { + "startLines": "5,8,9,10,11,12,14", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "370,544,591,638,685,730,824", + "endColumns": "41,46,46,46,44,44,41", + "endOffsets": "407,586,633,680,725,770,861" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2c9a2ac417e45d5bc9fc76d7fb881e15\\transformed\\lifecycle-runtime-2.3.1\\res\\values\\values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "42", + "endOffsets": "93" + }, + "to": { + "startLines": "94", + "startColumns": "4", + "startOffsets": "5622", + "endColumns": "42", + "endOffsets": "5660" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\5785e2bd253743983765e138bae06908\\transformed\\startup-runtime-1.0.0\\res\\values\\values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "82", + "endOffsets": "133" + }, + "to": { + "startLines": "99", + "startColumns": "4", + "startOffsets": "5892", + "endColumns": "82", + "endOffsets": "5970" + } + }, + { + "source": "D:\\Android\\LocalNetworkingAndroidApp\\app\\src\\main\\res\\values\\strings.xml", + "from": { + "startLines": "1", + "startColumns": "4", + "startOffsets": "16", + "endColumns": "62", + "endOffsets": "74" + }, + "to": { + "startLines": "100", + "startColumns": "4", + "startOffsets": "5975", + "endColumns": "62", + "endOffsets": "6033" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2613d72639618055e5f0b853c3c1719f\\transformed\\lifecycle-viewmodel-2.3.1\\res\\values\\values.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "49", + "endOffsets": "100" + }, + "to": { + "startLines": "96", + "startColumns": "4", + "startOffsets": "5719", + "endColumns": "49", + "endOffsets": "5764" + } + }, + { + "source": "D:\\Android\\LocalNetworkingAndroidApp\\app\\src\\main\\res\\values\\themes.xml", + "from": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "56", + "endLines": "5", + "endColumns": "12", + "endOffsets": "234" + }, + "to": { + "startLines": "130", + "startColumns": "4", + "startOffsets": "7805", + "endLines": "132", + "endColumns": "12", + "endOffsets": "7983" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\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", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,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,199,258,317,377,437,497,557,617,677,737,797,857,917,976,1036,1096,1156,1216,1276,1336,1396,1456,1516,1576,1635,1695,1755,1814,1873,1932,1991,2050,2109,2183,2241,2292,2347,2400,2465,2519,2585,2686,2744,2796,2868,2930,2984,3020,3054,3100,3136,3226", + "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,56", + "endColumns": "48,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,73,57,50,54,52,64,53,65,100,57,51,71,61,53,35,33,45,35,89,12", + "endOffsets": "194,253,312,372,432,492,552,612,672,732,792,852,912,971,1031,1091,1151,1211,1271,1331,1391,1451,1511,1571,1630,1690,1750,1809,1868,1927,1986,2045,2104,2178,2236,2287,2342,2395,2460,2514,2580,2681,2739,2791,2863,2925,2979,3015,3049,3095,3131,3221,3333" + }, + "to": { + "startLines": "13,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,69,70,71,72,73,74,75,97,101,102,103,104,105,106,107,108,109,110,111,112,114,115,116", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "775,2545,2604,2663,2723,2783,2843,2903,2963,3023,3083,3143,3203,3263,3322,3382,3442,3502,3562,3622,3682,3742,3802,3862,3922,3981,4041,4101,4160,4219,4278,4337,4396,4455,4529,4587,4638,5769,6038,6103,6157,6223,6324,6382,6434,6506,6568,6622,6658,6692,6809,6845,6935", + "endLines": "13,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,69,70,71,72,73,74,75,97,101,102,103,104,105,106,107,108,109,110,111,112,114,115,118", + "endColumns": "48,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,73,57,50,54,52,64,53,65,100,57,51,71,61,53,35,33,45,35,89,12", + "endOffsets": "819,2599,2658,2718,2778,2838,2898,2958,3018,3078,3138,3198,3258,3317,3377,3437,3497,3557,3617,3677,3737,3797,3857,3917,3976,4036,4096,4155,4214,4273,4332,4391,4450,4524,4582,4633,4688,5817,6098,6152,6218,6319,6377,6429,6501,6563,6617,6653,6687,6733,6840,6930,7042" + } + } + ] + }, + { + "outputFile": "com.mobilegame.localnetworkingandroidapp-mergeDebugResources-33:/values/values.xml", + "map": [ + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\ae5b546ca0349d0bf7744393b38f6f9a\\transformed\\savedstate-1.1.0\\res\\values\\values.xml", + "from": { + "startLines": "-1", + "startColumns": "-1", + "startOffsets": "-1" + }, + "to": { + "startLines": "96", + "startColumns": "4", + "startOffsets": "5714", + "endColumns": "53", + "endOffsets": "5763" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2157ea49cdc3c5b2f06f3fe4a50dab4f\\transformed\\core-1.7.0\\res\\values\\values.xml", + "from": { + "startLines": "-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1", + "startColumns": "-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1", + "startOffsets": "-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1" + }, + "to": { + "startLines": "2,3,4,6,7,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,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,99,114,120,121,125,126,130,134,135", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,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,210,282,412,481,915,985,1053,1125,1195,1256,1330,1403,1464,1525,1587,1651,1713,1774,1842,1942,2002,2068,2141,2210,2267,2319,2381,2453,2529,4742,4777,4812,4867,4930,4985,5043,5101,5162,5225,5282,5333,5383,5444,5501,5567,5601,5636,5871,6787,7096,7213,7414,7524,7725,8039,8111", + "endLines": "2,3,4,6,7,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,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,99,114,120,124,125,129,130,134,135", + "endColumns": "59,71,87,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,64,34,34,54,62,54,57,57,60,62,56,50,49,60,56,65,33,34,34,69,70,116,12,109,12,128,71,66", + "endOffsets": "205,277,365,476,539,980,1048,1120,1190,1251,1325,1398,1459,1520,1582,1646,1708,1769,1837,1937,1997,2063,2136,2205,2262,2314,2376,2448,2524,2589,4772,4807,4862,4925,4980,5038,5096,5157,5220,5277,5328,5378,5439,5496,5562,5596,5631,5666,5936,6853,7208,7409,7519,7720,7849,8106,8173" + } + }, + { + "source": "D:\\Android\\LocalNetworkingAndroidApp\\app\\src\\main\\res\\values\\colors.xml", + "from": { + "startLines": "-1,8,-1,-1,-1,-1,-1,-1", + "startColumns": "-1,4,-1,-1,-1,-1,-1,-1", + "startOffsets": "-1,328,-1,-1,-1,-1,-1,-1", + "endColumns": "-1,48,-1,-1,-1,-1,-1,-1", + "endOffsets": "-1,372,-1,-1,-1,-1,-1,-1" + }, + "to": { + "startLines": "5,8,9,10,11,12,13,15", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "370,544,593,640,687,734,779,873", + "endColumns": "41,48,46,46,46,44,44,41", + "endOffsets": "407,588,635,682,729,774,819,910" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2c9a2ac417e45d5bc9fc76d7fb881e15\\transformed\\lifecycle-runtime-2.3.1\\res\\values\\values.xml", + "from": { + "startLines": "-1", + "startColumns": "-1", + "startOffsets": "-1" + }, + "to": { + "startLines": "95", + "startColumns": "4", + "startOffsets": "5671", + "endColumns": "42", + "endOffsets": "5709" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\5785e2bd253743983765e138bae06908\\transformed\\startup-runtime-1.0.0\\res\\values\\values.xml", + "from": { + "startLines": "-1", + "startColumns": "-1", + "startOffsets": "-1" + }, + "to": { + "startLines": "100", + "startColumns": "4", + "startOffsets": "5941", + "endColumns": "82", + "endOffsets": "6019" + } + }, + { + "source": "D:\\Android\\LocalNetworkingAndroidApp\\app\\src\\main\\res\\values\\strings.xml", + "from": { + "startLines": "-1", + "startColumns": "-1", + "startOffsets": "-1" + }, + "to": { + "startLines": "101", + "startColumns": "4", + "startOffsets": "6024", + "endColumns": "62", + "endOffsets": "6082" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\2613d72639618055e5f0b853c3c1719f\\transformed\\lifecycle-viewmodel-2.3.1\\res\\values\\values.xml", + "from": { + "startLines": "-1", + "startColumns": "-1", + "startOffsets": "-1" + }, + "to": { + "startLines": "97", + "startColumns": "4", + "startOffsets": "5768", + "endColumns": "49", + "endOffsets": "5813" + } + }, + { + "source": "D:\\Android\\LocalNetworkingAndroidApp\\app\\src\\main\\res\\values\\themes.xml", + "from": { + "startLines": "3", + "startColumns": "4", + "startOffsets": "56", + "endLines": "5", + "endColumns": "12", + "endOffsets": "236" + }, + "to": { + "startLines": "131", + "startColumns": "4", + "startOffsets": "7854", + "endLines": "133", + "endColumns": "12", + "endOffsets": "8034" + } + }, + { + "source": "C:\\Users\\valen\\.gradle\\caches\\transforms-3\\8d5d3970b916db844f7971374d92a7dd\\transformed\\ui-1.1.1\\res\\values\\values.xml", + "from": { + "startLines": "-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1", + "startColumns": "-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1", + "startOffsets": "-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1" + }, + "to": { + "startLines": "14,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,69,70,71,72,73,74,75,76,98,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "824,2594,2653,2712,2772,2832,2892,2952,3012,3072,3132,3192,3252,3312,3371,3431,3491,3551,3611,3671,3731,3791,3851,3911,3971,4030,4090,4150,4209,4268,4327,4386,4445,4504,4578,4636,4687,5818,6087,6152,6206,6272,6373,6431,6483,6555,6617,6671,6707,6741,6858,6894,6984", + "endLines": "14,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,69,70,71,72,73,74,75,76,98,102,103,104,105,106,107,108,109,110,111,112,113,115,116,119", + "endColumns": "48,58,58,59,59,59,59,59,59,59,59,59,59,58,59,59,59,59,59,59,59,59,59,59,58,59,59,58,58,58,58,58,58,73,57,50,54,52,64,53,65,100,57,51,71,61,53,35,33,45,35,89,12", + "endOffsets": "868,2648,2707,2767,2827,2887,2947,3007,3067,3127,3187,3247,3307,3366,3426,3486,3546,3606,3666,3726,3786,3846,3906,3966,4025,4085,4145,4204,4263,4322,4381,4440,4499,4573,4631,4682,4737,5866,6147,6201,6267,6368,6426,6478,6550,6612,6666,6702,6736,6782,6889,6979,7091" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/app/build/intermediates/merged_res_blame_folder/debug/out/single/debug.json b/app/build/intermediates/merged_res_blame_folder/debug/out/single/debug.json new file mode 100644 index 0000000..df18803 --- /dev/null +++ b/app/build/intermediates/merged_res_blame_folder/debug/out/single/debug.json @@ -0,0 +1,66 @@ +[ + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/mipmap-xxhdpi_ic_launcher_round.webp.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/mipmap-xxhdpi/ic_launcher_round.webp" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/mipmap-mdpi_ic_launcher_round.webp.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/mipmap-mdpi/ic_launcher_round.webp" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/mipmap-xxxhdpi_ic_launcher.webp.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/mipmap-xxxhdpi/ic_launcher.webp" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/xml_backup_rules.xml.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/xml/backup_rules.xml" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/xml_data_extraction_rules.xml.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/xml/data_extraction_rules.xml" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/mipmap-anydpi-v26_ic_launcher_round.xml.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/mipmap-anydpi-v26/ic_launcher_round.xml" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/mipmap-xhdpi_ic_launcher_round.webp.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/mipmap-xhdpi/ic_launcher_round.webp" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/mipmap-anydpi-v26_ic_launcher.xml.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/mipmap-anydpi-v26/ic_launcher.xml" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/mipmap-hdpi_ic_launcher_round.webp.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/mipmap-hdpi/ic_launcher_round.webp" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/mipmap-xxhdpi_ic_launcher.webp.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/mipmap-xxhdpi/ic_launcher.webp" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/drawable-v24_ic_launcher_foreground.xml.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/drawable-v24/ic_launcher_foreground.xml" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/mipmap-mdpi_ic_launcher.webp.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/mipmap-mdpi/ic_launcher.webp" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/mipmap-xxxhdpi_ic_launcher_round.webp.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/mipmap-xxxhdpi/ic_launcher_round.webp" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/mipmap-xhdpi_ic_launcher.webp.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/mipmap-xhdpi/ic_launcher.webp" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/drawable_ic_launcher_background.xml.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/drawable/ic_launcher_background.xml" + }, + { + "merged": "com.mobilegame.localnetworkingandroidapp-merged_res-35:/mipmap-hdpi_ic_launcher.webp.flat", + "source": "com.mobilegame.localnetworkingandroidapp-main-37:/mipmap-hdpi/ic_launcher.webp" + } +] \ No newline at end of file diff --git a/app/build/intermediates/navigation_json/debug/navigation.json b/app/build/intermediates/navigation_json/debug/navigation.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/app/build/intermediates/navigation_json/debug/navigation.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/app/build/intermediates/packaged_manifests/debug/AndroidManifest.xml b/app/build/intermediates/packaged_manifests/debug/AndroidManifest.xml new file mode 100644 index 0000000..626ebae --- /dev/null +++ b/app/build/intermediates/packaged_manifests/debug/AndroidManifest.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/packaged_manifests/debug/output-metadata.json b/app/build/intermediates/packaged_manifests/debug/output-metadata.json new file mode 100644 index 0000000..fcbe7a0 --- /dev/null +++ b/app/build/intermediates/packaged_manifests/debug/output-metadata.json @@ -0,0 +1,20 @@ +{ + "version": 3, + "artifactType": { + "type": "PACKAGED_MANIFESTS", + "kind": "Directory" + }, + "applicationId": "com.mobilegame.localnetworkingandroidapp", + "variantName": "debug", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0", + "outputFile": "AndroidManifest.xml" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/build/intermediates/packaged_res/debug/drawable-v24/ic_launcher_foreground.xml b/app/build/intermediates/packaged_res/debug/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/packaged_res/debug/drawable/ic_launcher_background.xml b/app/build/intermediates/packaged_res/debug/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/build/intermediates/packaged_res/debug/mipmap-anydpi-v26/ic_launcher.xml b/app/build/intermediates/packaged_res/debug/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/app/build/intermediates/packaged_res/debug/mipmap-anydpi-v26/ic_launcher_round.xml b/app/build/intermediates/packaged_res/debug/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..eca70cf --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/app/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/ic_launcher.webp b/app/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/ic_launcher.webp new file mode 100644 index 0000000..c209e78 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/ic_launcher.webp differ diff --git a/app/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/ic_launcher_round.webp b/app/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/ic_launcher_round.webp new file mode 100644 index 0000000..b2dfe3d Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/mipmap-hdpi-v4/ic_launcher_round.webp differ diff --git a/app/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/ic_launcher.webp b/app/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/ic_launcher.webp new file mode 100644 index 0000000..4f0f1d6 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/ic_launcher.webp differ diff --git a/app/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/ic_launcher_round.webp b/app/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/ic_launcher_round.webp new file mode 100644 index 0000000..62b611d Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/ic_launcher_round.webp differ diff --git a/app/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/ic_launcher.webp b/app/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/ic_launcher.webp new file mode 100644 index 0000000..948a307 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/ic_launcher.webp differ diff --git a/app/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/ic_launcher_round.webp b/app/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/ic_launcher_round.webp new file mode 100644 index 0000000..1b9a695 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/ic_launcher_round.webp differ diff --git a/app/build/intermediates/packaged_res/debug/mipmap-xxhdpi-v4/ic_launcher.webp b/app/build/intermediates/packaged_res/debug/mipmap-xxhdpi-v4/ic_launcher.webp new file mode 100644 index 0000000..28d4b77 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/mipmap-xxhdpi-v4/ic_launcher.webp differ diff --git a/app/build/intermediates/packaged_res/debug/mipmap-xxhdpi-v4/ic_launcher_round.webp b/app/build/intermediates/packaged_res/debug/mipmap-xxhdpi-v4/ic_launcher_round.webp new file mode 100644 index 0000000..9287f50 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/mipmap-xxhdpi-v4/ic_launcher_round.webp differ diff --git a/app/build/intermediates/packaged_res/debug/mipmap-xxxhdpi-v4/ic_launcher.webp b/app/build/intermediates/packaged_res/debug/mipmap-xxxhdpi-v4/ic_launcher.webp new file mode 100644 index 0000000..aa7d642 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/mipmap-xxxhdpi-v4/ic_launcher.webp differ diff --git a/app/build/intermediates/packaged_res/debug/mipmap-xxxhdpi-v4/ic_launcher_round.webp b/app/build/intermediates/packaged_res/debug/mipmap-xxxhdpi-v4/ic_launcher_round.webp new file mode 100644 index 0000000..9126ae3 Binary files /dev/null and b/app/build/intermediates/packaged_res/debug/mipmap-xxxhdpi-v4/ic_launcher_round.webp differ diff --git a/app/build/intermediates/packaged_res/debug/values/values.xml b/app/build/intermediates/packaged_res/debug/values/values.xml new file mode 100644 index 0000000..edd4ae2 --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/values/values.xml @@ -0,0 +1,15 @@ + + + #FF000000 + #FF03324A + #FFBB86FC + #FF6200EE + #FF3700B3 + #FF03DAC5 + #FF018786 + #FFFFFFFF + LocalNetworkingAndroidApp + + \ No newline at end of file diff --git a/app/build/intermediates/packaged_res/debug/xml/backup_rules.xml b/app/build/intermediates/packaged_res/debug/xml/backup_rules.xml new file mode 100644 index 0000000..fa0f996 --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/xml/backup_rules.xml @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/app/build/intermediates/packaged_res/debug/xml/data_extraction_rules.xml b/app/build/intermediates/packaged_res/debug/xml/data_extraction_rules.xml new file mode 100644 index 0000000..9ee9997 --- /dev/null +++ b/app/build/intermediates/packaged_res/debug/xml/data_extraction_rules.xml @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/processed_res/debug/out/output-metadata.json b/app/build/intermediates/processed_res/debug/out/output-metadata.json new file mode 100644 index 0000000..31bbaa5 --- /dev/null +++ b/app/build/intermediates/processed_res/debug/out/output-metadata.json @@ -0,0 +1,20 @@ +{ + "version": 3, + "artifactType": { + "type": "PROCESSED_RES", + "kind": "Directory" + }, + "applicationId": "com.mobilegame.localnetworkingandroidapp", + "variantName": "debug", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "versionCode": 1, + "versionName": "1.0", + "outputFile": "resources-debug.ap_" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ b/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ new file mode 100644 index 0000000..600c28c Binary files /dev/null and b/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/Client.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/Client.dex new file mode 100644 index 0000000..c3b0fdc Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/Client.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/LiveLiterals$ClientKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/LiveLiterals$ClientKt.dex new file mode 100644 index 0000000..1af434d Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/LiveLiterals$ClientKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/LiveLiterals$MessageKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/LiveLiterals$MessageKt.dex new file mode 100644 index 0000000..36cec3a Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/LiveLiterals$MessageKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/Message$Companion.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/Message$Companion.dex new file mode 100644 index 0000000..50c496b Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/Message$Companion.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/Message.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/Message.dex new file mode 100644 index 0000000..791c0b6 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/Message.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelService$Companion.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelService$Companion.dex new file mode 100644 index 0000000..9400956 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelService$Companion.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelService.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelService.dex new file mode 100644 index 0000000..6479490 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelService.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelToServerImplementation$open$2.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelToServerImplementation$open$2.dex new file mode 100644 index 0000000..000d66d Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelToServerImplementation$open$2.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelToServerImplementation$read$2.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelToServerImplementation$read$2.dex new file mode 100644 index 0000000..83a1079 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelToServerImplementation$read$2.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelToServerImplementation.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelToServerImplementation.dex new file mode 100644 index 0000000..78a1a85 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/ChannelToServerImplementation.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/LiveLiterals$ChannelToServerImplementationKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/LiveLiterals$ChannelToServerImplementationKt.dex new file mode 100644 index 0000000..3c17312 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/data/channel/LiveLiterals$ChannelToServerImplementationKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/ConnectionViewModel$start$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/ConnectionViewModel$start$1.dex new file mode 100644 index 0000000..535e909 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/ConnectionViewModel$start$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/ConnectionViewModel.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/ConnectionViewModel.dex new file mode 100644 index 0000000..bdf5e56 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/ConnectionViewModel.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/Listeners$getResolveListener$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/Listeners$getResolveListener$1.dex new file mode 100644 index 0000000..27ca490 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/Listeners$getResolveListener$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/Listeners$registrationListener$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/Listeners$registrationListener$1.dex new file mode 100644 index 0000000..c9baef7 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/Listeners$registrationListener$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/Listeners.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/Listeners.dex new file mode 100644 index 0000000..f5720ff Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/Listeners.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$ConnectionViewModelKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$ConnectionViewModelKt.dex new file mode 100644 index 0000000..136e09a Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$ConnectionViewModelKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$ListenersKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$ListenersKt.dex new file mode 100644 index 0000000..2725d2a Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$ListenersKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$NamesKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$NamesKt.dex new file mode 100644 index 0000000..7f4f17d Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$NamesKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$ScreenViewModelKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$ScreenViewModelKt.dex new file mode 100644 index 0000000..185813a Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$ScreenViewModelKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$WifiConnectionStateKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$WifiConnectionStateKt.dex new file mode 100644 index 0000000..5d2c9f9 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/LiveLiterals$WifiConnectionStateKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/Names.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/Names.dex new file mode 100644 index 0000000..adf56ff Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/Names.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/ScreenViewModel.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/ScreenViewModel.dex new file mode 100644 index 0000000..1b4f068 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/ScreenViewModel.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/WifiConnectionState.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/WifiConnectionState.dex new file mode 100644 index 0000000..aec6a7f Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/model/WifiConnectionState.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/IdProvider.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/IdProvider.dex new file mode 100644 index 0000000..e162176 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/IdProvider.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$1.dex new file mode 100644 index 0000000..4df31c2 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$2.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$2.dex new file mode 100644 index 0000000..c15d655 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$2.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$3.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$3.dex new file mode 100644 index 0000000..2b7b92b Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$3.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$4.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$4.dex new file mode 100644 index 0000000..44c5089 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$4.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$5.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$5.dex new file mode 100644 index 0000000..f7f3307 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$5.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$6.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$6.dex new file mode 100644 index 0000000..00fa42e Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$6.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$7.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$7.dex new file mode 100644 index 0000000..9e41615 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1$7.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1.dex new file mode 100644 index 0000000..2cba8f7 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt$getScreenLayoutConstraints$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt.dex new file mode 100644 index 0000000..f1e7e17 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraintsKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LiveLiterals$IdProviderKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LiveLiterals$IdProviderKt.dex new file mode 100644 index 0000000..1d513f3 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LiveLiterals$IdProviderKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LiveLiterals$LayoutConstraintsKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LiveLiterals$LayoutConstraintsKt.dex new file mode 100644 index 0000000..3107a4c Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LiveLiterals$LayoutConstraintsKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LiveLiterals$ScreenKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LiveLiterals$ScreenKt.dex new file mode 100644 index 0000000..39ad9af Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/LiveLiterals$ScreenKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/ScreenKt$Screen$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/ScreenKt$Screen$1.dex new file mode 100644 index 0000000..ef73036 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/ScreenKt$Screen$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/ScreenKt$Screen$2.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/ScreenKt$Screen$2.dex new file mode 100644 index 0000000..9898ab2 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/ScreenKt$Screen$2.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/ScreenKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/ScreenKt.dex new file mode 100644 index 0000000..525e6d9 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/screen/ScreenKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$1.dex new file mode 100644 index 0000000..eb69974 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$10.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$10.dex new file mode 100644 index 0000000..1f747b1 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$10.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$2.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$2.dex new file mode 100644 index 0000000..b18865c Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$2.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$3.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$3.dex new file mode 100644 index 0000000..5d1b7ce Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$3.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$4.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$4.dex new file mode 100644 index 0000000..cd5adad Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$4.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$5.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$5.dex new file mode 100644 index 0000000..6733407 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$5.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$6.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$6.dex new file mode 100644 index 0000000..5d83edc Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$6.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$7.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$7.dex new file mode 100644 index 0000000..ccab40b Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$7.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$8.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$8.dex new file mode 100644 index 0000000..61836cf Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$8.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$9.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$9.dex new file mode 100644 index 0000000..c78c3cf Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$$inlined$ConstraintLayout$9.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$1.dex new file mode 100644 index 0000000..30f4e90 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$2.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$2.dex new file mode 100644 index 0000000..7fd6518 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$Center$2.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$CenterComposable$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$CenterComposable$1.dex new file mode 100644 index 0000000..497b43d Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$CenterComposable$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$getCenterConstraintSet$1$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$getCenterConstraintSet$1$1.dex new file mode 100644 index 0000000..0831fcc Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$getCenterConstraintSet$1$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$getCenterConstraintSet$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$getCenterConstraintSet$1.dex new file mode 100644 index 0000000..99cf1a6 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt$getCenterConstraintSet$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt.dex new file mode 100644 index 0000000..5212c91 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterType.dex b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterType.dex new file mode 100644 index 0000000..c10606d Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/example/localnetworkingandroidapp/ui/theme/CenterType.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/BuildConfig.dex b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/BuildConfig.dex new file mode 100644 index 0000000..e90ed50 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/BuildConfig.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ComposableSingletons$MainActivityKt$lambda-1$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ComposableSingletons$MainActivityKt$lambda-1$1.dex new file mode 100644 index 0000000..269d030 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ComposableSingletons$MainActivityKt$lambda-1$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ComposableSingletons$MainActivityKt$lambda-2$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ComposableSingletons$MainActivityKt$lambda-2$1.dex new file mode 100644 index 0000000..863204a Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ComposableSingletons$MainActivityKt$lambda-2$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ComposableSingletons$MainActivityKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ComposableSingletons$MainActivityKt.dex new file mode 100644 index 0000000..df0c1f6 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ComposableSingletons$MainActivityKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/LiveLiterals$MainActivityKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/LiveLiterals$MainActivityKt.dex new file mode 100644 index 0000000..0de7646 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/LiveLiterals$MainActivityKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/MainActivity.dex b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/MainActivity.dex new file mode 100644 index 0000000..e93a315 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/MainActivity.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ui/theme/ColorKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ui/theme/ColorKt.dex new file mode 100644 index 0000000..e2ee839 Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ui/theme/ColorKt.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ui/theme/ThemeKt$LocalNetworkingAndroidAppTheme$1.dex b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ui/theme/ThemeKt$LocalNetworkingAndroidAppTheme$1.dex new file mode 100644 index 0000000..97c3ecd Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ui/theme/ThemeKt$LocalNetworkingAndroidAppTheme$1.dex differ diff --git a/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ui/theme/ThemeKt.dex b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ui/theme/ThemeKt.dex new file mode 100644 index 0000000..826f78c Binary files /dev/null and b/app/build/intermediates/project_dex_archive/debug/out/com/mobilegame/localnetworkingandroidapp/ui/theme/ThemeKt.dex differ diff --git a/app/build/intermediates/runtime_symbol_list/debug/R.txt b/app/build/intermediates/runtime_symbol_list/debug/R.txt new file mode 100644 index 0000000..262626f --- /dev/null +++ b/app/build/intermediates/runtime_symbol_list/debug/R.txt @@ -0,0 +1,236 @@ +int attr alpha 0x7f010000 +int attr font 0x7f010001 +int attr fontProviderAuthority 0x7f010002 +int attr fontProviderCerts 0x7f010003 +int attr fontProviderFetchStrategy 0x7f010004 +int attr fontProviderFetchTimeout 0x7f010005 +int attr fontProviderPackage 0x7f010006 +int attr fontProviderQuery 0x7f010007 +int attr fontProviderSystemFontFamily 0x7f010008 +int attr fontStyle 0x7f010009 +int attr fontVariationSettings 0x7f01000a +int attr fontWeight 0x7f01000b +int attr lStar 0x7f01000c +int attr nestedScrollViewStyle 0x7f01000d +int attr queryPatterns 0x7f01000e +int attr shortcutMatchRequired 0x7f01000f +int attr ttcIndex 0x7f010010 +int color androidx_core_ripple_material_light 0x7f020000 +int color androidx_core_secondary_text_default_material_light 0x7f020001 +int color black 0x7f020002 +int color notification_action_color_filter 0x7f020003 +int color notification_icon_bg_color 0x7f020004 +int color prussianBlue 0x7f020005 +int color purple_200 0x7f020006 +int color purple_500 0x7f020007 +int color purple_700 0x7f020008 +int color teal_200 0x7f020009 +int color teal_700 0x7f02000a +int color triangle_color 0x7f02000b +int color vector_tint_color 0x7f02000c +int color vector_tint_theme_color 0x7f02000d +int color white 0x7f02000e +int dimen compat_button_inset_horizontal_material 0x7f030000 +int dimen compat_button_inset_vertical_material 0x7f030001 +int dimen compat_button_padding_horizontal_material 0x7f030002 +int dimen compat_button_padding_vertical_material 0x7f030003 +int dimen compat_control_corner_material 0x7f030004 +int dimen compat_notification_large_icon_max_height 0x7f030005 +int dimen compat_notification_large_icon_max_width 0x7f030006 +int dimen notification_action_icon_size 0x7f030007 +int dimen notification_action_text_size 0x7f030008 +int dimen notification_big_circle_margin 0x7f030009 +int dimen notification_content_margin_start 0x7f03000a +int dimen notification_large_icon_height 0x7f03000b +int dimen notification_large_icon_width 0x7f03000c +int dimen notification_main_column_padding_top 0x7f03000d +int dimen notification_media_narrow_margin 0x7f03000e +int dimen notification_right_icon_size 0x7f03000f +int dimen notification_right_side_padding_top 0x7f030010 +int dimen notification_small_icon_background_padding 0x7f030011 +int dimen notification_small_icon_size_as_large 0x7f030012 +int dimen notification_subtext_size 0x7f030013 +int dimen notification_top_pad 0x7f030014 +int dimen notification_top_pad_large_text 0x7f030015 +int drawable ic_launcher_background 0x7f040001 +int drawable ic_launcher_foreground 0x7f040002 +int drawable notification_action_background 0x7f040003 +int drawable notification_bg 0x7f040004 +int drawable notification_bg_low 0x7f040005 +int drawable notification_bg_low_normal 0x7f040006 +int drawable notification_bg_low_pressed 0x7f040007 +int drawable notification_bg_normal 0x7f040008 +int drawable notification_bg_normal_pressed 0x7f040009 +int drawable notification_icon_background 0x7f04000a +int drawable notification_template_icon_bg 0x7f04000b +int drawable notification_template_icon_low_bg 0x7f04000c +int drawable notification_tile_bg 0x7f04000d +int drawable notify_panel_notification_icon_bg 0x7f04000e +int id accessibility_action_clickable_span 0x7f050000 +int id accessibility_custom_action_0 0x7f050001 +int id accessibility_custom_action_1 0x7f050002 +int id accessibility_custom_action_10 0x7f050003 +int id accessibility_custom_action_11 0x7f050004 +int id accessibility_custom_action_12 0x7f050005 +int id accessibility_custom_action_13 0x7f050006 +int id accessibility_custom_action_14 0x7f050007 +int id accessibility_custom_action_15 0x7f050008 +int id accessibility_custom_action_16 0x7f050009 +int id accessibility_custom_action_17 0x7f05000a +int id accessibility_custom_action_18 0x7f05000b +int id accessibility_custom_action_19 0x7f05000c +int id accessibility_custom_action_2 0x7f05000d +int id accessibility_custom_action_20 0x7f05000e +int id accessibility_custom_action_21 0x7f05000f +int id accessibility_custom_action_22 0x7f050010 +int id accessibility_custom_action_23 0x7f050011 +int id accessibility_custom_action_24 0x7f050012 +int id accessibility_custom_action_25 0x7f050013 +int id accessibility_custom_action_26 0x7f050014 +int id accessibility_custom_action_27 0x7f050015 +int id accessibility_custom_action_28 0x7f050016 +int id accessibility_custom_action_29 0x7f050017 +int id accessibility_custom_action_3 0x7f050018 +int id accessibility_custom_action_30 0x7f050019 +int id accessibility_custom_action_31 0x7f05001a +int id accessibility_custom_action_4 0x7f05001b +int id accessibility_custom_action_5 0x7f05001c +int id accessibility_custom_action_6 0x7f05001d +int id accessibility_custom_action_7 0x7f05001e +int id accessibility_custom_action_8 0x7f05001f +int id accessibility_custom_action_9 0x7f050020 +int id action_container 0x7f050021 +int id action_divider 0x7f050022 +int id action_image 0x7f050023 +int id action_text 0x7f050024 +int id actions 0x7f050025 +int id androidx_compose_ui_view_composition_context 0x7f050026 +int id async 0x7f050027 +int id blocking 0x7f050028 +int id chronometer 0x7f050029 +int id compose_view_saveable_id_tag 0x7f05002a +int id dialog_button 0x7f05002b +int id forever 0x7f05002c +int id hide_in_inspector_tag 0x7f05002d +int id icon 0x7f05002e +int id icon_group 0x7f05002f +int id info 0x7f050030 +int id inspection_slot_table_set 0x7f050031 +int id italic 0x7f050032 +int id item1 0x7f050033 +int id item2 0x7f050034 +int id item3 0x7f050035 +int id item4 0x7f050036 +int id line1 0x7f050037 +int id line3 0x7f050038 +int id normal 0x7f050039 +int id notification_background 0x7f05003a +int id notification_main_column 0x7f05003b +int id notification_main_column_container 0x7f05003c +int id right_icon 0x7f05003d +int id right_side 0x7f05003e +int id tag_accessibility_actions 0x7f05003f +int id tag_accessibility_clickable_spans 0x7f050040 +int id tag_accessibility_heading 0x7f050041 +int id tag_accessibility_pane_title 0x7f050042 +int id tag_on_apply_window_listener 0x7f050043 +int id tag_on_receive_content_listener 0x7f050044 +int id tag_on_receive_content_mime_types 0x7f050045 +int id tag_screen_reader_focusable 0x7f050046 +int id tag_state_description 0x7f050047 +int id tag_transition_group 0x7f050048 +int id tag_unhandled_key_event_manager 0x7f050049 +int id tag_unhandled_key_listeners 0x7f05004a +int id tag_window_insets_animation_callback 0x7f05004b +int id text 0x7f05004c +int id text2 0x7f05004d +int id time 0x7f05004e +int id title 0x7f05004f +int id view_tree_lifecycle_owner 0x7f050050 +int id view_tree_saved_state_registry_owner 0x7f050051 +int id view_tree_view_model_store_owner 0x7f050052 +int id wrapped_composition_tag 0x7f050053 +int integer status_bar_notification_info_maxnum 0x7f060000 +int layout custom_dialog 0x7f070000 +int layout notification_action 0x7f070001 +int layout notification_action_tombstone 0x7f070002 +int layout notification_template_custom_big 0x7f070003 +int layout notification_template_icon_group 0x7f070004 +int layout notification_template_part_chronometer 0x7f070005 +int layout notification_template_part_time 0x7f070006 +int menu example_menu 0x7f080000 +int menu example_menu2 0x7f080001 +int mipmap ic_launcher 0x7f090000 +int mipmap ic_launcher_round 0x7f090001 +int string androidx_startup 0x7f0a0000 +int string app_name 0x7f0a0001 +int string close_drawer 0x7f0a0002 +int string close_sheet 0x7f0a0003 +int string default_error_message 0x7f0a0004 +int string default_popup_window_title 0x7f0a0005 +int string dropdown_menu 0x7f0a0006 +int string in_progress 0x7f0a0007 +int string indeterminate 0x7f0a0008 +int string navigation_menu 0x7f0a0009 +int string not_selected 0x7f0a000a +int string off 0x7f0a000b +int string on 0x7f0a000c +int string selected 0x7f0a000d +int string status_bar_notification_info_overflow 0x7f0a000e +int string tab 0x7f0a000f +int string template_percent 0x7f0a0010 +int style DialogWindowTheme 0x7f0b0000 +int style TextAppearance_Compat_Notification 0x7f0b0001 +int style TextAppearance_Compat_Notification_Info 0x7f0b0002 +int style TextAppearance_Compat_Notification_Line2 0x7f0b0003 +int style TextAppearance_Compat_Notification_Time 0x7f0b0004 +int style TextAppearance_Compat_Notification_Title 0x7f0b0005 +int style Theme_LocalNetworkingAndroidApp 0x7f0b0006 +int style Widget_Compat_NotificationActionContainer 0x7f0b0007 +int style Widget_Compat_NotificationActionText 0x7f0b0008 +int[] styleable Capability { 0x7f01000e, 0x7f01000f } +int styleable Capability_queryPatterns 0 +int styleable Capability_shortcutMatchRequired 1 +int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x01010647, 0x7f010000, 0x7f01000c } +int styleable ColorStateListItem_android_color 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_lStar 2 +int styleable ColorStateListItem_alpha 3 +int styleable ColorStateListItem_lStar 4 +int[] styleable FontFamily { 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008 } +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 FontFamily_fontProviderSystemFontFamily 6 +int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f010001, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f010010 } +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 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 xml backup_rules 0x7f0d0000 +int xml data_extraction_rules 0x7f0d0001 diff --git a/app/build/intermediates/signing_config_versions/debug/signing-config-versions.json b/app/build/intermediates/signing_config_versions/debug/signing-config-versions.json new file mode 100644 index 0000000..51f6368 --- /dev/null +++ b/app/build/intermediates/signing_config_versions/debug/signing-config-versions.json @@ -0,0 +1 @@ +{"enableV1Signing":false,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false} \ No newline at end of file diff --git a/app/build/intermediates/source_set_path_map/debug/file-map.txt b/app/build/intermediates/source_set_path_map/debug/file-map.txt new file mode 100644 index 0000000..13292cb --- /dev/null +++ b/app/build/intermediates/source_set_path_map/debug/file-map.txt @@ -0,0 +1,37 @@ +com.mobilegame.localnetworkingandroidapp-ui-text-1.1.1-0 C:\Users\valen\.gradle\caches\transforms-3\0d0950755274b8728f8d9f8ef67fd826\transformed\ui-text-1.1.1\res +com.mobilegame.localnetworkingandroidapp-foundation-layout-1.1.1-1 C:\Users\valen\.gradle\caches\transforms-3\10690f766aecb34f4db1b7ffc9d7abe2\transformed\foundation-layout-1.1.1\res +com.mobilegame.localnetworkingandroidapp-activity-ktx-1.3.1-2 C:\Users\valen\.gradle\caches\transforms-3\108688d8cf63671fff5fca90f422510d\transformed\activity-ktx-1.3.1\res +com.mobilegame.localnetworkingandroidapp-core-1.7.0-3 C:\Users\valen\.gradle\caches\transforms-3\2157ea49cdc3c5b2f06f3fe4a50dab4f\transformed\core-1.7.0\res +com.mobilegame.localnetworkingandroidapp-lifecycle-viewmodel-2.3.1-4 C:\Users\valen\.gradle\caches\transforms-3\2613d72639618055e5f0b853c3c1719f\transformed\lifecycle-viewmodel-2.3.1\res +com.mobilegame.localnetworkingandroidapp-ui-unit-1.1.1-5 C:\Users\valen\.gradle\caches\transforms-3\26e34e1a4fdbc25fb009f28ed1d880d6\transformed\ui-unit-1.1.1\res +com.mobilegame.localnetworkingandroidapp-lifecycle-runtime-2.3.1-6 C:\Users\valen\.gradle\caches\transforms-3\2c9a2ac417e45d5bc9fc76d7fb881e15\transformed\lifecycle-runtime-2.3.1\res +com.mobilegame.localnetworkingandroidapp-runtime-1.1.1-7 C:\Users\valen\.gradle\caches\transforms-3\3aaa19288c59fcfd724855661ccdd19b\transformed\runtime-1.1.1\res +com.mobilegame.localnetworkingandroidapp-activity-1.3.1-8 C:\Users\valen\.gradle\caches\transforms-3\488ead131b67bbe3391fa97bfb5124ba\transformed\activity-1.3.1\res +com.mobilegame.localnetworkingandroidapp-core-ktx-1.7.0-9 C:\Users\valen\.gradle\caches\transforms-3\4d877244f8c056067c62fad963486826\transformed\core-ktx-1.7.0\res +com.mobilegame.localnetworkingandroidapp-ui-tooling-1.1.1-10 C:\Users\valen\.gradle\caches\transforms-3\5203297084e57ffb9f94571a20ff8f2b\transformed\ui-tooling-1.1.1\res +com.mobilegame.localnetworkingandroidapp-startup-runtime-1.0.0-11 C:\Users\valen\.gradle\caches\transforms-3\5785e2bd253743983765e138bae06908\transformed\startup-runtime-1.0.0\res +com.mobilegame.localnetworkingandroidapp-annotation-experimental-1.1.0-12 C:\Users\valen\.gradle\caches\transforms-3\601b00035553dc5cd715343410d12688\transformed\annotation-experimental-1.1.0\res +com.mobilegame.localnetworkingandroidapp-ui-graphics-1.1.1-13 C:\Users\valen\.gradle\caches\transforms-3\6c526ed638f8774e7c83743f512dea51\transformed\ui-graphics-1.1.1\res +com.mobilegame.localnetworkingandroidapp-ui-geometry-1.1.1-14 C:\Users\valen\.gradle\caches\transforms-3\70ca708149986c857388c5c72ee8fca9\transformed\ui-geometry-1.1.1\res +com.mobilegame.localnetworkingandroidapp-ui-util-1.1.1-15 C:\Users\valen\.gradle\caches\transforms-3\7320b5f1aa7bda8cd2d959fb2da9102e\transformed\ui-util-1.1.1\res +com.mobilegame.localnetworkingandroidapp-animation-core-1.1.1-16 C:\Users\valen\.gradle\caches\transforms-3\747cdcadf9a3afd7f15d0174c9cd29db\transformed\animation-core-1.1.1\res +com.mobilegame.localnetworkingandroidapp-ui-1.1.1-17 C:\Users\valen\.gradle\caches\transforms-3\8d5d3970b916db844f7971374d92a7dd\transformed\ui-1.1.1\res +com.mobilegame.localnetworkingandroidapp-ui-tooling-data-1.1.1-18 C:\Users\valen\.gradle\caches\transforms-3\9427fe581474d73c67e9867c0c3f92b3\transformed\ui-tooling-data-1.1.1\res +com.mobilegame.localnetworkingandroidapp-profileinstaller-1.1.0-19 C:\Users\valen\.gradle\caches\transforms-3\a1e7f5a712ef2321f6d771302bda0d55\transformed\profileinstaller-1.1.0\res +com.mobilegame.localnetworkingandroidapp-savedstate-1.1.0-20 C:\Users\valen\.gradle\caches\transforms-3\ae5b546ca0349d0bf7744393b38f6f9a\transformed\savedstate-1.1.0\res +com.mobilegame.localnetworkingandroidapp-animation-1.1.1-21 C:\Users\valen\.gradle\caches\transforms-3\b0b1a86dbe094ea7a3155f805219b814\transformed\animation-1.1.1\res +com.mobilegame.localnetworkingandroidapp-ui-test-manifest-1.1.1-22 C:\Users\valen\.gradle\caches\transforms-3\b44f2e4f1d45b4060c6ebe524b35bff6\transformed\ui-test-manifest-1.1.1\res +com.mobilegame.localnetworkingandroidapp-foundation-1.1.1-23 C:\Users\valen\.gradle\caches\transforms-3\d5ddef3d1c0b3763d18ff1a9279afdee\transformed\foundation-1.1.1\res +com.mobilegame.localnetworkingandroidapp-material-ripple-1.1.1-24 C:\Users\valen\.gradle\caches\transforms-3\da189ce80d1d925232386a976f851782\transformed\material-ripple-1.1.1\res +com.mobilegame.localnetworkingandroidapp-material-1.1.1-25 C:\Users\valen\.gradle\caches\transforms-3\db0b1c1ef85507f96018b0f92dd8f28b\transformed\material-1.1.1\res +com.mobilegame.localnetworkingandroidapp-runtime-saveable-1.1.1-26 C:\Users\valen\.gradle\caches\transforms-3\e0b9b6b24f93cb89d7a7888205f1c8e0\transformed\runtime-saveable-1.1.1\res +com.mobilegame.localnetworkingandroidapp-material-icons-core-1.1.1-27 C:\Users\valen\.gradle\caches\transforms-3\f10303d8fd03e3f095779b885da16ec6\transformed\material-icons-core-1.1.1\res +com.mobilegame.localnetworkingandroidapp-ui-tooling-preview-1.1.1-28 C:\Users\valen\.gradle\caches\transforms-3\f2c7915055f71008a73ef0e06438166b\transformed\ui-tooling-preview-1.1.1\res +com.mobilegame.localnetworkingandroidapp-activity-compose-1.3.1-29 C:\Users\valen\.gradle\caches\transforms-3\f8fffc2454ed4900ab3e777ad1be349c\transformed\activity-compose-1.3.1\res +com.mobilegame.localnetworkingandroidapp-resValues-30 D:\Android\LocalNetworkingAndroidApp\app\build\generated\res\resValues\debug +com.mobilegame.localnetworkingandroidapp-rs-31 D:\Android\LocalNetworkingAndroidApp\app\build\generated\res\rs\debug +com.mobilegame.localnetworkingandroidapp-packageDebugResources-32 D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\incremental\debug\packageDebugResources\merged.dir +com.mobilegame.localnetworkingandroidapp-packageDebugResources-33 D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\incremental\debug\packageDebugResources\stripped.dir +com.mobilegame.localnetworkingandroidapp-merged_res-34 D:\Android\LocalNetworkingAndroidApp\app\build\intermediates\merged_res\debug +com.mobilegame.localnetworkingandroidapp-debug-35 D:\Android\LocalNetworkingAndroidApp\app\src\debug\res +com.mobilegame.localnetworkingandroidapp-main-36 D:\Android\LocalNetworkingAndroidApp\app\src\main\res diff --git a/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt b/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt new file mode 100644 index 0000000..5933c9b --- /dev/null +++ b/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt @@ -0,0 +1,199 @@ +com.mobilegame.localnetworkingandroidapp:styleable/ColorStateListItem = 0x7f0c0001 +com.mobilegame.localnetworkingandroidapp:xml/data_extraction_rules = 0x7f0d0001 +com.mobilegame.localnetworkingandroidapp:styleable/FontFamilyFont = 0x7f0c0003 +com.mobilegame.localnetworkingandroidapp:id/view_tree_saved_state_registry_owner = 0x7f050051 +com.mobilegame.localnetworkingandroidapp:dimen/notification_top_pad = 0x7f030014 +com.mobilegame.localnetworkingandroidapp:style/TextAppearance.Compat.Notification = 0x7f0b0001 +com.mobilegame.localnetworkingandroidapp:id/forever = 0x7f05002c +com.mobilegame.localnetworkingandroidapp:xml/backup_rules = 0x7f0d0000 +com.mobilegame.localnetworkingandroidapp:style/TextAppearance.Compat.Notification.Line2 = 0x7f0b0003 +com.mobilegame.localnetworkingandroidapp:dimen/notification_large_icon_height = 0x7f03000b +com.mobilegame.localnetworkingandroidapp:color/prussianBlue = 0x7f020005 +com.mobilegame.localnetworkingandroidapp:string/selected = 0x7f0a000d +com.mobilegame.localnetworkingandroidapp:id/line1 = 0x7f050037 +com.mobilegame.localnetworkingandroidapp:mipmap/ic_launcher = 0x7f090000 +com.mobilegame.localnetworkingandroidapp:string/status_bar_notification_info_overflow = 0x7f0a000e +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_4 = 0x7f05001b +com.mobilegame.localnetworkingandroidapp:id/action_image = 0x7f050023 +com.mobilegame.localnetworkingandroidapp:id/action_container = 0x7f050021 +com.mobilegame.localnetworkingandroidapp:style/Widget.Compat.NotificationActionText = 0x7f0b0008 +com.mobilegame.localnetworkingandroidapp:mipmap/ic_launcher_round = 0x7f090001 +com.mobilegame.localnetworkingandroidapp:layout/notification_template_custom_big = 0x7f070003 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_6 = 0x7f05001d +com.mobilegame.localnetworkingandroidapp:string/androidx_startup = 0x7f0a0000 +com.mobilegame.localnetworkingandroidapp:id/hide_in_inspector_tag = 0x7f05002d +com.mobilegame.localnetworkingandroidapp:id/item2 = 0x7f050034 +com.mobilegame.localnetworkingandroidapp:string/indeterminate = 0x7f0a0008 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_9 = 0x7f050020 +com.mobilegame.localnetworkingandroidapp:string/navigation_menu = 0x7f0a0009 +com.mobilegame.localnetworkingandroidapp:style/TextAppearance.Compat.Notification.Info = 0x7f0b0002 +com.mobilegame.localnetworkingandroidapp:id/tag_on_apply_window_listener = 0x7f050043 +com.mobilegame.localnetworkingandroidapp:style/Theme.LocalNetworkingAndroidApp = 0x7f0b0006 +com.mobilegame.localnetworkingandroidapp:id/tag_on_receive_content_listener = 0x7f050044 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_10 = 0x7f050003 +com.mobilegame.localnetworkingandroidapp:dimen/compat_button_padding_vertical_material = 0x7f030003 +com.mobilegame.localnetworkingandroidapp:id/info = 0x7f050030 +com.mobilegame.localnetworkingandroidapp:string/template_percent = 0x7f0a0010 +com.mobilegame.localnetworkingandroidapp:styleable/GradientColor = 0x7f0c0004 +com.mobilegame.localnetworkingandroidapp:color/notification_icon_bg_color = 0x7f020004 +com.mobilegame.localnetworkingandroidapp:string/default_popup_window_title = 0x7f0a0005 +com.mobilegame.localnetworkingandroidapp:color/purple_700 = 0x7f020008 +com.mobilegame.localnetworkingandroidapp:dimen/notification_right_icon_size = 0x7f03000f +com.mobilegame.localnetworkingandroidapp:layout/notification_template_part_chronometer = 0x7f070005 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_25 = 0x7f050013 +com.mobilegame.localnetworkingandroidapp:style/TextAppearance.Compat.Notification.Title = 0x7f0b0005 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_22 = 0x7f050010 +com.mobilegame.localnetworkingandroidapp:string/app_name = 0x7f0a0001 +com.mobilegame.localnetworkingandroidapp:id/item1 = 0x7f050033 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_28 = 0x7f050016 +com.mobilegame.localnetworkingandroidapp:string/not_selected = 0x7f0a000a +com.mobilegame.localnetworkingandroidapp:layout/notification_action_tombstone = 0x7f070002 +com.mobilegame.localnetworkingandroidapp:layout/custom_dialog = 0x7f070000 +com.mobilegame.localnetworkingandroidapp:string/on = 0x7f0a000c +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_19 = 0x7f05000c +com.mobilegame.localnetworkingandroidapp:style/TextAppearance.Compat.Notification.Time = 0x7f0b0004 +com.mobilegame.localnetworkingandroidapp:attr/fontProviderFetchTimeout = 0x7f010005 +com.mobilegame.localnetworkingandroidapp:drawable/$ic_launcher_foreground__0 = 0x7f040000 +com.mobilegame.localnetworkingandroidapp:id/tag_accessibility_clickable_spans = 0x7f050040 +com.mobilegame.localnetworkingandroidapp:id/accessibility_action_clickable_span = 0x7f050000 +com.mobilegame.localnetworkingandroidapp:dimen/notification_top_pad_large_text = 0x7f030015 +com.mobilegame.localnetworkingandroidapp:attr/fontProviderPackage = 0x7f010006 +com.mobilegame.localnetworkingandroidapp:string/off = 0x7f0a000b +com.mobilegame.localnetworkingandroidapp:id/view_tree_lifecycle_owner = 0x7f050050 +com.mobilegame.localnetworkingandroidapp:id/view_tree_view_model_store_owner = 0x7f050052 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_12 = 0x7f050005 +com.mobilegame.localnetworkingandroidapp:menu/example_menu2 = 0x7f080001 +com.mobilegame.localnetworkingandroidapp:id/title = 0x7f05004f +com.mobilegame.localnetworkingandroidapp:styleable/Capability = 0x7f0c0000 +com.mobilegame.localnetworkingandroidapp:id/compose_view_saveable_id_tag = 0x7f05002a +com.mobilegame.localnetworkingandroidapp:id/tag_screen_reader_focusable = 0x7f050046 +com.mobilegame.localnetworkingandroidapp:id/tag_accessibility_heading = 0x7f050041 +com.mobilegame.localnetworkingandroidapp:id/tag_accessibility_actions = 0x7f05003f +com.mobilegame.localnetworkingandroidapp:style/DialogWindowTheme = 0x7f0b0000 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_21 = 0x7f05000f +com.mobilegame.localnetworkingandroidapp:id/right_side = 0x7f05003e +com.mobilegame.localnetworkingandroidapp:string/close_sheet = 0x7f0a0003 +com.mobilegame.localnetworkingandroidapp:id/notification_main_column = 0x7f05003b +com.mobilegame.localnetworkingandroidapp:dimen/compat_button_inset_horizontal_material = 0x7f030000 +com.mobilegame.localnetworkingandroidapp:id/normal = 0x7f050039 +com.mobilegame.localnetworkingandroidapp:id/line3 = 0x7f050038 +com.mobilegame.localnetworkingandroidapp:styleable/GradientColorItem = 0x7f0c0005 +com.mobilegame.localnetworkingandroidapp:id/blocking = 0x7f050028 +com.mobilegame.localnetworkingandroidapp:string/close_drawer = 0x7f0a0002 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_8 = 0x7f05001f +com.mobilegame.localnetworkingandroidapp:id/italic = 0x7f050032 +com.mobilegame.localnetworkingandroidapp:id/icon_group = 0x7f05002f +com.mobilegame.localnetworkingandroidapp:drawable/notification_tile_bg = 0x7f04000d +com.mobilegame.localnetworkingandroidapp:layout/notification_template_icon_group = 0x7f070004 +com.mobilegame.localnetworkingandroidapp:attr/fontProviderQuery = 0x7f010007 +com.mobilegame.localnetworkingandroidapp:id/tag_on_receive_content_mime_types = 0x7f050045 +com.mobilegame.localnetworkingandroidapp:layout/notification_template_part_time = 0x7f070006 +com.mobilegame.localnetworkingandroidapp:id/dialog_button = 0x7f05002b +com.mobilegame.localnetworkingandroidapp:dimen/notification_media_narrow_margin = 0x7f03000e +com.mobilegame.localnetworkingandroidapp:attr/fontProviderSystemFontFamily = 0x7f010008 +com.mobilegame.localnetworkingandroidapp:id/androidx_compose_ui_view_composition_context = 0x7f050026 +com.mobilegame.localnetworkingandroidapp:id/async = 0x7f050027 +com.mobilegame.localnetworkingandroidapp:id/tag_state_description = 0x7f050047 +com.mobilegame.localnetworkingandroidapp:id/action_text = 0x7f050024 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_2 = 0x7f05000d +com.mobilegame.localnetworkingandroidapp:id/action_divider = 0x7f050022 +com.mobilegame.localnetworkingandroidapp:attr/fontVariationSettings = 0x7f01000a +com.mobilegame.localnetworkingandroidapp:style/Widget.Compat.NotificationActionContainer = 0x7f0b0007 +com.mobilegame.localnetworkingandroidapp:string/tab = 0x7f0a000f +com.mobilegame.localnetworkingandroidapp:drawable/notification_bg_low_normal = 0x7f040006 +com.mobilegame.localnetworkingandroidapp:id/time = 0x7f05004e +com.mobilegame.localnetworkingandroidapp:attr/fontProviderFetchStrategy = 0x7f010004 +com.mobilegame.localnetworkingandroidapp:id/text = 0x7f05004c +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_5 = 0x7f05001c +com.mobilegame.localnetworkingandroidapp:integer/status_bar_notification_info_maxnum = 0x7f060000 +com.mobilegame.localnetworkingandroidapp:id/tag_unhandled_key_listeners = 0x7f05004a +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_29 = 0x7f050017 +com.mobilegame.localnetworkingandroidapp:id/item4 = 0x7f050036 +com.mobilegame.localnetworkingandroidapp:id/notification_background = 0x7f05003a +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_23 = 0x7f050011 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_20 = 0x7f05000e +com.mobilegame.localnetworkingandroidapp:attr/alpha = 0x7f010000 +com.mobilegame.localnetworkingandroidapp:dimen/notification_large_icon_width = 0x7f03000c +com.mobilegame.localnetworkingandroidapp:string/default_error_message = 0x7f0a0004 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_7 = 0x7f05001e +com.mobilegame.localnetworkingandroidapp:id/tag_window_insets_animation_callback = 0x7f05004b +com.mobilegame.localnetworkingandroidapp:drawable/notification_bg_normal = 0x7f040008 +com.mobilegame.localnetworkingandroidapp:id/right_icon = 0x7f05003d +com.mobilegame.localnetworkingandroidapp:id/inspection_slot_table_set = 0x7f050031 +com.mobilegame.localnetworkingandroidapp:attr/ttcIndex = 0x7f010010 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_0 = 0x7f050001 +com.mobilegame.localnetworkingandroidapp:id/text2 = 0x7f05004d +com.mobilegame.localnetworkingandroidapp:id/actions = 0x7f050025 +com.mobilegame.localnetworkingandroidapp:attr/fontProviderAuthority = 0x7f010002 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_18 = 0x7f05000b +com.mobilegame.localnetworkingandroidapp:attr/font = 0x7f010001 +com.mobilegame.localnetworkingandroidapp:drawable/notification_bg_low = 0x7f040005 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_16 = 0x7f050009 +com.mobilegame.localnetworkingandroidapp:id/wrapped_composition_tag = 0x7f050053 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_15 = 0x7f050008 +com.mobilegame.localnetworkingandroidapp:attr/queryPatterns = 0x7f01000e +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_14 = 0x7f050007 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_30 = 0x7f050019 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_26 = 0x7f050014 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_1 = 0x7f050002 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_17 = 0x7f05000a +com.mobilegame.localnetworkingandroidapp:drawable/notify_panel_notification_icon_bg = 0x7f04000e +com.mobilegame.localnetworkingandroidapp:drawable/notification_icon_background = 0x7f04000a +com.mobilegame.localnetworkingandroidapp:dimen/notification_main_column_padding_top = 0x7f03000d +com.mobilegame.localnetworkingandroidapp:drawable/notification_bg_normal_pressed = 0x7f040009 +com.mobilegame.localnetworkingandroidapp:dimen/notification_action_icon_size = 0x7f030007 +com.mobilegame.localnetworkingandroidapp:drawable/notification_bg_low_pressed = 0x7f040007 +com.mobilegame.localnetworkingandroidapp:menu/example_menu = 0x7f080000 +com.mobilegame.localnetworkingandroidapp:id/tag_accessibility_pane_title = 0x7f050042 +com.mobilegame.localnetworkingandroidapp:drawable/notification_bg = 0x7f040004 +com.mobilegame.localnetworkingandroidapp:drawable/ic_launcher_foreground = 0x7f040002 +com.mobilegame.localnetworkingandroidapp:drawable/ic_launcher_background = 0x7f040001 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_3 = 0x7f050018 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_11 = 0x7f050004 +com.mobilegame.localnetworkingandroidapp:dimen/notification_small_icon_size_as_large = 0x7f030012 +com.mobilegame.localnetworkingandroidapp:drawable/notification_action_background = 0x7f040003 +com.mobilegame.localnetworkingandroidapp:dimen/compat_button_padding_horizontal_material = 0x7f030002 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_27 = 0x7f050015 +com.mobilegame.localnetworkingandroidapp:dimen/notification_subtext_size = 0x7f030013 +com.mobilegame.localnetworkingandroidapp:attr/fontProviderCerts = 0x7f010003 +com.mobilegame.localnetworkingandroidapp:id/notification_main_column_container = 0x7f05003c +com.mobilegame.localnetworkingandroidapp:attr/fontStyle = 0x7f010009 +com.mobilegame.localnetworkingandroidapp:dimen/notification_action_text_size = 0x7f030008 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_13 = 0x7f050006 +com.mobilegame.localnetworkingandroidapp:dimen/compat_control_corner_material = 0x7f030004 +com.mobilegame.localnetworkingandroidapp:dimen/notification_big_circle_margin = 0x7f030009 +com.mobilegame.localnetworkingandroidapp:id/chronometer = 0x7f050029 +com.mobilegame.localnetworkingandroidapp:color/white = 0x7f02000e +com.mobilegame.localnetworkingandroidapp:color/triangle_color = 0x7f02000b +com.mobilegame.localnetworkingandroidapp:dimen/compat_button_inset_vertical_material = 0x7f030001 +com.mobilegame.localnetworkingandroidapp:styleable/FontFamily = 0x7f0c0002 +com.mobilegame.localnetworkingandroidapp:color/teal_700 = 0x7f02000a +com.mobilegame.localnetworkingandroidapp:id/tag_transition_group = 0x7f050048 +com.mobilegame.localnetworkingandroidapp:id/item3 = 0x7f050035 +com.mobilegame.localnetworkingandroidapp:dimen/compat_notification_large_icon_max_width = 0x7f030006 +com.mobilegame.localnetworkingandroidapp:id/icon = 0x7f05002e +com.mobilegame.localnetworkingandroidapp:color/teal_200 = 0x7f020009 +com.mobilegame.localnetworkingandroidapp:color/purple_500 = 0x7f020007 +com.mobilegame.localnetworkingandroidapp:color/vector_tint_theme_color = 0x7f02000d +com.mobilegame.localnetworkingandroidapp:color/notification_action_color_filter = 0x7f020003 +com.mobilegame.localnetworkingandroidapp:color/black = 0x7f020002 +com.mobilegame.localnetworkingandroidapp:color/vector_tint_color = 0x7f02000c +com.mobilegame.localnetworkingandroidapp:color/purple_200 = 0x7f020006 +com.mobilegame.localnetworkingandroidapp:drawable/notification_template_icon_low_bg = 0x7f04000c +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_24 = 0x7f050012 +com.mobilegame.localnetworkingandroidapp:color/androidx_core_ripple_material_light = 0x7f020000 +com.mobilegame.localnetworkingandroidapp:dimen/compat_notification_large_icon_max_height = 0x7f030005 +com.mobilegame.localnetworkingandroidapp:dimen/notification_content_margin_start = 0x7f03000a +com.mobilegame.localnetworkingandroidapp:attr/shortcutMatchRequired = 0x7f01000f +com.mobilegame.localnetworkingandroidapp:layout/notification_action = 0x7f070001 +com.mobilegame.localnetworkingandroidapp:attr/nestedScrollViewStyle = 0x7f01000d +com.mobilegame.localnetworkingandroidapp:attr/fontWeight = 0x7f01000b +com.mobilegame.localnetworkingandroidapp:color/androidx_core_secondary_text_default_material_light = 0x7f020001 +com.mobilegame.localnetworkingandroidapp:attr/lStar = 0x7f01000c +com.mobilegame.localnetworkingandroidapp:string/dropdown_menu = 0x7f0a0006 +com.mobilegame.localnetworkingandroidapp:dimen/notification_small_icon_background_padding = 0x7f030011 +com.mobilegame.localnetworkingandroidapp:drawable/notification_template_icon_bg = 0x7f04000b +com.mobilegame.localnetworkingandroidapp:string/in_progress = 0x7f0a0007 +com.mobilegame.localnetworkingandroidapp:id/accessibility_custom_action_31 = 0x7f05001a +com.mobilegame.localnetworkingandroidapp:id/tag_unhandled_key_event_manager = 0x7f050049 +com.mobilegame.localnetworkingandroidapp:dimen/notification_right_side_padding_top = 0x7f030010 diff --git a/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt b/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt new file mode 100644 index 0000000..f08fe21 --- /dev/null +++ b/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt @@ -0,0 +1,199 @@ +com.mobilegame.localnetworkingandroidapp +attr alpha +attr font +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontProviderSystemFontFamily +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr lStar +attr nestedScrollViewStyle +attr queryPatterns +attr shortcutMatchRequired +attr ttcIndex +color androidx_core_ripple_material_light +color androidx_core_secondary_text_default_material_light +color black +color notification_action_color_filter +color notification_icon_bg_color +color prussianBlue +color purple_200 +color purple_500 +color purple_700 +color teal_200 +color teal_700 +color triangle_color +color vector_tint_color +color vector_tint_theme_color +color white +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 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 +drawable ic_launcher_background +drawable ic_launcher_foreground +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 +id accessibility_action_clickable_span +id accessibility_custom_action_0 +id accessibility_custom_action_1 +id accessibility_custom_action_10 +id accessibility_custom_action_11 +id accessibility_custom_action_12 +id accessibility_custom_action_13 +id accessibility_custom_action_14 +id accessibility_custom_action_15 +id accessibility_custom_action_16 +id accessibility_custom_action_17 +id accessibility_custom_action_18 +id accessibility_custom_action_19 +id accessibility_custom_action_2 +id accessibility_custom_action_20 +id accessibility_custom_action_21 +id accessibility_custom_action_22 +id accessibility_custom_action_23 +id accessibility_custom_action_24 +id accessibility_custom_action_25 +id accessibility_custom_action_26 +id accessibility_custom_action_27 +id accessibility_custom_action_28 +id accessibility_custom_action_29 +id accessibility_custom_action_3 +id accessibility_custom_action_30 +id accessibility_custom_action_31 +id accessibility_custom_action_4 +id accessibility_custom_action_5 +id accessibility_custom_action_6 +id accessibility_custom_action_7 +id accessibility_custom_action_8 +id accessibility_custom_action_9 +id action_container +id action_divider +id action_image +id action_text +id actions +id androidx_compose_ui_view_composition_context +id async +id blocking +id chronometer +id compose_view_saveable_id_tag +id dialog_button +id forever +id hide_in_inspector_tag +id icon +id icon_group +id info +id inspection_slot_table_set +id italic +id item1 +id item2 +id item3 +id item4 +id line1 +id line3 +id normal +id notification_background +id notification_main_column +id notification_main_column_container +id right_icon +id right_side +id tag_accessibility_actions +id tag_accessibility_clickable_spans +id tag_accessibility_heading +id tag_accessibility_pane_title +id tag_on_apply_window_listener +id tag_on_receive_content_listener +id tag_on_receive_content_mime_types +id tag_screen_reader_focusable +id tag_state_description +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id tag_window_insets_animation_callback +id text +id text2 +id time +id title +id view_tree_lifecycle_owner +id view_tree_saved_state_registry_owner +id view_tree_view_model_store_owner +id wrapped_composition_tag +integer status_bar_notification_info_maxnum +layout custom_dialog +layout notification_action +layout notification_action_tombstone +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_part_chronometer +layout notification_template_part_time +menu example_menu +menu example_menu2 +mipmap ic_launcher +mipmap ic_launcher_round +string androidx_startup +string app_name +string close_drawer +string close_sheet +string default_error_message +string default_popup_window_title +string dropdown_menu +string in_progress +string indeterminate +string navigation_menu +string not_selected +string off +string on +string selected +string status_bar_notification_info_overflow +string tab +string template_percent +style DialogWindowTheme +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Title +style Theme_LocalNetworkingAndroidApp +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +styleable Capability queryPatterns shortcutMatchRequired +styleable ColorStateListItem android_color android_alpha android_lStar alpha lStar +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily +styleable FontFamilyFont android_font android_fontWeight android_fontStyle android_ttcIndex android_fontVariationSettings font fontStyle fontVariationSettings fontWeight ttcIndex +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 +xml backup_rules +xml data_extraction_rules diff --git a/app/build/intermediates/variant_model/debug/out b/app/build/intermediates/variant_model/debug/out new file mode 100644 index 0000000..5a3217a Binary files /dev/null and b/app/build/intermediates/variant_model/debug/out differ diff --git a/app/build/kotlin/compileDebugKotlin/build-history.bin b/app/build/kotlin/compileDebugKotlin/build-history.bin new file mode 100644 index 0000000..9242c66 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/build-history.bin differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab new file mode 100644 index 0000000..e4e2bf2 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream new file mode 100644 index 0000000..51e863e Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len new file mode 100644 index 0000000..e82bbf9 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len new file mode 100644 index 0000000..42df8b9 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values new file mode 100644 index 0000000..05a74d5 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at new file mode 100644 index 0000000..c39bfb5 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.s b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.s new file mode 100644 index 0000000..0d547cd --- /dev/null +++ b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.s @@ -0,0 +1 @@ +Ŕ%Ë$×$×$Ë$Ë$ç!Đ"Đ"Đ"Đ"Đ"ĺ"ŕ"ě"ď"Ŕ#í"ę#á#á#á#í"Ó#č$Ŕ$ \ No newline at end of file diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i new file mode 100644 index 0000000..d38b4d7 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab new file mode 100644 index 0000000..ffbb77d Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream new file mode 100644 index 0000000..3babf56 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len new file mode 100644 index 0000000..10e8cab Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len new file mode 100644 index 0000000..09407ef Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at new file mode 100644 index 0000000..068e3bc Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i new file mode 100644 index 0000000..5204758 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab new file mode 100644 index 0000000..daf5ece Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream new file mode 100644 index 0000000..3babf56 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len new file mode 100644 index 0000000..10e8cab Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len new file mode 100644 index 0000000..09407ef Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at new file mode 100644 index 0000000..15050e7 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i new file mode 100644 index 0000000..5204758 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab new file mode 100644 index 0000000..1e01ed6 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream new file mode 100644 index 0000000..7d45674 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len new file mode 100644 index 0000000..93a595b Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len new file mode 100644 index 0000000..a9f80ae Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at new file mode 100644 index 0000000..50cfcf3 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i new file mode 100644 index 0000000..bbf4242 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len new file mode 100644 index 0000000..131e265 Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab new file mode 100644 index 0000000..55977cc Binary files /dev/null and b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream new file mode 100644 index 0000000..290ef8b --- /dev/null +++ b/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream @@ -0,0 +1 @@ +5com/mobilegame/localnetworkingandroidapp/MainActivityDcom/mobilegame/localnetworkingandroidapp/LiveLiterals$MainActivityKtLcom/mobilegame/localnetworkingandroidapp/ComposableSingletons$MainActivityKtWcom/mobilegame/localnetworkingandroidapp/ComposableSingletons$MainActivityKt$lambda-1$1Wcom/mobilegame/localnetworkingandroidapp/ComposableSingletons$MainActivityKt$lambda-2$11com/example/localnetworkingandroidapp/data/Client@com/example/localnetworkingandroidapp/data/LiveLiterals$ClientKt5com/example/localnetworkingandroidapp/data/LinkStates2com/example/localnetworkingandroidapp/data/Message + xmlns:tools="http://schemas.android.com/tools"> - + android:theme="@style/Theme.LocalNetworkingAndroidApp" + tools:targetApi="31"> + + + diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/MainActivity.kt b/app/src/main/java/com/example/localnetworkingandroidapp/MainActivity.kt index 83d5cc7..d8fa67e 100644 --- a/app/src/main/java/com/example/localnetworkingandroidapp/MainActivity.kt +++ b/app/src/main/java/com/example/localnetworkingandroidapp/MainActivity.kt @@ -1,597 +1,28 @@ -package com.example.localnetworkingandroidapp +package com.mobilegame.localnetworkingandroidapp -import android.content.Context -import android.net.nsd.NsdManager -import android.net.nsd.NsdServiceInfo -import androidx.appcompat.app.AppCompatActivity import android.os.Bundle -import android.os.Handler -import android.text.Layout -import android.text.Spannable -import android.text.SpannableString -import android.text.style.AbsoluteSizeSpan -import android.text.style.AlignmentSpan -import android.text.style.ForegroundColorSpan -import android.util.Log -import android.view.MenuItem -import android.view.Menu -import android.view.View -import android.view.inputmethod.InputMethodManager -import androidx.core.content.ContextCompat -import kotlinx.android.synthetic.main.activity_main.* -import java.net.ServerSocket -import java.net.Socket -import java.io.BufferedReader -import java.io.IOException -import java.io.InputStreamReader -import java.io.PrintWriter -import java.lang.IllegalArgumentException -import java.net.SocketException -import java.net.UnknownHostException -import java.util.* -import java.util.concurrent.CopyOnWriteArrayList -import kotlin.collections.ArrayList -import kotlin.random.Random - -const val MESSAGE_TERMINATOR = "\r\n" - -class MainActivity : AppCompatActivity() { - - data class Client(val socket: Socket, val name: String, val writer: PrintWriter) - - var joined = false - var connected = false - var hostAfterHandler: Handler? = null - var host = false - - var serverSocket: ServerSocket? = null - var socket: Socket? = null - var writer: PrintWriter? = null - val nsdManager: NsdManager by lazy { - (getSystemService(Context.NSD_SERVICE) as NsdManager) - } - var connectedClients: MutableList = CopyOnWriteArrayList() - - var cannonicalThread: MutableList = Collections.synchronizedList(ArrayList()) - - private var names = mutableListOf( - "Belgarion", - "Ce'Nedra", - "Belgarath", - "Polgara", - "Durnik", - "Silk", - "Velvet", - "Poledra", - "Beldaran", - "Beldin", - "Geran", - "Mandorallen", - "Hettar", - "Adara", - "Barak" - ) - var myName = "" - - private val resolveListener = object : NsdManager.ResolveListener { - - val TAG = "resolveListener" - - override fun onResolveFailed(serviceInfo: NsdServiceInfo, errorCode: Int) { - // Called when the resolve fails. Use the error code to debug. - Log.e(TAG, "Resolve failed: $errorCode") - } - - override fun onServiceResolved(serviceInfo: NsdServiceInfo) { - Log.e(TAG, "Resolve Succeeded. $serviceInfo") - - socket?.let { - Log.i(TAG, "Socket already connected $it") - return - } - - try { - // Connect to the host - socket = Socket(serviceInfo.host, serviceInfo.port) - writer = PrintWriter(socket!!.getOutputStream()) - - runOnUiThread { - // Reset the chat - main_activity_textview.text = "" - - // Enable chat - main_activity_send_button.isEnabled = true - main_activity_edit_text.isEnabled = true - } - - // Start reading messages - Thread(ServerReader(socket!!)).start() - - connected = true - } catch (e: UnknownHostException) { - Log.e(TAG, "Unknown host. ${e.localizedMessage}") - } catch (e: IOException) { - Log.e(TAG, "Failed to create writer. ${e.localizedMessage}") - } - } - } - - private val discoveryListener = object : NsdManager.DiscoveryListener { - - val TAG = "discoveryListener" - - // Called as soon as service discovery begins. - override fun onDiscoveryStarted(regType: String) { - Log.d(TAG, "Service discovery started") - } - - override fun onServiceFound(service: NsdServiceInfo) { - Log.d(TAG, "Service found ${service.serviceName}") - hostAfterHandler?.removeCallbacksAndMessages(null) - - // A service was found! Do something with it. - if (service.serviceName.contains("BelgariadChat")) { - nsdManager.resolveService(service, resolveListener) - } - } - - override fun onServiceLost(service: NsdServiceInfo) { - // When the network service is no longer available. - // Internal bookkeeping code goes here. - Log.e(TAG, "service lost: $service") - } - - override fun onDiscoveryStopped(serviceType: String) { - Log.i(TAG, "Discovery stopped: $serviceType") - } - - override fun onStartDiscoveryFailed(serviceType: String, errorCode: Int) { - Log.e(TAG, "Discovery failed: Error code:$errorCode") - nsdManager.stopServiceDiscovery(this) - } - - override fun onStopDiscoveryFailed(serviceType: String, errorCode: Int) { - Log.e(TAG, "Discovery failed: Error code:$errorCode") - nsdManager.stopServiceDiscovery(this) - } - } - - private val registrationListener = object : NsdManager.RegistrationListener { - override fun onServiceRegistered(NsdServiceInfo: NsdServiceInfo) { - // Save the service name. Android may have changed it in order to - // resolve a conflict, so update the name you initially requested - // with the name Android actually used. - Log.d("NsdManager.Registration", "Service registered") - } - - override fun onRegistrationFailed(serviceInfo: NsdServiceInfo, errorCode: Int) { - // Registration failed! Put debugging code here to determine why. - Log.d("NsdManager.Registration", "Registration failed") - } - - override fun onServiceUnregistered(arg0: NsdServiceInfo) { - // Service has been unregistered. This only happens when you call - // NsdManager.unregisterService() and pass in this listener. - Log.d("NsdManager.Registration", "Service unregistered") - } - - override fun onUnregistrationFailed(serviceInfo: NsdServiceInfo, errorCode: Int) { - // Unregistration failed. Put debugging code here to determine why. - Log.d("NsdManager.Registration", "Unregistration failed") - } - } - +import android.view.Window +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.material.MaterialTheme +import androidx.compose.material.Surface +import androidx.compose.material.Text +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.tooling.preview.Preview +import androidx.core.view.WindowCompat +import com.example.localnetworkingandroidapp.model.ScreenViewModel +import com.example.localnetworkingandroidapp.ui.screen.Screen +import com.mobilegame.localnetworkingandroidapp.ui.theme.LocalNetworkingAndroidAppTheme + +class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) - setContentView(R.layout.activity_main) - - main_activity_send_button.setOnClickListener { - val text = main_activity_edit_text.text.toString() - if (text == "") return@setOnClickListener - - // Hide the keyboard - (getSystemService(Context.INPUT_METHOD_SERVICE) as? InputMethodManager)?. - hideSoftInputFromWindow(main_activity_edit_text.windowToken, 0) - - val message = Message(myName, text, Date().time) - - // Add the message to the text view - addMessage(message, true) - - Log.d("JSON", message.toJson()) - - // Send the message over the network - Thread(Runnable { - if (host) { - cannonicalThread.add(message) - connectedClients.forEach { - it.writer.print(message.toJson() + MESSAGE_TERMINATOR) - it.writer.flush() - } - } else { - socket?.let { - writer?.print(message.toJson() + MESSAGE_TERMINATOR) - writer?.flush() - } - } - }).start() - - // Clear the edit text - main_activity_edit_text.setText("") - } - } - - override fun onCreateOptionsMenu(menu: Menu): Boolean { - // Inflate the menu; this adds items to the action bar if it is present. - menuInflater.inflate(R.menu.toolbar_menu, menu) - return true - } - - override fun onOptionsItemSelected(item: MenuItem) = when (item.itemId) { - R.id.action_join -> { - if (joined) { - // Update the join/leave title - item.title = getString(R.string.join) - - if (host) stopHosting() else { - stopSearching() - hostAfterHandler?.removeCallbacksAndMessages(null) - socket?.close() - socket = null - } - - // Reset the chat - main_activity_textview.text = "" - } else { - // Update the join/leave title - item.title = getString(R.string.leave) - - // Show a connecting message - val string = getString(R.string.connection_server_message) - val spannable = SpannableString(string) - spannable.setSpan(AlignmentSpan.Standard(Layout.Alignment.ALIGN_CENTER), 0, string.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) - main_activity_textview.text = spannable - - // Browse for existing services - startSearching() - - // After 3 seconds, if no service has been found, start one - hostAfterHandler = Handler() - hostAfterHandler?.postDelayed({ - stopSearching() - startHosting() - }, 3000) - } - joined = !joined - true - } - - else -> { - // If we got here, the user's action was not recognized. - // Invoke the superclass to handle it. - super.onOptionsItemSelected(item) - } - } - - @Synchronized - private fun getName(): String { - return names.removeAt(Random.nextInt(names.size)) - } - - @Synchronized - private fun putName(name: String) { - names.add(name) - } - - private fun addMessage(message: Message, fromSelf: Boolean) { - val context = this - val textView = main_activity_textview - when (message.sender) { - Message.SERVER_NAME_SENDER -> return - Message.SERVER_MSG_SENDER -> { - // Print server message - val spannable = SpannableString(message.message).apply { - setSpan(AlignmentSpan.Standard(Layout.Alignment.ALIGN_CENTER), 0, message.message.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) - setSpan(ForegroundColorSpan(ContextCompat.getColor(context, R.color.textSecondary)), 0, message.message.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) - setSpan(AbsoluteSizeSpan(13, true), 0, message.message.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) - } - textView.append(spannable) - textView.append("\n\n") - } - else -> { - // Print message - var spannable = SpannableString(message.sender).apply { - setSpan(AlignmentSpan.Standard(if (fromSelf) Layout.Alignment.ALIGN_OPPOSITE else Layout.Alignment.ALIGN_NORMAL), 0, message.sender.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) - setSpan(ForegroundColorSpan(ContextCompat.getColor(context, R.color.textSecondary)), 0, message.sender.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) - setSpan(AbsoluteSizeSpan(13, true), 0, message.sender.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) - } - textView.append(spannable) - textView.append("\n") - - spannable = SpannableString(message.message).apply { - setSpan(AlignmentSpan.Standard(if (fromSelf) Layout.Alignment.ALIGN_OPPOSITE else Layout.Alignment.ALIGN_NORMAL), 0, message.message.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) - setSpan(ForegroundColorSpan(ContextCompat.getColor(context, R.color.textPrimary)), 0, message.message.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) - setSpan(AbsoluteSizeSpan(18, true), 0, message.message.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) - } - textView.append(spannable) - textView.append("\n\n") - } - } - - // Scroll the messages to the bottom - main_activity_scrollview.fullScroll(View.FOCUS_DOWN) - } - - private fun startSearching() { - nsdManager.discoverServices("_LocalNetworkingApp._tcp", NsdManager.PROTOCOL_DNS_SD, discoveryListener) - } - - private fun stopSearching() { - try { - nsdManager.stopServiceDiscovery(discoveryListener) - } catch (e: IllegalArgumentException) { - Log.i("nsdManager", "discoveryListener not registered") - } - } - - private fun startHosting() { - // Create a listen socket - val port: Int - serverSocket = ServerSocket(0).also { socket -> - // Store the chosen port. - port = socket.localPort - } - - Thread(Runnable { - while (serverSocket != null) { - try { - serverSocket?.accept()?.let { - Log.d("ServerSocket", "accepted client") - - // Give the client their name - val name = getName() - val writer: PrintWriter - - try { - writer = PrintWriter(it.getOutputStream()) - } catch (e: IOException) { - Log.w ("ServerSocket", "Failed to create writer for $it") - return@let - } - - val client = Client(it, name, writer) - connectedClients.add(client) - - Thread(Runnable { - val nameMessage = Message(Message.SERVER_NAME_SENDER, name, Date().time) - writer.print(nameMessage.toJson() + MESSAGE_TERMINATOR) - writer.flush() - - // Send a system message alerting that a client has joined - val message = - Message(Message.SERVER_MSG_SENDER, "$name has joined", Date().time) - cannonicalThread.add(message) - - connectedClients.forEach { - if (it != client) { - it.writer.print(message.toJson() + MESSAGE_TERMINATOR) - it.writer.flush() - } - } - - runOnUiThread { - addMessage(message, false) - } - - // Send the client the cannonical thread - var messages = "" - synchronized(cannonicalThread) { - cannonicalThread.forEach { - messages += it.toJson() + MESSAGE_TERMINATOR - } - } - writer.print(messages) - writer.flush() - }).start() - - // Start reading messages - Thread(ClientReader(client)).start() - } - } catch (e: SocketException) { - break - } - } - }).start() - - // Create the NsdServiceInfo object, and populate it. - val serviceInfo = NsdServiceInfo().apply { - // The name is subject to change based on conflicts - // with other services advertised on the same network. - serviceName = "BelgariadChat" - serviceType = "_LocalNetworkingApp._tcp" - setPort(port) - } - - // Register the service for discovery - nsdManager.registerService(serviceInfo, NsdManager.PROTOCOL_DNS_SD, registrationListener) - - // Host mode on - host = true - - // Get a name for the host - myName = getName() - - // Reset the text view - main_activity_textview.text = "" - - // Add a system message - val message = Message(Message.SERVER_MSG_SENDER, "$myName has started the chat", Date().time) - addMessage(message, false) - - // Enable chat - main_activity_send_button.isEnabled = true - main_activity_edit_text.isEnabled = true - - // Initialize cannonical thread - cannonicalThread = Collections.synchronizedList(ArrayList()).apply { - add(message) - } - } - - private fun stopHosting() { - // Stop listening - serverSocket?.close() - serverSocket = null - - // Stop broadcasting service - nsdManager.unregisterService(registrationListener) - - // Remove the clients - connectedClients.forEach { - it.writer.close() - it.socket.close() - } - - // Remove my name - putName(myName) - myName = "" - - // Disable chat - main_activity_send_button.isEnabled = false - main_activity_edit_text.isEnabled = false - - // Reset - cannonicalThread = Collections.synchronizedList(ArrayList()) - main_activity_textview.text = "" - - // Host mode off - host = false - } - - fun removeClient(client: Client) { - connectedClients.remove(client) - putName(client.name) - - // Send a system message alerting that a client has left - val message = Message(Message.SERVER_MSG_SENDER, "${client.name} has left", Date().time) - cannonicalThread.add(message) - - connectedClients.forEach { - it.writer.print(message.toJson() + MESSAGE_TERMINATOR) - it.writer.flush() - } - - runOnUiThread { - addMessage(message, false) - } - } - - inner class ServerReader(private val socket: Socket): Runnable { - val TAG = "ServerReader" - - override fun run() { - var line: String? - val reader: BufferedReader - - try { - reader = BufferedReader(InputStreamReader(socket.getInputStream())) - } catch (e: IOException) { - println("in or out failed") - - serverDisconnected() - return - } - - while (true) { - try { - line = reader.readLine() - - if (line == null) { - serverDisconnected() - break - } - - Log.d(TAG, "Read line $line") - - val message = Message.fromJson(line) - - if (message.sender == Message.SERVER_NAME_SENDER) { - myName = message.message - continue - } - - runOnUiThread { - addMessage(message, false) - } - } catch (e: IOException) { - serverDisconnected() - return - } - + setContent { + LocalNetworkingAndroidAppTheme { + Screen(ScreenViewModel()) } } } - - inner class ClientReader(private val client: Client): Runnable { - val TAG = "ClientReader" - - override fun run() { - var line: String? - val reader: BufferedReader - - try { - reader = BufferedReader(InputStreamReader(client.socket.getInputStream())) - } catch (e: IOException) { - println("in or out failed") - - removeClient(client) - return - } - - while (true) { - try { - line = reader.readLine() - - if (line == null) { - removeClient(client) - break - } - - Log.d(TAG, "Read line $line") - - val message = Message.fromJson(line) - - cannonicalThread.add(message) - - runOnUiThread { - addMessage(message, false) - } - - Thread(Runnable { - connectedClients.forEach { - if (it != client) { // Don't send the message to the client who sent it - it.writer.print(line) - it.writer.flush() - } - } - }).start() - } catch (e: IOException) { - removeClient(client) - return - } - - } - } - } - - fun serverDisconnected() { - connected = false - joined = false - socket = null - - runOnUiThread { - main_activity_edit_text.isEnabled = false - main_activity_send_button.isEnabled = false - } - } -} +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/data/Client.kt b/app/src/main/java/com/example/localnetworkingandroidapp/data/Client.kt new file mode 100644 index 0000000..3d85979 --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/data/Client.kt @@ -0,0 +1,6 @@ +package com.example.localnetworkingandroidapp.data + +import java.io.PrintWriter +import java.net.Socket + +data class Client(val socket: Socket, val name: String, val writer: PrintWriter) diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/data/LinkStates.kt b/app/src/main/java/com/example/localnetworkingandroidapp/data/LinkStates.kt new file mode 100644 index 0000000..f078174 --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/data/LinkStates.kt @@ -0,0 +1,5 @@ +package com.example.localnetworkingandroidapp.data + +enum class LinkStates { + Connected, Connecting, NotConnected +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/Message.kt b/app/src/main/java/com/example/localnetworkingandroidapp/data/Message.kt similarity index 67% rename from app/src/main/java/com/example/localnetworkingandroidapp/Message.kt rename to app/src/main/java/com/example/localnetworkingandroidapp/data/Message.kt index b683298..ee2fdc2 100644 --- a/app/src/main/java/com/example/localnetworkingandroidapp/Message.kt +++ b/app/src/main/java/com/example/localnetworkingandroidapp/data/Message.kt @@ -1,16 +1,17 @@ -package com.example.localnetworkingandroidapp +package com.example.localnetworkingandroidapp.data import com.google.gson.Gson -class Message(val sender: String, val message: String, val timestamp: Long) { +class Message(val sender: String, val text: String, val timestamp: Long) { fun toJson(): String = Gson().toJson(this) companion object { // Sender values const val SERVER_MSG_SENDER = "SERVER_MSG_SENDER" const val SERVER_NAME_SENDER = "SERVER_NAME_SENDER" + const val MESSAGE_TERMINATOR = "\r\n" @JvmStatic fun fromJson(json: String): Message = Gson().fromJson(json, Message::class.java) } -} \ No newline at end of file +} diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/data/channel/ChannelService.kt b/app/src/main/java/com/example/localnetworkingandroidapp/data/channel/ChannelService.kt new file mode 100644 index 0000000..cf4c427 --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/data/channel/ChannelService.kt @@ -0,0 +1,19 @@ +package com.example.localnetworkingandroidapp.data.channel + +import com.example.localnetworkingandroidapp.data.Client +import com.example.localnetworkingandroidapp.model.CanonicalThread +import java.net.Socket + +interface ChannelService { + suspend fun open() + suspend fun close() + + companion object { + fun createChannelToServer(socket: Socket, canonicalThread: CanonicalThread): ChannelService { + return ChannelToServerImplementation(socket, canonicalThread) + } + fun createChannelToClient(client: Client, canonicalThread: CanonicalThread): ChannelService { + return ChannelToClientsImplementation(client, canonicalThread) + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/data/channel/ChannelToClientsImplementation.kt b/app/src/main/java/com/example/localnetworkingandroidapp/data/channel/ChannelToClientsImplementation.kt new file mode 100644 index 0000000..7480e3e --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/data/channel/ChannelToClientsImplementation.kt @@ -0,0 +1,68 @@ +package com.example.localnetworkingandroidapp.data.channel + +import android.util.Log +import com.example.localnetworkingandroidapp.data.Client +import com.example.localnetworkingandroidapp.data.Message +import com.example.localnetworkingandroidapp.model.CanonicalThread +import com.example.localnetworkingandroidapp.model.SendMessage +import com.example.localnetworkingandroidapp.model.WifiConnectionState +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.withContext +import java.io.BufferedReader +import java.io.IOException +import java.io.InputStreamReader + +internal class ChannelToClientsImplementation( + val client: Client, + val canonicalThread: CanonicalThread, +): ChannelService { + var isOpen = false + val TAG = "ChannelToClient" + + private suspend fun read() = withContext(Dispatchers.IO) { + var line: String? + val reader: BufferedReader + + try { + reader = BufferedReader(InputStreamReader(client.socket.getInputStream())) + } catch (e: IOException) { + Log.e(TAG, "ERROR BufferedReader IO") + close() + return@withContext + } + + while (isOpen) { + try { + line = reader.readLine() + + if (line == null) { + close() + break + } + + Log.d(TAG, "Read line $line") + + val message = Message.fromJson(line) + canonicalThread.addMessage(message) + SendMessage(message).toAllClients(exception = client) + } catch (e: IOException) { + close() + return@withContext + } + } + } + + override suspend fun open() { + withContext(Dispatchers.IO) { + isOpen = true + read() + } + } + + override suspend fun close() { + isOpen = false + if (WifiConnectionState.connectedClients.remove(client)) { + canonicalThread.addLeaverMessage(client) + } else { Log.e(TAG, "ERROR : close a channel to an non connected client") } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/data/channel/ChannelToServerImplementation.kt b/app/src/main/java/com/example/localnetworkingandroidapp/data/channel/ChannelToServerImplementation.kt new file mode 100644 index 0000000..a830080 --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/data/channel/ChannelToServerImplementation.kt @@ -0,0 +1,76 @@ +package com.example.localnetworkingandroidapp.data.channel + +import android.util.Log +import com.example.localnetworkingandroidapp.data.LinkStates +import com.example.localnetworkingandroidapp.data.Message +import com.example.localnetworkingandroidapp.model.CanonicalThread +import com.example.localnetworkingandroidapp.model.Names +import com.example.localnetworkingandroidapp.model.WifiConnectionState +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.withContext +import java.io.BufferedReader +import java.io.IOException +import java.io.InputStreamReader +import java.net.Socket + +internal class ChannelToServerImplementation( + private val socket: Socket, + private val canonicalThread: CanonicalThread +): ChannelService { + private var isOpen = false + val TAG = "ChannelToServer" + + private suspend fun read() = withContext(Dispatchers.IO) { + var line: String? + val reader: BufferedReader + + try { + reader = BufferedReader(InputStreamReader(socket.getInputStream())) + } catch (e: IOException) { + println("in or out failed") + close() + return@withContext + } + + while (isOpen) { + try { + line = reader.readLine() + + if (line == null) { + close() + break + } + + Log.d(TAG, "Read line $line") + + val message = Message.fromJson(line) + + if (message.sender == Message.SERVER_NAME_SENDER) { + Names.deviceName = message.text + continue + } + + canonicalThread.addMessage(message) + } catch (e: IOException) { + close() + return@withContext + } + } + } + + override suspend fun open() { + withContext(Dispatchers.IO) { + isOpen = true + read() + } + } + + override suspend fun close() = withContext(Dispatchers.IO) { + WifiConnectionState.socket?.close() + WifiConnectionState.socket = null + WifiConnectionState.updateLinkStateTo(LinkStates.NotConnected) + WifiConnectionState.changeBottomBarStateTo(false) + isOpen = false + canonicalThread.reset() + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/model/CanonicalThread.kt b/app/src/main/java/com/example/localnetworkingandroidapp/model/CanonicalThread.kt new file mode 100644 index 0000000..1af5170 --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/model/CanonicalThread.kt @@ -0,0 +1,30 @@ +package com.example.localnetworkingandroidapp.model + +import com.example.localnetworkingandroidapp.data.Client +import com.example.localnetworkingandroidapp.data.Message +import kotlinx.coroutines.flow.MutableStateFlow +import kotlinx.coroutines.flow.StateFlow +import kotlinx.coroutines.flow.asStateFlow +import java.util.* + +class CanonicalThread { + private val TAG = "CanonicalThread" + private val _messageList = MutableStateFlow(listOf()) + val messageList: StateFlow> = _messageList.asStateFlow() + + fun addMessage(newMessage: Message) { + //creating a new list to trigger screen ui recomposition + val newList = _messageList.value.toMutableList() + newList.add(newMessage) + _messageList.value = newList + } + + fun addLeaverMessage(missingClient: Client) { + val leftMessage = Message(Message.SERVER_MSG_SENDER, "${missingClient.name} has left", Date().time) + addMessage(leftMessage) + } + + fun reset() { + _messageList.value = listOf() + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/model/ConnectionViewModel.kt b/app/src/main/java/com/example/localnetworkingandroidapp/model/ConnectionViewModel.kt new file mode 100644 index 0000000..5ba791d --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/model/ConnectionViewModel.kt @@ -0,0 +1,219 @@ +package com.example.localnetworkingandroidapp.model + +import android.net.nsd.NsdManager +import android.net.nsd.NsdServiceInfo +import android.util.Log +import androidx.lifecycle.ViewModel +import androidx.lifecycle.viewModelScope +import com.example.localnetworkingandroidapp.data.channel.ChannelService +import com.example.localnetworkingandroidapp.data.Client +import com.example.localnetworkingandroidapp.data.LinkStates +import com.example.localnetworkingandroidapp.data.Message +import com.example.localnetworkingandroidapp.data.Message.Companion.MESSAGE_TERMINATOR +import com.example.localnetworkingandroidapp.model.WifiConnectionState.changeBottomBarStateTo +import com.example.localnetworkingandroidapp.model.WifiConnectionState.connectedClients +import com.example.localnetworkingandroidapp.model.WifiConnectionState.linkState +import com.example.localnetworkingandroidapp.model.WifiConnectionState.nsdManager +import com.example.localnetworkingandroidapp.model.WifiConnectionState.updateLinkStateTo +import kotlinx.coroutines.* +import java.io.IOException +import java.io.PrintWriter +import java.lang.IllegalArgumentException +import java.net.ServerSocket +import java.net.Socket +import java.net.SocketException +import java.util.* + +class ConnectionViewModel( + private val canonicalThread: CanonicalThread, +): ViewModel() { + private val TAG = "ConnectionVM" + private lateinit var serviceInfo: NsdServiceInfo + private var serverSocket: ServerSocket? = null + private val listeners = Listeners(this) + fun isHosting(): Boolean = serverSocket?.let { true } ?: false + + fun start() { + viewModelScope.launch(Dispatchers.IO) { + Log.i(TAG, "start") + updateLinkStateTo(LinkStates.Connecting) + // Browse for existing services + startSearching() + delayUntilConnected() + stopSearching() + when (linkState.value) { + LinkStates.Connected -> startListenServer() + LinkStates.Connecting -> startHosting() + LinkStates.NotConnected -> Log.e(TAG, "ERROR") + } + } + } + + private suspend fun delayUntilConnected() { + var count = 0 + while (linkState.value == LinkStates.Connecting && count < 8) { + delay(500L) + count += 1 + } + } + + + private fun startSearching() { + nsdManager.discoverServices( + "_LocalNetworkingApp._tcp", + NsdManager.PROTOCOL_DNS_SD, + listeners.discoveryListener + ) + } + + private suspend fun startListenServer() { + Log.e(TAG, "start listen server ") + ChannelService.createChannelToServer(WifiConnectionState.socket!!, canonicalThread).open() + } + + private suspend fun startHosting() { + + // Create a listen socket + initializeServerSocket() + serverSocket?.let { _serverSocket -> + registerService(_serverSocket.localPort) + updateLinkStateTo(LinkStates.Connected) + + val hostName = Names.getNewName() + Names.deviceName = hostName + val startMessage = Message(Message.SERVER_MSG_SENDER, "$hostName has started the chat", Date().time) + Log.e(TAG, "startHosting as ${Names.deviceName}") + canonicalThread.addMessage(startMessage) + + //Listen for new Client + viewModelScope.launch(Dispatchers.IO) { + Log.i(TAG, "loop on isHosting") + while ( isHosting() ) { + try { + _serverSocket.accept()?.let { + Log.w(TAG, "accept new client ${it.inetAddress}") + // Give the client their name + registerNewClient(it) ?: let { return@let } + val newClient = connectedClients.last() + + // Send a system message attributing client device name + val nameMessage = Message(Message.SERVER_NAME_SENDER, newClient.name, Date().time) + SendMessage(nameMessage).toClient(newClient) + + + // Send a system message alerting that a client has joined + val joiningMessage = + Message(Message.SERVER_MSG_SENDER, "${newClient.name} has joined", Date().time) + + canonicalThread.addMessage(joiningMessage) + SendMessage(joiningMessage, canonicalThread).toAllClients(exception = newClient) + + // Send the client the cannonical thread + var messages = "" + canonicalThread.messageList.value.forEach { + messages += it.toJson() + MESSAGE_TERMINATOR + } + newClient.writer.print(messages) + newClient.writer.flush() + + + // Start reading messages + val aside = async { + ChannelService.createChannelToClient( + newClient, + canonicalThread + ).open() + } + } + } catch (e: SocketException) { + break + } + } + } + + // Enable chat + changeBottomBarStateTo(true) + } + } + private fun registerNewClient(socket: Socket): Unit? { + val name = Names.getNewName() + val writer: PrintWriter + + try { writer = PrintWriter(socket.getOutputStream()) } + catch (e: IOException) { + Log.w(TAG, "Failed to create writer for $socket") + return null + } + + val newClient = Client(socket, name, writer) + Log.e(TAG, "accepted client ${newClient.name}${newClient.socket.inetAddress}") + connectedClients.add(newClient) + return Unit + } + + + private fun initializeServerSocket() { + Log.i(TAG, "createListenSocket") + var localPort: Int + // Initialize a server socket on the next available port. + serverSocket = ServerSocket(0).also { socket -> + // Store the chosen port. + localPort = socket.localPort + } + Log.i(TAG, "server socket localPort : $localPort") + } + + private fun registerService(port: Int) { + // Create the NsdServiceInfo object, and populate it. + serviceInfo = NsdServiceInfo().apply { + // The name is subject to change based on conflicts + // with other services advertised on the same network. + serviceName = Names.NetworkSearchDiscoveryName + serviceType = "_LocalNetworkingApp._tcp" + setPort(port) + } + // Register the service for discovery + nsdManager.registerService(serviceInfo, NsdManager.PROTOCOL_DNS_SD, listeners.registrationListener) + Log.d(TAG, "register service ${serviceInfo.serviceName} ${serviceInfo.port} ${serviceInfo.host} ${serviceInfo.serviceType}") + } + + fun stopSearching() { + try { + nsdManager.stopServiceDiscovery(listeners.discoveryListener) + } catch (e: IllegalArgumentException) { + Log.i("nsdManager", "discoveryListener not registered") + } + } + + fun stopHosting() { + // Stop broadcasting service + nsdManager.unregisterService(listeners.registrationListener) + + // Remove the clients + connectedClients.forEach { + it.writer.close() + it.socket.close() + } + connectedClients = mutableListOf() + + // Reset Names + Names.reset() + + // Disable chat + changeBottomBarStateTo(false) + + // Reset Messages + canonicalThread.reset() + + // Stop Hosting + serverSocket?.close() + serverSocket = null + } + + fun restart() { + viewModelScope.launch { + stopHosting() + start() + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/model/Listeners.kt b/app/src/main/java/com/example/localnetworkingandroidapp/model/Listeners.kt new file mode 100644 index 0000000..034aad4 --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/model/Listeners.kt @@ -0,0 +1,116 @@ +package com.example.localnetworkingandroidapp.model + +import android.net.nsd.NsdManager +import android.net.nsd.NsdServiceInfo +import android.util.Log +import com.example.localnetworkingandroidapp.data.LinkStates +import com.example.localnetworkingandroidapp.model.WifiConnectionState.socket +import com.example.localnetworkingandroidapp.model.WifiConnectionState.writer +import java.io.IOException +import java.io.PrintWriter +import java.net.Socket +import java.net.UnknownHostException + +class Listeners(connectionVM: ConnectionViewModel) { + fun getResolveListener(): NsdManager.ResolveListener = object : NsdManager.ResolveListener { + + val TAG = "resolveListener" + + override fun onResolveFailed(serviceInfo: NsdServiceInfo, errorCode: Int) { + // Called when the resolve fails. Use the error code to debug. + Log.e(TAG, "Resolve failed: $errorCode") + } + + override fun onServiceResolved(serviceInfo: NsdServiceInfo) { + Log.i(TAG, "Resolve Succeeded. $serviceInfo") + + socket?.let { + Log.i(TAG, "Socket already connected $it") + return + } + + try { + // Connect to the host + socket = Socket(serviceInfo.host, serviceInfo.port) + writer = PrintWriter(socket!!.getOutputStream()) + WifiConnectionState.updateLinkStateTo(LinkStates.Connected) + + WifiConnectionState.changeBottomBarStateTo(true) + } catch (e: UnknownHostException) { + Log.e(TAG, "Unknown host. ${e.localizedMessage}") + } catch (e: IOException) { + Log.e(TAG, "Failed to create writer. ${e.localizedMessage}") + } + } + } + + var discoveryListener = getADiscoveryListener() + + private fun getADiscoveryListener(): NsdManager.DiscoveryListener = object : NsdManager.DiscoveryListener { + + val TAG = "discoveryListener" + + // Called as soon as service discovery begins. + override fun onDiscoveryStarted(regType: String) { + Log.d(TAG, "Service discovery started") + } + + override fun onServiceFound(service: NsdServiceInfo) { + Log.d(TAG, "Service found ${service.serviceName}") + + // A service was found! Do something with it. + if (service.serviceName == Names.NetworkSearchDiscoveryName) { + WifiConnectionState.nsdManager.resolveService(service, getResolveListener()) +// WifiConnectionState.nsdManager.resolveService(service, mResolveListener) + } + } + + override fun onServiceLost(service: NsdServiceInfo) { + // When the network service is no longer available. + // Internal bookkeeping code goes here. + Log.e(TAG, "service lost: $service") + } + + override fun onDiscoveryStopped(serviceType: String) { + Log.i(TAG, "Discovery stopped: $serviceType") + } + + override fun onStartDiscoveryFailed(serviceType: String, errorCode: Int) { + Log.e(TAG, "Discovery failed: Error code:$errorCode") + WifiConnectionState.nsdManager.stopServiceDiscovery(this) + } + + override fun onStopDiscoveryFailed(serviceType: String, errorCode: Int) { + Log.e(TAG, "Discovery failed: Error code:$errorCode") + WifiConnectionState.nsdManager.stopServiceDiscovery(this) + } + } + + val registrationListener = object : NsdManager.RegistrationListener { + override fun onServiceRegistered(NsdServiceInfo: NsdServiceInfo) { + // Save the service name. Android may have changed it in order to + // resolve a conflict, so update the name you initially requested + // with the name Android actually used. + Log.d("NsdManager.Registration", "Service registered as \"${NsdServiceInfo.serviceName}\"") + if (NsdServiceInfo.serviceName != Names.NetworkSearchDiscoveryName) { + connectionVM.restart() + } + } + + override fun onRegistrationFailed(serviceInfo: NsdServiceInfo, errorCode: Int) { + // Registration failed! Put debugging code here to determine why. + Log.d("NsdManager.Registration", "Registration failed") + } + + override fun onServiceUnregistered(arg0: NsdServiceInfo) { + // Service has been unregistered. This only happens when you call + // NsdManager.unregisterService() and pass in this listener. + Log.d("NsdManager.Registration", "Service unregistered") + } + + override fun onUnregistrationFailed(serviceInfo: NsdServiceInfo, errorCode: Int) { + // Unregistration failed. Put debugging code here to determine why. + Log.d("NsdManager.Registration", "Unregistration failed") + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/model/Names.kt b/app/src/main/java/com/example/localnetworkingandroidapp/model/Names.kt new file mode 100644 index 0000000..c15ebe4 --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/model/Names.kt @@ -0,0 +1,36 @@ +package com.example.localnetworkingandroidapp.model + +object Names { + val originalListNames = listOf( + "Belgarion", + "Ce'Nedra", + "Belgarath", + "Polgara", + "Durnik", + "Silk", + "Velvet", + "Poledra", + "Beldaran", + "Beldin", + "Geran", + "Mandorallen", + "Hettar", + "Adara", + "Barak" + ) + var availableNames: MutableList = originalListNames.toMutableList() + var deviceName: String = "" + + fun getNewName(): String { + val newName = availableNames.random() + availableNames.remove(newName) + return newName + } + + fun reset() { + deviceName = "" + availableNames = originalListNames.toMutableList() + } + + const val NetworkSearchDiscoveryName = "BelgariadChat" +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/model/ScreenViewModel.kt b/app/src/main/java/com/example/localnetworkingandroidapp/model/ScreenViewModel.kt new file mode 100644 index 0000000..6a02bad --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/model/ScreenViewModel.kt @@ -0,0 +1,68 @@ +package com.example.localnetworkingandroidapp.model + +import android.util.Log +import androidx.lifecycle.ViewModel +import androidx.lifecycle.viewModelScope +import com.example.localnetworkingandroidapp.data.LinkStates +import com.example.localnetworkingandroidapp.data.Message +import com.example.localnetworkingandroidapp.model.WifiConnectionState.linkState +import com.example.localnetworkingandroidapp.model.WifiConnectionState.socket +import com.example.localnetworkingandroidapp.model.WifiConnectionState.updateLinkStateTo +import com.example.localnetworkingandroidapp.ui.screen.getScreenLayoutConstraints +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.flow.MutableStateFlow +import kotlinx.coroutines.flow.StateFlow +import kotlinx.coroutines.flow.asStateFlow +import kotlinx.coroutines.launch +import java.util.* + +class ScreenViewModel() : ViewModel() { + private val TAG = "ScreenVM" + val constraints = getScreenLayoutConstraints() + val canonicalThread = CanonicalThread() + private val connectionVM = ConnectionViewModel(canonicalThread) + + var textFieldTouched = false + private val _textInput = MutableStateFlow("Say Something...") + val textInput: StateFlow = _textInput.asStateFlow() + fun resetKeyboardInput(){ + _textInput.value = "" + } + fun handleKeyboardInput(input: String) { + _textInput.value = input.trim() + } + + fun connectionButtonClick() { + when (linkState.value) { + LinkStates.Connected -> { + if (connectionVM.isHosting()) + connectionVM.stopHosting() + else { + connectionVM.stopSearching() + socket?.close() + socket = null + canonicalThread.reset() + } + updateLinkStateTo(LinkStates.NotConnected) + } + LinkStates.NotConnected -> { + connectionVM.start() + } + LinkStates.Connecting -> Log.e(TAG, "ERROR linkState.value == LinkStates.Connecting") + } + } + + fun handleSendButtonClick() { + viewModelScope.launch(Dispatchers.IO) { + val message = Message(Names.deviceName, textInput.value, Date().time) + resetKeyboardInput() + Log.i(TAG, "send from ${message.sender} : ${message.text}") + if (connectionVM.isHosting()) { + SendMessage(message, canonicalThread).toAllClients() + } else { + SendMessage(message, canonicalThread).toServer() + } + } + } +} + diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/model/SendMessage.kt b/app/src/main/java/com/example/localnetworkingandroidapp/model/SendMessage.kt new file mode 100644 index 0000000..b9506ba --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/model/SendMessage.kt @@ -0,0 +1,38 @@ +package com.example.localnetworkingandroidapp.model + +import com.example.localnetworkingandroidapp.data.Client +import com.example.localnetworkingandroidapp.data.Message +import com.example.localnetworkingandroidapp.model.WifiConnectionState.connectedClients +import com.example.localnetworkingandroidapp.model.WifiConnectionState.socket +import com.example.localnetworkingandroidapp.model.WifiConnectionState.writer +import java.io.PrintWriter + +class SendMessage(private val message: Message, private val canonicalThread: CanonicalThread = CanonicalThread()) { + fun toAllClients(exception: Client? = null) { + connectedClients.forEach { _client -> + exception?.let { _exception -> + if (_exception != _client) { + send(_client.writer) + } + } ?: let { + send(_client.writer) + } + } + } + + fun toServer() { + socket?.let { + writer?.let { _writer -> send(_writer) } + } + } + + fun toClient(client: Client) { + send(client.writer) + } + + private fun send(printWriter: PrintWriter) { + printWriter.print(message.toJson() + Message.MESSAGE_TERMINATOR) + printWriter.flush() + canonicalThread.addMessage(message) + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/model/WifiConnectionState.kt b/app/src/main/java/com/example/localnetworkingandroidapp/model/WifiConnectionState.kt new file mode 100644 index 0000000..c94fd86 --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/model/WifiConnectionState.kt @@ -0,0 +1,34 @@ +package com.example.localnetworkingandroidapp.model + +import android.content.Context +import android.net.nsd.NsdManager +import android.util.Log +import com.example.localnetworkingandroidapp.data.channel.ChannelService +import com.example.localnetworkingandroidapp.data.Client +import com.example.localnetworkingandroidapp.data.LinkStates +import kotlinx.coroutines.flow.MutableStateFlow +import kotlinx.coroutines.flow.StateFlow +import kotlinx.coroutines.flow.asStateFlow +import java.io.PrintWriter +import java.net.Socket + +object WifiConnectionState { + var socket: Socket? = null + var connectedClients: MutableList = mutableListOf() + lateinit var nsdManager: NsdManager + var writer: PrintWriter? = null + + fun init(context: Context) { + nsdManager = context.getSystemService(Context.NSD_SERVICE) as NsdManager + } + + private val plinkState = MutableStateFlow(LinkStates.NotConnected) + val linkState: StateFlow = plinkState.asStateFlow() + fun updateLinkStateTo(newState: LinkStates) { + plinkState.value = newState + } + + private val _bottomBarEnable = MutableStateFlow(false) + val bottomBarEnable: StateFlow = _bottomBarEnable.asStateFlow() + fun changeBottomBarStateTo(newState: Boolean) {_bottomBarEnable.value = newState} +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/IdProvider.kt b/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/IdProvider.kt new file mode 100644 index 0000000..fc47c1a --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/IdProvider.kt @@ -0,0 +1,16 @@ +package com.example.localnetworkingandroidapp.ui.screen + +object IdProvider { + const val Header = "header_ID" + const val AppTitle = "app_title_ID" + const val ConnectionButton = "connection_button_ID" + + const val ConnectionButtonText = "connection_button_text_ID" + const val ConnectingText = "connecting_text_ID" + const val PointsText = "points_text_ID" + + const val MessageList = "message_list_ID" + const val TextField = "text_field_ID" + const val SendButton = "send_button_ID" + const val BottomBar = "bottom_bar_ID" +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraints.kt b/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraints.kt new file mode 100644 index 0000000..4cdd06e --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/LayoutConstraints.kt @@ -0,0 +1,69 @@ +package com.example.localnetworkingandroidapp.ui.screen + +import androidx.compose.ui.unit.dp +import androidx.constraintlayout.compose.ConstraintSet +import androidx.constraintlayout.compose.Dimension + +fun getScreenLayoutConstraints(): ConstraintSet = ConstraintSet { + val header = createRefFor(IdProvider.Header) + val appTitle = createRefFor(IdProvider.AppTitle) + val connectionButton = createRefFor(IdProvider.ConnectionButton) + val bottomBar = createRefFor(IdProvider.BottomBar) + val textField = createRefFor(IdProvider.TextField) + val sendButton = createRefFor(IdProvider.SendButton) + val messageList = createRefFor(IdProvider.MessageList) + + constrain(header) { + top.linkTo(parent.top) + start.linkTo(parent.start) + end.linkTo(parent.end) + width = Dimension.fillToConstraints + height = Dimension.value(58.dp) + } + constrain(appTitle) { + top.linkTo(header.top) + start.linkTo(parent.start, margin = 15.dp) + bottom.linkTo(header.bottom) + width = Dimension.wrapContent + height = Dimension.wrapContent + } + constrain(connectionButton) { + top.linkTo(header.top) + end.linkTo(parent.end) + bottom.linkTo(header.bottom) + width = Dimension.value(58.dp) + height = Dimension.fillToConstraints + } + + + constrain(bottomBar) { + start.linkTo(parent.start, margin = 15.dp) + end.linkTo(parent.end) + bottom.linkTo(parent.bottom) + width = Dimension.fillToConstraints + height = Dimension.value(100.dp) + } + constrain(textField) { + top.linkTo(bottomBar.top) + start.linkTo(bottomBar.start) + end.linkTo(sendButton.start, margin = 15.dp) + bottom.linkTo(bottomBar.bottom) + width = Dimension.fillToConstraints + height = Dimension.wrapContent + } + constrain(sendButton) { + top.linkTo(bottomBar.top) + end.linkTo(bottomBar.end, margin = 30.dp) + bottom.linkTo(bottomBar.bottom) + width = Dimension.wrapContent + } + + constrain(messageList) { + top.linkTo(header.bottom, margin = 15.dp) + start.linkTo(parent.start) + end.linkTo(parent.end) + bottom.linkTo(bottomBar.top) + width = Dimension.fillToConstraints + height = Dimension.fillToConstraints + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/Screen.kt b/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/Screen.kt new file mode 100644 index 0000000..341babf --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/Screen.kt @@ -0,0 +1,23 @@ +package com.example.localnetworkingandroidapp.ui.screen + +import androidx.compose.runtime.Composable +import androidx.compose.runtime.LaunchedEffect +import androidx.compose.ui.platform.LocalContext +import com.example.localnetworkingandroidapp.model.ScreenViewModel +import com.example.localnetworkingandroidapp.model.WifiConnectionState +import com.example.localnetworkingandroidapp.ui.screen.layout.BottomBar +import com.example.localnetworkingandroidapp.ui.screen.layout.ChatBody +import com.example.localnetworkingandroidapp.ui.screen.layout.Header + +@Composable +fun Screen(vm: ScreenViewModel) { + val context = LocalContext.current + + LaunchedEffect(true) { + WifiConnectionState.init(context) + } + + Header(vm) + ChatBody(vm) + BottomBar(vm) +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/layout/BottomBar.kt b/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/layout/BottomBar.kt new file mode 100644 index 0000000..01724bd --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/layout/BottomBar.kt @@ -0,0 +1,74 @@ +package com.example.localnetworkingandroidapp.ui.screen.layout + +import androidx.compose.foundation.background +import androidx.compose.foundation.clickable +import androidx.compose.foundation.interaction.MutableInteractionSource +import androidx.compose.foundation.interaction.collectIsFocusedAsState +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.material.MaterialTheme +import androidx.compose.material.OutlinedTextField +import androidx.compose.material.Text +import androidx.compose.material.TextFieldDefaults +import androidx.compose.runtime.* +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.layout.layoutId +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.unit.sp +import androidx.constraintlayout.compose.ConstraintLayout +import com.example.localnetworkingandroidapp.model.ScreenViewModel +import com.example.localnetworkingandroidapp.model.WifiConnectionState +import com.example.localnetworkingandroidapp.ui.screen.IdProvider + +@Composable +fun BottomBar(vm: ScreenViewModel) { + val textInput by remember { vm.textInput }.collectAsState() + val enableBar by remember { WifiConnectionState.bottomBarEnable }.collectAsState() + val interactionSource = remember { MutableInteractionSource() } + val isFocussed by interactionSource.collectIsFocusedAsState() + + LaunchedEffect(isFocussed) { + when (isFocussed) { + false -> {} + true -> { + if (!vm.textFieldTouched) { + vm.resetKeyboardInput() + vm.textFieldTouched = true + } + } + } + } + + ConstraintLayout(vm.constraints, Modifier.fillMaxSize()) { + Box( Modifier + .layoutId(IdProvider.BottomBar) + ) + OutlinedTextField( + modifier = Modifier.layoutId(IdProvider.TextField) , + value = textInput, + onValueChange = { vm.handleKeyboardInput(it) }, + colors = TextFieldDefaults.outlinedTextFieldColors( + cursorColor = MaterialTheme.colors.secondary, + focusedBorderColor = MaterialTheme.colors.secondary, + unfocusedBorderColor = MaterialTheme.colors.error, + ), + interactionSource = interactionSource, + enabled = enableBar, + ) + Box( + Modifier + .layoutId(IdProvider.SendButton) + .clickable(enabled = enableBar) { + vm.handleSendButtonClick() + } + ) { + Text( + text = "Send", + color = if (enableBar) MaterialTheme.colors.secondary else MaterialTheme.colors.error, + style = TextStyle( fontSize = 18.sp, ) + ) + } + + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/layout/ChatBody.kt b/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/layout/ChatBody.kt new file mode 100644 index 0000000..1b41e2d --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/layout/ChatBody.kt @@ -0,0 +1,142 @@ +package com.example.localnetworkingandroidapp.ui.screen.layout + +import androidx.compose.animation.core.* +import androidx.compose.foundation.layout.* +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.foundation.lazy.itemsIndexed +import androidx.compose.material.Text +import androidx.compose.runtime.Composable +import androidx.compose.runtime.collectAsState +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.layout.layoutId +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.text.style.TextAlign +import androidx.compose.ui.unit.dp +import androidx.compose.ui.unit.sp +import androidx.constraintlayout.compose.ConstraintLayout +import androidx.constraintlayout.compose.ConstraintSet +import androidx.constraintlayout.compose.Dimension +import com.example.localnetworkingandroidapp.data.LinkStates +import com.example.localnetworkingandroidapp.data.Message +import com.example.localnetworkingandroidapp.model.Names +import com.example.localnetworkingandroidapp.model.ScreenViewModel +import com.example.localnetworkingandroidapp.model.WifiConnectionState +import com.example.localnetworkingandroidapp.ui.screen.IdProvider + +@Composable +fun ChatBody(vm: ScreenViewModel) { + + val messages by remember { vm.canonicalThread.messageList }.collectAsState() + val linkState by remember { WifiConnectionState.linkState }.collectAsState() + + // Creates an [InfiniteTransition] instance for managing child animations. + val infiniteTransition = rememberInfiniteTransition() + // Creates a child animation of float type as a part of the [InfiniteTransition]. + val pointNumber by infiniteTransition.animateFloat( + initialValue = 0F, + targetValue = 4f, + animationSpec = infiniteRepeatable( + // Infinitely repeating a 3000 tween animation using default easing curve. + animation = tween(3000), + // After each iteration of the animation (i.e. every 3000), the animation will + // start again from the [initialValue] defined above. + repeatMode = RepeatMode.Restart + ) + ) + val animatedText = when (pointNumber.toInt()) { + 0 -> " " + 1 -> " ." + 2 -> " .." + 3 -> " ..." + else -> " ERROR" + } + + val constraints = remember { + ConstraintSet { + val connectingText = createRefFor(IdProvider.ConnectingText) + val pointsText = createRefFor(IdProvider.PointsText) + + constrain( connectingText ) { + top.linkTo(parent.top) + start.linkTo(parent.start) + end.linkTo(parent.end) + bottom.linkTo(parent.bottom) + width = Dimension.wrapContent + height = Dimension.wrapContent + } + constrain( pointsText ) { + start.linkTo(connectingText.end) + bottom.linkTo(connectingText.bottom) + width = Dimension.wrapContent + height = Dimension.wrapContent + } + } + } + + ConstraintLayout(vm.constraints, Modifier.fillMaxSize()) { + Box( Modifier.layoutId(IdProvider.Header) ) + Box( Modifier.layoutId(IdProvider.BottomBar) ) + Box( Modifier .layoutId(IdProvider.MessageList) ) { + if (linkState == LinkStates.Connecting) { + ConstraintLayout(constraints, Modifier.fillMaxWidth()) { + Text( + modifier = Modifier.layoutId(IdProvider.ConnectingText), + text = "Connecting", + textAlign = TextAlign.Center, + style = TextStyle( fontWeight = FontWeight.Light, ) + ) + Text( + modifier = Modifier.layoutId(IdProvider.PointsText), + text = animatedText, + textAlign = TextAlign.Center, + style = TextStyle( fontWeight = FontWeight.Light, ) + ) + } + } else { + LazyColumn() { + itemsIndexed( messages ) { index, message -> + val height = + if (message.sender == Message.SERVER_MSG_SENDER) + Modifier.height(30.dp) + else + Modifier.wrapContentHeight() + Column( + Modifier + .then(height) + ) { + Text( + modifier = Modifier.fillMaxWidth(), + text = if (message.sender == Message.SERVER_MSG_SENDER) message.text + else message.sender , + textAlign = when (message.sender) { + Message.SERVER_MSG_SENDER -> TextAlign.Center + Names.deviceName -> TextAlign.End + else -> TextAlign.Start + }, + style = TextStyle( + fontWeight = FontWeight.Light, + ) + ) + if (message.sender != Message.SERVER_MSG_SENDER) { + Text( + modifier = Modifier.fillMaxWidth(), + text = message.text, + textAlign = when (message.sender) { + Message.SERVER_MSG_SENDER -> TextAlign.Center + Names.deviceName -> TextAlign.End + else -> TextAlign.Start + }, + style = TextStyle( fontSize = 18.sp, ) + ) + Spacer(modifier = Modifier.height(25.dp)) + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/layout/Header.kt b/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/layout/Header.kt new file mode 100644 index 0000000..772139e --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/ui/screen/layout/Header.kt @@ -0,0 +1,68 @@ +package com.example.localnetworkingandroidapp.ui.screen.layout + +import android.util.Log +import androidx.compose.foundation.background +import androidx.compose.foundation.clickable +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.material.MaterialTheme +import androidx.compose.material.Text +import androidx.compose.runtime.Composable +import androidx.compose.runtime.collectAsState +import androidx.compose.runtime.getValue +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.layout.layoutId +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.text.style.TextAlign +import androidx.compose.ui.unit.sp +import androidx.constraintlayout.compose.ConstraintLayout +import com.example.localnetworkingandroidapp.data.LinkStates +import com.example.localnetworkingandroidapp.model.ScreenViewModel +import com.example.localnetworkingandroidapp.model.WifiConnectionState +import com.example.localnetworkingandroidapp.ui.screen.IdProvider +import com.example.localnetworkingandroidapp.ui.theme.CenterComposable + +@Composable +fun Header(vm: ScreenViewModel) { + val linkState by remember { WifiConnectionState.linkState }.collectAsState() + + ConstraintLayout(vm.constraints, Modifier.fillMaxSize()) { + Box( + Modifier + .layoutId(IdProvider.Header) + .background(MaterialTheme.colors.primary) + ) + Text( + modifier = Modifier.layoutId(IdProvider.AppTitle), + text = "Belgariad Chat", + color = Color.White, + style = TextStyle( + fontSize = 20.sp, + fontWeight = FontWeight.SemiBold, + fontFamily = FontFamily.Default + ) + ) + Box( + Modifier + .layoutId(IdProvider.ConnectionButton) + .clickable { vm.connectionButtonClick() } + ) { + CenterComposable( id = IdProvider.ConnectionButtonText ) { + Text( + text = if (linkState.name == LinkStates.NotConnected.name) "JOIN" else "LEAVE" , + textAlign = TextAlign.Center, + color = Color.White, + style = TextStyle( + fontSize = 15.sp, + fontWeight = FontWeight.SemiBold, + fontFamily = FontFamily.Default + ) + ) + } + } + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/ui/theme/Center.kt b/app/src/main/java/com/example/localnetworkingandroidapp/ui/theme/Center.kt new file mode 100644 index 0000000..f355eb9 --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/ui/theme/Center.kt @@ -0,0 +1,46 @@ +package com.example.localnetworkingandroidapp.ui.theme + +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.runtime.Composable +import androidx.compose.runtime.remember +import androidx.compose.ui.Modifier +import androidx.compose.ui.layout.layoutId +import androidx.constraintlayout.compose.ConstraintLayout +import androidx.constraintlayout.compose.ConstraintSet +import androidx.constraintlayout.compose.Dimension + +@Composable +fun CenterComposable(id: String, content: @Composable () -> Unit) { Center(id, CenterType.Center, content) } + +@Composable +private fun Center(id: String, type: CenterType, content: @Composable () -> Unit) { + val constraints = remember { getCenterConstraintSet(id, type) } + + ConstraintLayout(constraints, Modifier.fillMaxSize() ) { + Box(Modifier.layoutId(id)) { + content.invoke() + } + } +} + +private fun getCenterConstraintSet(id: String, type: CenterType) = ConstraintSet { + val draw = createRefFor(id) + + constrain( draw ) { + if (type == CenterType.Center || type == CenterType.CenterVertically) { + top.linkTo(parent.top) + bottom.linkTo(parent.bottom) + } + if (type == CenterType.Center || type == CenterType.CenterHorizontally) { + start.linkTo(parent.start) + end.linkTo(parent.end) + } + width = Dimension.wrapContent + height = Dimension.wrapContent + } +} + +private enum class CenterType { + Center, CenterHorizontally , CenterVertically +} diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/ui/theme/Color.kt b/app/src/main/java/com/example/localnetworkingandroidapp/ui/theme/Color.kt new file mode 100644 index 0000000..8df3fa7 --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/ui/theme/Color.kt @@ -0,0 +1,15 @@ +package com.mobilegame.localnetworkingandroidapp.ui.theme + +import androidx.compose.ui.graphics.Color + +val Purple200 = Color(0xFFBB86FC) +val Purple500 = Color(0xFF6200EE) +val Purple700 = Color(0xFF3700B3) +val Teal200 = Color(0xFF03DAC5) + +val indigoDye = Color(0xFF05496C) +val prussianBlue = Color(0xFF03324A) +val sapphireBlue = Color(0xFF07608E) +val jet = Color(0xFF2B2B2B) +val smokeyBlack = Color(0xFF111111) +val myGray = Color(0xFFAAAAAA) diff --git a/app/src/main/java/com/example/localnetworkingandroidapp/ui/theme/Theme.kt b/app/src/main/java/com/example/localnetworkingandroidapp/ui/theme/Theme.kt new file mode 100644 index 0000000..68710b7 --- /dev/null +++ b/app/src/main/java/com/example/localnetworkingandroidapp/ui/theme/Theme.kt @@ -0,0 +1,47 @@ +package com.mobilegame.localnetworkingandroidapp.ui.theme + +import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.material.MaterialTheme +import androidx.compose.material.darkColors +import androidx.compose.material.lightColors +import androidx.compose.runtime.Composable + +private val DarkColorPalette = darkColors( + primary = indigoDye, + primaryVariant = prussianBlue, + secondary = sapphireBlue, + error = myGray, +) + +private val LightColorPalette = lightColors( + primary = indigoDye, + primaryVariant = prussianBlue, + secondary = sapphireBlue, + error = myGray, + + /* Other default colors to override + background = Color.White, + surface = Color.White, + onPrimary = Color.White, + onSecondary = Color.Black, + onBackground = Color.Black, + onSurface = Color.Black, + */ +) + +@Composable +fun LocalNetworkingAndroidAppTheme( + darkTheme: Boolean = isSystemInDarkTheme(), + content: @Composable () -> Unit +) { + val colors = if (darkTheme) { + DarkColorPalette + } else { + LightColorPalette + } + + MaterialTheme( + colors = colors, + content = content + ) +} \ No newline at end of file diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml deleted file mode 100644 index e417ee4..0000000 --- a/app/src/main/res/layout/activity_main.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - -